diff --git a/.appveyor.yml b/.appveyor.yml deleted file mode 100644 index 9b25ff5e4..000000000 --- a/.appveyor.yml +++ /dev/null @@ -1,31 +0,0 @@ -clone_depth: 1 -version: "{build}" -image: Visual Studio 2017 -platform: - - x86 - - x64 -environment: - matrix: - - compiler: msvc -install: - - cd C:\Tools\vcpkg - - git pull - - .\bootstrap-vcpkg.bat - - cd %APPVEYOR_BUILD_FOLDER% - - vcpkg install --triplet %PLATFORM%-windows --recurse fftw3 libsamplerate libsndfile lilv lv2 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.12/msvc2017%QT_SUFFIX%;c:/tools/vcpkg/installed/%PLATFORM%-windows -DCMAKE_GENERATOR_PLATFORM="%CMAKE_PLATFORM%" .. - - cmake --build . -- /maxcpucount:4 - - cmake --build . --target tests - - cmake --build . --target package -artifacts: - - path: 'build\lmms-*.exe' - name: Installer -cache: - - c:/tools/vcpkg/installed diff --git a/.circleci/config.yml b/.circleci/config.yml deleted file mode 100644 index 2d15efd1e..000000000 --- a/.circleci/config.yml +++ /dev/null @@ -1,222 +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 - restore_homebrew_cache: &restore_homebrew_cache - restore_cache: - keys: - - homebrew-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ .Branch }} - - homebrew-{{ arch }}-{{ .Environment.CIRCLE_JOB }} - - homebrew-{{ arch }} - save_homebrew_cache: &save_homebrew_cache - save_cache: - key: homebrew-{{ arch }}-{{ .Environment.CIRCLE_JOB }}-{{ .Branch }}-{{ .BuildNum }} - paths: - - ~/Library/Caches/Homebrew - - /usr/local/Homebrew - - 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 - if [[ -n "${CIRCLE_PR_NUMBER}" ]] - then - echo "Fetching out merged pull request" - git fetch -u origin refs/pull/${CIRCLE_PR_NUMBER}/merge:pr/merge - git checkout pr/merge - else - echo "Not a pull request" - fi - - # 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 - - run: - name: Build installer - command: | - cd build - make package - cp ./lmms-*.exe /tmp/artifacts/ - - store_artifacts: - path: /tmp/artifacts/ - destination: / - - *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 - - run: - name: Build installer - command: | - cd build - make package - cp ./lmms-*.exe /tmp/artifacts/ - - store_artifacts: - path: /tmp/artifacts/ - destination: / - - *ccache_stats - - *save_cache - linux.gcc: - docker: - - image: lmmsci/linux.gcc:16.04 - environment: - <<: *common_environment - steps: - - checkout - - *init - - *restore_cache - - run: - name: Configure - command: | - source /opt/qt5*/bin/qt5*-env.sh || true - 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") - macos: - environment: - <<: *common_environment - macos: - xcode: "10.3.0" - steps: - - checkout - - *init - - *restore_homebrew_cache - - *restore_cache - - run: - name: Install Homebrew dependencies - command: | - # uninstall Homebrew's python 2 to prevent errors on brew install - brew uninstall python@2 || true - brew update && brew install ccache fftw cmake pkg-config libogg libvorbis lame libsndfile libsamplerate jack sdl libgig libsoundio lilv lv2 stk fluid-synth portaudio fltk qt5 carla - - run: - name: Install nodejs dependencies - command: npm install -g appdmg - - run: - name: Building - command: | - mkdir build && cd build - cmake .. -DCMAKE_INSTALL_PREFIX="../target" -DCMAKE_PREFIX_PATH="$(brew --prefix qt5)" $CMAKE_OPTS -DUSE_WERROR=OFF - make - - run: - name: Build tests - command: cd build && make tests - - run: - name: Run tests - command: build/tests/tests - - run: - name: Build DMG - command: | - cd build - make install - make dmg - cp ./lmms-*.dmg /tmp/artifacts/ - - store_artifacts: - path: /tmp/artifacts/ - destination: / - - *save_cache - - *save_homebrew_cache - - -workflows: - version: 2 - build-and-test: - jobs: - - macos - - 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..5de9376e5 --- /dev/null +++ b/.clang-tidy @@ -0,0 +1,51 @@ +--- +Checks: > + bugprone-macro-parentheses, + bugprone-macro-repeated-side-effects, + modernize-avoid-c-arrays, + modernize-loop-convert, + modernize-redundant-void-arg, + modernize-use-auto, + modernize-use-bool-literals, + modernize-use-emplace, + modernize-use-equals-default, + modernize-use-equals-delete, + modernize-use-override, + modernize-use-using, + performance-trivially-destructible, + readability-braces-around-statements, + readability-const-return-type, + readability-identifier-naming, + readability-misleading-indentation, + readability-simplify-boolean-expr +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/FUNDING.yml b/.github/FUNDING.yml index 8a8b03635..702d581fe 100644 --- a/.github/FUNDING.yml +++ b/.github/FUNDING.yml @@ -1 +1,2 @@ +--- custom: https://lmms.io/get-involved/#donate diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md deleted file mode 100644 index fcc875601..000000000 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ /dev/null @@ -1,36 +0,0 @@ ---- -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/bug_report.yml b/.github/ISSUE_TEMPLATE/bug_report.yml new file mode 100644 index 000000000..fe3d60ff2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.yml @@ -0,0 +1,91 @@ +# yamllint disable-file rule:line-length +name: Bug Report +description: File a bug report to help us improve +labels: + - bug +body: + - type: input + id: system-information + attributes: + label: System Information + description: | + - The operating system you use to run LMMS. + - When relevant, also include your hardware information. + placeholder: ex. Fedora Linux 39, KDE Plasma 5.27.10 - 13th Gen Intel® Core™ i9-13950HX, 32GB RAM + validations: + required: true + - type: input + id: affected-version + attributes: + label: LMMS Version(s) + description: | + - The version of LMMS affected by the bug. + - Can be an official version number, nightly release identifier, or commit hash. + - The version number can be found under the Help > About menu. + placeholder: ex. 1.2.2, 1.3.0-alpha.1.518+gdd53bec31, 2d185df + validations: + required: true + - type: input + id: working-version + attributes: + label: Most Recent Working Version + description: | + - If there is a previous version of LMMS that did not exhibit the bug, include it here. + placeholder: ex. 1.2.2, 1.3.0-alpha.1.518+gdd53bec31, 2d185df + validations: + required: false + - type: textarea + id: bug-summary + attributes: + label: Bug Summary + description: Briefly describe the bug. + validations: + required: true + - type: textarea + id: expected-behaviour + attributes: + label: Expected Behaviour + description: Describe what should have happened. + validations: + required: true + - type: textarea + id: steps-to-reproduce + attributes: + label: Steps To Reproduce + description: | + - Describe the minimum set of steps required to reproduce this bug. + - If you included a minimum reproducible project below, you can describe here how it should be used. + validations: + required: true + - type: textarea + id: logs + attributes: + label: Logs + description: | + - Copy and paste any relevant log output here. + value: | +
+ Click to expand +
+          
+        
+
+ validations: + required: false + - type: textarea + id: supporting-files + attributes: + label: Screenshots / Minimum Reproducible Project + description: | + - Upload any screenshots showing the bug in action. + - If possible, also include a .mmp/.mmpz project containing the simplest possible + setup needed to reproduce the bug. + + ***Note:** To upload a project file to GitHub, it will need to be placed in a .zip archive.* + - type: checkboxes + id: search-for-existing + attributes: + label: Please search the issue tracker for existing bug reports before submitting your own. + options: + - label: I have searched all existing issues and confirmed that this is not a duplicate. + required: true diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index 2c51f276e..735942ffb 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -1,4 +1,5 @@ +--- 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! + - 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 deleted file mode 100644 index f9a0ae192..000000000 --- a/.github/ISSUE_TEMPLATE/feature_request.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -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/ISSUE_TEMPLATE/feature_request.yml b/.github/ISSUE_TEMPLATE/feature_request.yml new file mode 100644 index 000000000..cc233a636 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.yml @@ -0,0 +1,32 @@ +# yamllint disable-file rule:line-length +name: Feature Request +description: Suggest an idea for the project +labels: + - "enhancement" +body: + - type: textarea + id: enhancement-summary + attributes: + label: Enhancement Summary + description: | + - Briefly describe the enhancement. + - Explain why you believe the proposed enhancement to be a good idea, and (if applicable) how it helps + overcome a limitation of LMMS you are currently facing. + validations: + required: true + - type: textarea + id: mockup + attributes: + label: Implementation Details / Mockup + description: | + - Explain how you believe this enhancement should be implemented. + - If your proposal encompasses changes to the user interface, include diagrams displaying your intent. + validations: + required: true + - type: checkboxes + id: search-for-existing + attributes: + label: Please search the issue tracker for existing feature requests before submitting your own. + options: + - label: I have searched all existing issues and confirmed that this is not a duplicate. + required: true diff --git a/.github/no-response.yml b/.github/no-response.yml index 476165408..f6c329539 100644 --- a/.github/no-response.yml +++ b/.github/no-response.yml @@ -1,2 +1,3 @@ +--- # Label requiring a response responseRequiredLabel: "response required" diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 000000000..2c2e8dd73 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,331 @@ +--- +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: ghcr.io/lmms/linux.gcc:20.04 + env: + CMAKE_OPTS: >- + -DUSE_WERROR=ON + -DCMAKE_BUILD_TYPE=RelWithDebInfo + -DUSE_COMPILE_CACHE=ON + CCACHE_MAXSIZE: 0 + CCACHE_NOCOMPRESS: 1 + MAKEFLAGS: -j2 + steps: + - name: Configure git + run: git config --global --add safe.directory "$GITHUB_WORKSPACE" + - name: Check out + uses: actions/checkout@v3 + with: + fetch-depth: 0 + submodules: recursive + - name: 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: | + ccache --zero-stats + source /opt/qt5*/bin/qt5*-env.sh || true + cmake -S . \ + -B build \ + -DCMAKE_INSTALL_PREFIX=./install \ + $CMAKE_OPTS + - name: Build + run: cmake --build build + - name: Run tests + run: | + cd build/tests + ctest --output-on-failure -j2 + - name: Package + run: | + cmake --build build --target install + cmake --build build --target appimage + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: linux + path: build/lmms-*.AppImage + - name: Trim ccache and print statistics + run: | + ccache --cleanup + echo "[ccache config]" + ccache --show-config + echo "[ccache stats]" + ccache --show-stats + env: + CCACHE_MAXSIZE: 500M + macos: + strategy: + fail-fast: false + matrix: + arch: [ x86_64, arm64 ] + include: + - arch: x86_64 + os: macos-12 + xcode: "13.1" + - arch: arm64 + os: macos-14 + xcode: "14.3.1" + name: macos-${{ matrix.arch }} + runs-on: ${{ matrix.os }} + env: + CMAKE_OPTS: >- + -Werror=dev + -DUSE_WERROR=ON + -DCMAKE_BUILD_TYPE=RelWithDebInfo + -DUSE_COMPILE_CACHE=ON + CCACHE_MAXSIZE: 0 + CCACHE_NOCOMPRESS: 1 + MAKEFLAGS: -j3 + DEVELOPER_DIR: /Applications/Xcode_${{ matrix.xcode }}.app/Contents/Developer + steps: + - name: Check out + uses: actions/checkout@v3 + with: + fetch-depth: 0 + submodules: recursive + - name: Clean up Homebrew download cache + run: rm -rf ~/Library/Caches/Homebrew/downloads + - name: Restore Homebrew download cache + id: cache-homebrew + uses: actions/cache/restore@v3 + with: + key: n/a - only restore from restore-keys + restore-keys: | + homebrew-${{ matrix.arch }}- + path: ~/Library/Caches/Homebrew/downloads + - 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: ~/Library/Caches/ccache + - name: Install dependencies + run: | + brew bundle install --verbose + npm update -g npm + npm install --location=global appdmg + env: + HOMEBREW_NO_AUTO_UPDATE: 1 + HOMEBREW_NO_INSTALL_UPGRADE: 1 + HOMEBREW_NO_INSTALLED_DEPENDENTS_CHECK: 1 + - name: Configure + run: | + ccache --zero-stats + mkdir build + cmake -S . \ + -B build \ + -DCMAKE_INSTALL_PREFIX="../target" \ + -DCMAKE_PREFIX_PATH="$(brew --prefix qt@5)" \ + -DCMAKE_OSX_ARCHITECTURES=${{ matrix.arch }} \ + $CMAKE_OPTS \ + -DUSE_WERROR=OFF + - name: Build + run: cmake --build build + - name: Run tests + run: | + cd build/tests + ctest --output-on-failure -j3 + - name: Package + run: | + cmake --build build --target install + cmake --build build --target dmg + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: macos-${{ matrix.arch }} + path: build/lmms-*.dmg + - name: Trim ccache and print statistics + run: | + ccache --cleanup + echo "[ccache config]" + ccache --show-config + echo "[ccache stats]" + ccache --show-stats --verbose + env: + CCACHE_MAXSIZE: 500MB + - name: Save Homebrew download cache + if: ${{ steps.cache-homebrew.outputs.cache-matched-key != env.key }} + uses: actions/cache/save@v3 + with: + key: ${{ env.key }} + path: ~/Library/Caches/Homebrew/downloads + env: + key: "homebrew-${{ matrix.arch }}\ + -${{ hashFiles('Brewfile.lock.json') }}" + mingw: + strategy: + fail-fast: false + matrix: + arch: ['32', '64'] + name: mingw${{ matrix.arch }} + runs-on: ubuntu-latest + container: ghcr.io/lmms/linux.mingw:20.04 + env: + CMAKE_OPTS: >- + -Werror=dev + -DUSE_WERROR=ON + -DCMAKE_BUILD_TYPE=RelWithDebInfo + -DUSE_COMPILE_CACHE=ON + CCACHE_MAXSIZE: 0 + CCACHE_NOCOMPRESS: 1 + MAKEFLAGS: -j2 + steps: + - name: Enable POSIX MinGW + run: | + update-alternatives --set i686-w64-mingw32-gcc /usr/bin/i686-w64-mingw32-gcc-posix + update-alternatives --set i686-w64-mingw32-g++ /usr/bin/i686-w64-mingw32-g++-posix + update-alternatives --set x86_64-w64-mingw32-gcc /usr/bin/x86_64-w64-mingw32-gcc-posix + update-alternatives --set x86_64-w64-mingw32-g++ /usr/bin/x86_64-w64-mingw32-g++-posix + - name: Configure git + run: git config --global --add safe.directory "$GITHUB_WORKSPACE" + - name: Check out + uses: actions/checkout@v3 + with: + fetch-depth: 0 + submodules: recursive + - name: 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: | + ccache --zero-stats + cmake -S . \ + -B build \ + -DCMAKE_INSTALL_PREFIX=./install \ + -DCMAKE_TOOLCHAIN_FILE="./cmake/toolchains/MinGW-W64-${{ matrix.arch }}.cmake" \ + $CMAKE_OPTS + - name: Build + run: cmake --build build + - name: Package + run: cmake --build build --target package + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: mingw${{ matrix.arch }} + path: build/lmms-*.exe + - name: Trim ccache and print statistics + run: | + ccache --cleanup + echo "[ccache config]" + ccache --show-config + echo "[ccache stats]" + ccache --show-stats + env: + CCACHE_MAXSIZE: 500M + msvc: + strategy: + fail-fast: false + matrix: + arch: ['x86', 'x64'] + name: msvc-${{ matrix.arch }} + runs-on: windows-2019 + env: + CCACHE_MAXSIZE: 0 + CCACHE_NOCOMPRESS: 1 + steps: + - name: Check out + uses: actions/checkout@v3 + with: + fetch-depth: 0 + submodules: recursive + - name: Cache vcpkg dependencies + id: cache-deps + uses: actions/cache@v3 + with: + key: vcpkg-${{ matrix.arch }}-${{ hashFiles('vcpkg.json') }} + restore-keys: | + vcpkg-${{ matrix.arch }}- + path: build\vcpkg_installed + - name: Cache ccache data + uses: actions/cache@v3 + with: + # yamllint disable rule:line-length + key: "ccache-${{ github.job }}-${{ matrix.arch }}-${{ github.ref }}\ + -${{ github.run_id }}" + restore-keys: | + ccache-${{ github.job }}-${{ matrix.arch }}-${{ github.ref }}- + ccache-${{ github.job }}-${{ matrix.arch }}- + path: ~\AppData\Local\ccache + # yamllint enable rule:line-length + - name: Install tools + run: choco install ccache + - name: Install Qt + uses: jurplel/install-qt-action@b3ea5275e37b734d027040e2c7fe7a10ea2ef946 + with: + version: '5.15.2' + arch: |- + ${{ + fromJSON(' + { + "x86": "win32_msvc2019", + "x64": "win64_msvc2019_64" + } + ')[matrix.arch] + }} + archives: qtbase qtsvg qttools + cache: true + - name: Set up build environment + uses: ilammy/msvc-dev-cmd@cec98b9d092141f74527d0afa6feb2af698cfe89 + with: + arch: ${{ matrix.arch }} + - name: Configure + run: | + ccache --zero-stats + mkdir build -Force + cmake -S . ` + -B build ` + -G Ninja ` + --toolchain C:/vcpkg/scripts/buildsystems/vcpkg.cmake ` + -Werror=dev ` + -DCMAKE_BUILD_TYPE=RelWithDebInfo ` + -DUSE_COMPILE_CACHE=ON ` + -DUSE_WERROR=ON ` + -DVCPKG_TARGET_TRIPLET="${{ matrix.arch }}-windows" ` + -DVCPKG_HOST_TRIPLET="${{ matrix.arch }}-windows" ` + -DVCPKG_MANIFEST_INSTALL="${{ env.should_install_manifest }}" + env: + should_install_manifest: + ${{ steps.cache-deps.outputs.cache-hit == 'true' && 'NO' || 'YES' }} + - name: Build + run: cmake --build build + - name: Run tests + run: | + cd build/tests + ctest --output-on-failure -j2 + - name: Package + run: cmake --build build --target package + - name: Upload artifacts + uses: actions/upload-artifact@v4 + with: + name: msvc-${{ matrix.arch }} + path: build\lmms-*.exe + - name: Trim ccache and print statistics + run: | + ccache --cleanup + echo "[ccache config]" + ccache --show-config + echo "[ccache stats]" + ccache --show-stats --verbose + env: + CCACHE_MAXSIZE: 500MB diff --git a/.github/workflows/checks.yml b/.github/workflows/checks.yml new file mode 100644 index 000000000..228f383c1 --- /dev/null +++ b/.github/workflows/checks.yml @@ -0,0 +1,40 @@ +--- +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.9.0 + 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 + yamllint: + runs-on: ubuntu-latest + steps: + - name: Check out + uses: actions/checkout@v3 + - name: Run yamllint + run: for i in $(git ls-files '*.yml'); do yamllint $i; done diff --git a/.gitignore b/.gitignore index 771eba607..cc2823ba0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,12 @@ -/build -/target +/build/ +/target/ .*.sw? .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 +Brewfile.lock.json diff --git a/.gitmodules b/.gitmodules index 408f0fea0..679e28ffc 100644 --- a/.gitmodules +++ b/.gitmodules @@ -1,15 +1,12 @@ [submodule "src/3rdparty/qt5-x11embed"] path = src/3rdparty/qt5-x11embed url = https://github.com/Lukas-W/qt5-x11embed.git -[submodule "src/3rdparty/rpmalloc/rpmalloc"] - path = src/3rdparty/rpmalloc/rpmalloc - url = https://github.com/mjansson/rpmalloc.git -[submodule "plugins/zynaddsubfx/zynaddsubfx"] - path = plugins/zynaddsubfx/zynaddsubfx +[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 - url = https://bitbucket.org/mpyne/game-music-emu.git + url = https://github.com/libgme/game-music-emu.git [submodule "plugins/OpulenZ/adplug"] path = plugins/OpulenZ/adplug url = https://github.com/adplug/adplug.git @@ -24,13 +21,10 @@ url = https://github.com/swh/ladspa [submodule "plugins/LadspaEffect/tap/tap-plugins"] path = plugins/LadspaEffect/tap/tap-plugins - url = https://github.com/tomszilagyi/tap-plugins + url = https://github.com/lmms/tap-plugins [submodule "src/3rdparty/weakjack/weakjack"] path = src/3rdparty/weakjack/weakjack url = https://github.com/x42/weakjack.git -[submodule "src/3rdparty/mingw-std-threads"] - path = src/3rdparty/mingw-std-threads - url = https://github.com/meganz/mingw-std-threads.git [submodule "src/3rdparty/libcds"] path = src/3rdparty/libcds url = https://github.com/khizmax/libcds.git @@ -40,15 +34,18 @@ [submodule "src/3rdparty/ringbuffer"] path = src/3rdparty/ringbuffer url = https://github.com/JohannesLorenz/ringbuffer.git -[submodule "plugins/carlabase/carla"] - path = plugins/carlabase/carla +[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 "plugins/Sid/resid/resid"] + path = plugins/Sid/resid/resid + url = https://github.com/libsidplayfp/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 +[submodule "src/3rdparty/hiir/hiir"] + path = src/3rdparty/hiir/hiir + url = https://github.com/LostRobotMusic/hiir diff --git a/.mailmap b/.mailmap index 14d4754ce..536bc692c 100644 --- a/.mailmap +++ b/.mailmap @@ -1,4 +1,4 @@ -Alexandre Almeida +Alexandre Almeida Tobias Junghans Dave French Paul Giblock diff --git a/.travis.yml b/.travis.yml deleted file mode 100644 index d2d92d897..000000000 --- a/.travis.yml +++ /dev/null @@ -1,33 +0,0 @@ -language: cpp -compiler: gcc -dist: xenial -sudo: required -cache: - directories: - - $HOME/apt_mingw_cache - - $HOME/.ccache - - $HOME/pbuilder-bases -matrix: - include: - - env: TYPE=style - - os: linux - - 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: xcode10.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 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 9bf8aac01..000000000 --- a/.travis/linux..before_install.sh +++ /dev/null @@ -1,8 +0,0 @@ -#!/usr/bin/env bash - -set -e - -sudo add-apt-repository ppa:beineri/opt-qt592-xenial -y - -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 d56645603..000000000 --- a/.travis/linux..install.sh +++ /dev/null @@ -1,23 +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 fluid - 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" - -# LV2 dependencies; libsuil-dev is not required -LV2_PACKAGES="lv2-dev liblilv-dev" - -# Help with unmet dependencies -PACKAGES="$PACKAGES $SWH_PACKAGES $VST_PACKAGES $LV2_PACKAGES libjack-jackd2-0" - -# shellcheck disable=SC2086 -sudo apt-get install -y $PACKAGES 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 61f25af66..000000000 --- a/.travis/osx..before_install.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/usr/bin/env bash - -set -e - -brew update -# Python 2 may cause conflicts on dependency installation -brew unlink python@2 || true diff --git a/.travis/osx..install.sh b/.travis/osx..install.sh deleted file mode 100755 index 42bf66aca..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 lilv lv2 jack sdl libgig libsoundio stk fluid-synth portaudio node fltk qt 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 21d27b080..000000000 --- a/.travis/script.sh +++ /dev/null @@ -1,48 +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 -DBUNDLE_QT_TRANSLATIONS=ON" - - 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 [ -n "$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..." - # Limit the connection time to 3 minutes and total upload time to 5 minutes - # Otherwise the build may hang - curl --connect-timeout 180 --max-time 300 --upload-file "$PACKAGE" "https://transfer.sh/$PACKAGE" || true -fi diff --git a/.tx/config b/.tx/config index ab92433c5..f75700e97 100644 --- a/.tx/config +++ b/.tx/config @@ -3,9 +3,8 @@ host = https://www.transifex.com minimum_perc = 51 #Need to finish at least 51% before merging back -[lmms.lmms] +[o:lmms:p:lmms:r:lmms] file_filter = data/locale/.ts source_file = data/locale/en.ts source_lang = en -type = QT - +type = QT diff --git a/.yamllint b/.yamllint new file mode 100644 index 000000000..a7aa0ae1e --- /dev/null +++ b/.yamllint @@ -0,0 +1,3 @@ +rules: + line-length: + max: 120 # be conforming to LMMS coding rules diff --git a/Brewfile b/Brewfile new file mode 100644 index 000000000..1bfbd7b01 --- /dev/null +++ b/Brewfile @@ -0,0 +1,20 @@ +brew "carla" +brew "ccache" +brew "fftw" +brew "fltk" +brew "fluid-synth" +brew "jack" +brew "lame" +brew "libgig" +brew "libogg" +brew "libsamplerate" +brew "libsndfile" +brew "libsoundio" +brew "libvorbis" +brew "lilv" +brew "lv2" +brew "pkg-config" +brew "portaudio" +brew "qt@5" +brew "sdl2" +brew "stk" diff --git a/CMakeLists.txt b/CMakeLists.txt index 7920f69d3..022de1690 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,4 +1,23 @@ -CMAKE_MINIMUM_REQUIRED(VERSION 3.3) +CMAKE_MINIMUM_REQUIRED(VERSION 3.13) + +# Set the given policy to NEW. If it does not exist, it will not be set. If it +# is already set to NEW (most likely due to predating the minimum required CMake +# version), a developer warning is emitted indicating that the policy need no +# longer be explicitly set. +function(enable_policy_if_exists id) + if(POLICY "${id}") + cmake_policy(GET "${id}" current_value) + if(current_value STREQUAL "NEW") + message(AUTHOR_WARNING "${id} is now set to NEW by default, and no longer needs to be explicitly set.") + else() + cmake_policy(SET "${id}" NEW) + endif() + endif() +endfunction() + +enable_policy_if_exists(CMP0092) # MSVC warning flags are not in CMAKE__FLAGS by default. +# Needed for ccache support with MSVC +enable_policy_if_exists(CMP0141) # MSVC debug information format flags are selected by an abstraction. PROJECT(lmms) @@ -6,32 +25,28 @@ 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) - CMAKE_POLICY(SET CMP0003 NEW) - IF (CMAKE_MAJOR_VERSION GREATER 2) - CMAKE_POLICY(SET CMP0026 NEW) - CMAKE_POLICY(SET CMP0045 NEW) - 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) INCLUDE(FindPkgConfig) INCLUDE(GenerateExportHeader) +include(StaticDependencies) STRING(TOUPPER "${CMAKE_PROJECT_NAME}" PROJECT_NAME_UCASE) -SET(PROJECT_YEAR 2020) +SET(PROJECT_YEAR 2024) SET(PROJECT_AUTHOR "LMMS Developers") SET(PROJECT_URL "https://lmms.io") @@ -56,6 +71,7 @@ INCLUDE(VersionInfo) INCLUDE(DetectMachine) OPTION(WANT_ALSA "Include ALSA (Advanced Linux Sound Architecture) support" ON) +OPTION(WANT_OSS "Include Open Sound System support" ON) OPTION(WANT_CALF "Include CALF LADSPA plugins" ON) OPTION(WANT_CAPS "Include C* Audio Plugin Suite (LADSPA plugins)" ON) OPTION(WANT_CARLA "Include Carla plugin" ON) @@ -73,25 +89,32 @@ OPTION(WANT_SOUNDIO "Include libsoundio support" ON) OPTION(WANT_SDL "Include SDL (Simple DirectMedia Layer) support" ON) OPTION(WANT_SF2 "Include SoundFont2 player plugin" ON) OPTION(WANT_GIG "Include GIG player plugin" ON) +option(WANT_SID "Include Sid instrument" ON) OPTION(WANT_STK "Include Stk (Synthesis Toolkit) support" ON) OPTION(WANT_SWH "Include Steve Harris's LADSPA plugins" ON) OPTION(WANT_TAP "Include Tom's Audio Processing LADSPA plugins" ON) OPTION(WANT_VST "Include VST support" ON) -OPTION(WANT_VST_32 "Include 32-bit VST support" ON) -OPTION(WANT_VST_64 "Include 64-bit VST support" ON) +OPTION(WANT_VST_32 "Include 32-bit Windows VST support" ON) +OPTION(WANT_VST_64 "Include 64-bit Windows VST support" ON) OPTION(WANT_WINMM "Include WinMM MIDI support" OFF) OPTION(WANT_DEBUG_FPE "Debug floating point exceptions" OFF) +option(WANT_DEBUG_ASAN "Enable AddressSanitizer" OFF) +option(WANT_DEBUG_TSAN "Enable ThreadSanitizer" OFF) +option(WANT_DEBUG_MSAN "Enable MemorySanitizer" OFF) +option(WANT_DEBUG_UBSAN "Enable UndefinedBehaviorSanitizer" OFF) OPTION(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_OSS OFF) SET(WANT_PULSEAUDIO OFF) SET(WANT_VST OFF) SET(STATUS_ALSA "") + SET(STATUS_OSS "") SET(STATUS_PULSEAUDIO "") SET(STATUS_APPLEMIDI "OK") ELSE(LMMS_BUILD_APPLE) @@ -101,43 +124,37 @@ ENDIF(LMMS_BUILD_APPLE) IF(LMMS_BUILD_WIN32) SET(WANT_ALSA OFF) + SET(WANT_OSS 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) + if(NOT LMMS_BUILD_WIN64) + set(WANT_VST_64 OFF) + endif() SET(STATUS_ALSA "") + SET(STATUS_OSS "") SET(STATUS_PULSEAUDIO "") SET(STATUS_SOUNDIO "") + SET(STATUS_SNDIO "") SET(STATUS_WINMM "OK") SET(STATUS_APPLEMIDI "") ELSE(LMMS_BUILD_WIN32) SET(STATUS_WINMM "") ENDIF(LMMS_BUILD_WIN32) - -# TODO: Fix linking issues with msys debug builds -IF(LMMS_BUILD_MSYS AND CMAKE_BUILD_TYPE STREQUAL "Debug") - SET(WANT_GIG OFF) - SET(WANT_STK OFF) - SET(WANT_SWH OFF) - SET(STATUS_GIG "not built as requested") - SET(STATUS_STK "not built as requested") -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(sys/prctl.h LMMS_HAVE_SYS_PRCTL_H) CHECK_INCLUDE_FILES(sched.h LMMS_HAVE_SCHED_H) CHECK_INCLUDE_FILES(sys/soundcard.h LMMS_HAVE_SYS_SOUNDCARD_H) CHECK_INCLUDE_FILES(soundcard.h LMMS_HAVE_SOUNDCARD_H) @@ -148,12 +165,15 @@ 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 5.6.0 COMPONENTS Core Gui Widgets Xml REQUIRED) +FIND_PACKAGE(Qt5 5.9.0 COMPONENTS Core Gui Widgets Xml REQUIRED) FIND_PACKAGE(Qt5 COMPONENTS LinguistTools QUIET) -INCLUDE_DIRECTORIES( +include_directories(SYSTEM ${Qt5Core_INCLUDE_DIRS} ${Qt5Gui_INCLUDE_DIRS} ${Qt5Widgets_INCLUDE_DIRS} @@ -183,7 +203,7 @@ execute_process(COMMAND ${QT_QMAKE_EXECUTABLE} -query QT_INSTALL_TRANSLATIONS ) IF(EXISTS "${QT_TRANSLATIONS_DIR}") MESSAGE("-- Found Qt translations in ${QT_TRANSLATIONS_DIR}") - ADD_DEFINITIONS(-D'QT_TRANSLATIONS_DIR="${QT_TRANSLATIONS_DIR}"') + ADD_DEFINITIONS("-DQT_TRANSLATIONS_DIR=\"${QT_TRANSLATIONS_DIR}\"") ENDIF() FIND_PACKAGE(Qt5Test) @@ -191,13 +211,30 @@ SET(QT_QTTEST_LIBRARY Qt5::Test) # check for libsndfile FIND_PACKAGE(SndFile REQUIRED) -IF(NOT SNDFILE_FOUND) +IF(SNDFILE_FOUND) + IF(SndFile_VERSION VERSION_GREATER_EQUAL "1.1.0") + SET(LMMS_HAVE_SNDFILE_MP3 TRUE) + ELSE() + MESSAGE("libsndfile version is < 1.1.0; MP3 import disabled") + SET(LMMS_HAVE_SNDFILE_MP3 FALSE) + ENDIF() +ELSE() 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 +) + +# check for perl +if(LMMS_BUILD_APPLE) + # Prefer system perl over Homebrew, MacPorts, etc + set(Perl_ROOT "/usr/bin") +endif() +find_package(Perl) IF(WANT_LV2) IF(PKG_CONFIG_FOUND) @@ -205,6 +242,8 @@ IF(WANT_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) @@ -259,8 +298,12 @@ ELSE(WANT_CMT) ENDIF(WANT_CMT) IF(WANT_SWH) - SET(LMMS_HAVE_SWH TRUE) - SET(STATUS_SWH "OK") + IF(PERL_FOUND) + SET(LMMS_HAVE_SWH TRUE) + SET(STATUS_SWH "OK") + ELSE() + SET(STATUS_SWH "Skipping, perl is missing") + ENDIF() ELSE(WANT_SWH) SET(STATUS_SWH "not built as requested") ENDIF(WANT_SWH) @@ -292,40 +335,26 @@ 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(SDL_INCLUDE_DIR "") - SET(SDL_LIBRARY "") + SET(STATUS_SDL "OK") + SET(SDL2_LIBRARY "SDL2::SDL2") ELSE() - SET(SDL2_INCLUDE_DIR "") + SET(STATUS_SDL "not found, please install libsdl2-dev (or similar) if you require SDL support") SET(SDL2_LIBRARY "") ENDIF() ENDIF() -# fallback to SDL1 -IF(WANT_SDL AND NOT LMMS_HAVE_SDL2) - # Fallback to SDL1.2 - SET(SDL_BUILDING_LIBRARY TRUE) - FIND_PACKAGE(SDL) - IF(SDL_FOUND) - SET(LMMS_HAVE_SDL TRUE) - SET(STATUS_SDL "OK, using SDL1.2") - # fix mingw since 53abd65 - IF(NOT SDL_INCLUDE_DIR) - SET(SDL_INCLUDE_DIR "${CMAKE_FIND_ROOT_PATH}/include") - ENDIF() - - ELSE() - SET(STATUS_SDL "not found, please install libsdl2-dev (or similar) " - "if you require SDL support") - SET(SDL_INCLUDE_DIR "") - SET(SDL_LIBRARY "") - ENDIF() -ENDIF() +# check for Sid +if(WANT_SID) + if(PERL_FOUND) + set(LMMS_HAVE_SID TRUE) + set(STATUS_SID "OK") + else() + set(STATUS_SID "not found, please install perl if you require the Sid instrument") + endif() +endif() # check for Stk IF(WANT_STK) @@ -344,13 +373,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 @@ -359,7 +388,7 @@ IF(WANT_SOUNDIO) IF(SOUNDIO_FOUND) SET(LMMS_HAVE_SOUNDIO TRUE) SET(STATUS_SOUNDIO "OK") - INCLUDE_DIRECTORIES("${SOUNDIO_INCLUDE_DIR}") + include_directories(SYSTEM "${SOUNDIO_INCLUDE_DIR}") ELSE(SOUNDIO_FOUND) SET(SOUNDIO_INCLUDE_DIR "") SET(STATUS_SOUNDIO "not found, please install libsoundio if you require libsoundio support") @@ -393,8 +422,6 @@ IF(WANT_MP3LAME) SET(STATUS_MP3LAME "OK") ELSE(LAME_FOUND) SET(STATUS_MP3LAME "not found, please install libmp3lame-dev (or similar)") - SET(LAME_LIBRARIES "") - SET(LAME_INCLUDE_DIRS "") ENDIF(LAME_FOUND) ELSE(WANT_MP3LAME) SET(STATUS_MP3LAME "Disabled for build") @@ -413,13 +440,13 @@ IF(WANT_OGGVORBIS) ENDIF(WANT_OGGVORBIS) -# check whether to enable OSS-support -IF(LMMS_HAVE_SOUNDCARD_H OR LMMS_HAVE_SYS_SOUNDCARD_H) +# check for OSS +IF(WANT_OSS AND (LMMS_HAVE_SOUNDCARD_H OR LMMS_HAVE_SYS_SOUNDCARD_H)) SET(LMMS_HAVE_OSS TRUE) SET(STATUS_OSS "OK") -ELSE(LMMS_HAVE_SOUNDCARD_H OR LMMS_HAVE_SYS_SOUNDCARD_H) +ELSEIF(WANT_OSS) SET(STATUS_OSS "") -ENDIF(LMMS_HAVE_SOUNDCARD_H OR LMMS_HAVE_SYS_SOUNDCARD_H) +ENDIF() # check for ALSA @@ -442,17 +469,22 @@ ENDIF(NOT LMMS_HAVE_ALSA) IF(WANT_JACK) 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(JACK_INCLUDE_DIRS "") + set(JACK_LIBRARIES weakjack) SET(LMMS_HAVE_JACK TRUE) + 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() @@ -466,6 +498,13 @@ ENDIF(WANT_JACK) FIND_PACKAGE(FFTW COMPONENTS fftw3f REQUIRED) # check for FLTK +set(FLTK_SKIP_OPENGL TRUE) +set(FLTK_SKIP_FORMS TRUE) +set(FLTK_SKIP_IMAGES TRUE) +set(FLTK_SKIP_MATH TRUE) +if(MINGW_PREFIX) + set(FLTK_SKIP_FLUID TRUE) +endif() FIND_PACKAGE(FLTK) IF(FLTK_FOUND) SET(STATUS_ZYN "OK") @@ -475,14 +514,18 @@ ENDIF() # check for Fluidsynth IF(WANT_SF2) - PKG_CHECK_MODULES(FLUIDSYNTH fluidsynth>=1.0.7) - IF(FLUIDSYNTH_FOUND) + find_package(FluidSynth 1.1.7) + if(FluidSynth_FOUND) SET(LMMS_HAVE_FLUIDSYNTH TRUE) - SET(STATUS_FLUIDSYNTH "OK") - ELSE(FLUIDSYNTH_FOUND) + if(FluidSynth_VERSION_STRING VERSION_GREATER_EQUAL 2) + set(STATUS_FLUIDSYNTH "OK") + else() + set(STATUS_FLUIDSYNTH "OK (FluidSynth version < 2: per-note panning unsupported)") + endif() + else() SET(STATUS_FLUIDSYNTH "not found, libfluidsynth-dev (or similar)" "is highly recommended") - ENDIF(FLUIDSYNTH_FOUND) + endif() ENDIF(WANT_SF2) # check for libgig @@ -513,26 +556,42 @@ IF(WANT_SNDIO) ENDIF(WANT_SNDIO) # check for WINE -IF(WANT_VST) - FIND_PACKAGE(Wine) - IF(WINE_FOUND) - SET(LMMS_SUPPORT_VST TRUE) - IF(WINE_LIBRARY_FIX) - SET(STATUS_VST "OK, with workaround linking ${WINE_LIBRARY_FIX}") - ELSE() - SET(STATUS_VST "OK") - ENDIF() - ELSEIF(WANT_VST_NOWINE) - SET(LMMS_SUPPORT_VST TRUE) - SET(STATUS_VST "OK") - ELSE(WINE_FOUND) - SET(STATUS_VST "not found, please install (lib)wine-dev (or similar) - 64 bit systems additionally need gcc-multilib and g++-multilib") - ENDIF(WINE_FOUND) -ENDIF(WANT_VST) -IF(LMMS_BUILD_WIN32) - SET(LMMS_SUPPORT_VST TRUE) - SET(STATUS_VST "OK") -ENDIF(LMMS_BUILD_WIN32) +if(WANT_VST) + if((WANT_VST_32 OR WANT_VST_64) AND NOT LMMS_BUILD_WIN32) + find_package(Wine) + include(CheckWineGcc) + endif() + macro(check_vst bits) + if(NOT WANT_VST_${bits}) + set(STATUS_VST_${bits} "Not built, as requested") + elseif(LMMS_BUILD_WIN32) + set(STATUS_VST_${bits} "OK") + set(LMMS_HAVE_VST_${bits} TRUE) + elseif(NOT WINE_FOUND) + set(STATUS_VST_${bits} "not found, please install (lib)wine-dev (or similar) - 64 bit systems additionally need gcc-multilib and g++-multilib") + else() + CheckWineGcc("${bits}" "${WINEGCC}" WINEGCC_WORKING) + if(WINEGCC_WORKING) + set(LMMS_HAVE_VST_${bits} TRUE) + if(WINE_LIBRARY_FIX) + set(STATUS_VST_${bits} "OK, with workaround linking ${WINE_LIBRARY_FIX}") + else() + set(STATUS_VST_${bits} "OK") + endif() + else() + set(STATUS_VST_${bits} "winegcc fails to compile ${bits}-bit binaries, please make sure you have ${bits}-bit GCC libraries") + endif() + endif() + endmacro() + check_vst(32) + check_vst(64) + if(LMMS_HAVE_VST_32 OR LMMS_HAVE_VST_64 OR LMMS_BUILD_LINUX) + set(LMMS_HAVE_VST TRUE) + set(STATUS_VST "OK") + else() + set(STATUS_VST "No hosts selected and available") + endif() +endif() IF(WANT_DEBUG_FPE) IF(LMMS_BUILD_LINUX OR LMMS_BUILD_APPLE) @@ -548,28 +607,6 @@ ENDIF(WANT_DEBUG_FPE) # check for libsamplerate FIND_PACKAGE(Samplerate 0.1.8 MODULE REQUIRED) -# set compiler flags -IF(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") - SET(WERROR_FLAGS "-Wall -Werror=unused-function -Wno-sign-compare -Wno-strict-overflow") - OPTION(USE_WERROR "Add -werror to the build flags. Stops the build on warnings" OFF) - IF(${USE_WERROR}) - SET(WERROR_FLAGS "${WERROR_FLAGS} -Werror") - ENDIF() - - # 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 -Wno-attributes") - ENDIF() -ELSEIF(MSVC) - # Remove any existing /W flags - STRING(REGEX REPLACE "/W[0-4]" "" CMAKE_CXX_FLAGS ${CMAKE_CXX_FLAGS}) - SET(WERROR_FLAGS "/W2") - IF(${USE_WERROR}) - SET(WERROR_FLAGS "${WERROR_FLAGS} /WX") - ENDIF() -ENDIF() - - IF(NOT CMAKE_BUILD_TYPE) message(STATUS "Setting build type to 'Release' as none was specified.") set(CMAKE_BUILD_TYPE Release CACHE STRING "Choose the type of build." FORCE) @@ -578,11 +615,21 @@ IF(NOT CMAKE_BUILD_TYPE) "MinSizeRel" "RelWithDebInfo") ENDIF() -SET(CMAKE_C_FLAGS "${WERROR_FLAGS} ${CMAKE_C_FLAGS}") -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) + # TODO CMake 3.19: Now that CONFIG generator expressions support testing for + # multiple configurations, combine the OR into a single CONFIG expression. + 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) @@ -609,14 +656,41 @@ ENDIF() # we somehow have to make LMMS-binary depend on MOC-files ADD_FILE_DEPENDENCIES("${CMAKE_BINARY_DIR}/lmmsconfig.h") -IF(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") - IF(WIN32) - SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-attributes") - ELSE(WIN32) - SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -DPIC") - ENDIF(WIN32) +if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang" AND NOT WIN32) + set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -fPIC -DPIC") + set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -DPIC") +elseif(MSVC) + # Use UTF-8 as the source and execution character set + add_compile_options("/utf-8") ENDIF() +# add enabled sanitizers +function(add_sanitizer sanitizer supported_compilers want_flag status_flag) + if(${want_flag}) + if(CMAKE_CXX_COMPILER_ID MATCHES "${supported_compilers}") + set("${status_flag}" "Enabled" PARENT_SCOPE) + string(REPLACE ";" " " additional_flags "${ARGN}") + # todo CMake 3.13: use add_compile_options/add_link_options instead + set(CMAKE_C_FLAGS_DEBUG "${CMAKE_C_FLAGS_DEBUG} -fsanitize=${sanitizer} ${additional_flags}" PARENT_SCOPE) + set(CMAKE_CXX_FLAGS_DEBUG "${CMAKE_CXX_FLAGS_DEBUG} -fsanitize=${sanitizer} ${additional_flags}" PARENT_SCOPE) + else() + set("${status_flag}" "Wanted but disabled due to unsupported compiler" PARENT_SCOPE) + endif() + else() + set("${status_flag}" "Disabled" PARENT_SCOPE) + endif() +endfunction() + +add_sanitizer(address "GNU|Clang|MSVC" WANT_DEBUG_ASAN STATUS_DEBUG_ASAN) +add_sanitizer(thread "GNU|Clang" WANT_DEBUG_TSAN STATUS_DEBUG_TSAN) +add_sanitizer(memory "Clang" WANT_DEBUG_MSAN STATUS_DEBUG_MSAN -fno-omit-frame-pointer) +# UBSan does not link with vptr enabled due to a problem with references from PeakControllerEffect +# not being found by PeakController +add_sanitizer(undefined "GNU|Clang" WANT_DEBUG_UBSAN STATUS_DEBUG_UBSAN -fno-sanitize=vptr) + +# Add warning and error flags +include(ErrorFlags) + # use ccache include(CompileCache) @@ -657,18 +731,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 # @@ -698,7 +760,6 @@ ADD_CUSTOM_TARGET(uninstall COMMAND ${CMAKE_COMMAND} -DCMAKE_INSTALL_PREFIX="${CMAKE_INSTALL_PREFIX}" -P "${CMAKE_CURRENT_SOURCE_DIR}/cmake/uninstall.cmake" ) - # # display configuration information # @@ -750,9 +811,11 @@ MESSAGE( "* ZynAddSubFX instrument : ${STATUS_ZYN}\n" "* Carla Patchbay & Rack : ${STATUS_CARLA}\n" "* SoundFont2 player : ${STATUS_FLUIDSYNTH}\n" +"* Sid instrument : ${STATUS_SID}\n" "* Stk Mallets : ${STATUS_STK}\n" -"* VST-instrument hoster : ${STATUS_VST}\n" -"* VST-effect hoster : ${STATUS_VST}\n" +"* VST plugin host : ${STATUS_VST}\n" +" * 32-bit Windows host : ${STATUS_VST_32}\n" +" * 64-bit Windows host : ${STATUS_VST_64}\n" "* CALF LADSPA plugins : ${STATUS_CALF}\n" "* CAPS LADSPA plugins : ${STATUS_CAPS}\n" "* CMT LADSPA plugins : ${STATUS_CMT}\n" @@ -764,7 +827,11 @@ MESSAGE( MESSAGE( "Developer options\n" "-----------------------------------------\n" -"* Debug FP exceptions : ${STATUS_DEBUG_FPE}\n" +"* Debug FP exceptions : ${STATUS_DEBUG_FPE}\n" +"* Debug using AddressSanitizer : ${STATUS_DEBUG_ASAN}\n" +"* Debug using ThreadSanitizer : ${STATUS_DEBUG_TSAN}\n" +"* Debug using MemorySanitizer : ${STATUS_DEBUG_MSAN}\n" +"* Debug using UBSanitizer : ${STATUS_DEBUG_UBSAN}\n" ) MESSAGE( diff --git a/README.md b/README.md index 6b23673d7..c8324226e 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,11 @@ -# ![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://github.com/LMMS/lmms/actions/workflows/build.yml/badge.svg)](https://github.com/LMMS/lmms/actions/workflows/build.yml) [![Latest stable release](https://img.shields.io/github/release/LMMS/lmms.svg?maxAge=3600)](https://lmms.io/download) [![Overall downloads on Github](https://img.shields.io/github/downloads/LMMS/lmms/total.svg?maxAge=3600)](https://github.com/LMMS/lmms/releases) [![Join the chat at Discord](https://img.shields.io/badge/chat-on%20discord-7289DA.svg)](https://discord.gg/3sc5su7) [![Localise on transifex](https://img.shields.io/badge/localise-on_transifex-green.svg)](https://www.transifex.com/lmms/lmms/) -**A soft PR-Freeze is currently underway to prepare for refactoring ([#5592](https://github.com/LMMS/lmms/issues/5592)). Please do not open non-essential PRs at this time.** - What is LMMS? -------------- @@ -28,9 +26,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 diff --git a/benchmarks/CMakeLists.txt b/benchmarks/CMakeLists.txt index 934903d93..7e300ae86 100644 --- a/benchmarks/CMakeLists.txt +++ b/benchmarks/CMakeLists.txt @@ -1,14 +1,13 @@ -INCLUDE_DIRECTORIES("${CMAKE_CURRENT_SOURCE_DIR}") -INCLUDE_DIRECTORIES("${CMAKE_CURRENT_BINARY_DIR}") -INCLUDE_DIRECTORIES("${CMAKE_SOURCE_DIR}/include") -INCLUDE_DIRECTORIES("${CMAKE_BINARY_DIR}") - -SET(CMAKE_CXX_STANDARD 11) - SET(CMAKE_AUTOMOC ON) ADD_EXECUTABLE(benchmarks EXCLUDE_FROM_ALL benchmark.cpp ) -TARGET_LINK_LIBRARIES(benchmarks lmmslib) + +# TODO replace usages of include_directories in src/CMakeLists.txt with target_include_directories +# and remove this line (also in tests/CMakeLists.txt) +target_include_directories(benchmarks PRIVATE $) + +target_static_libraries(benchmarks PRIVATE lmmsobjs) +target_compile_features(benchmarks PRIVATE cxx_std_17) diff --git a/benchmarks/benchmark.cpp b/benchmarks/benchmark.cpp index da4af8f88..86f9ee414 100644 --- a/benchmarks/benchmark.cpp +++ b/benchmarks/benchmark.cpp @@ -14,6 +14,8 @@ #include "NotePlayHandle.h" +using namespace lmms; + template using LocklessQueue = cds::container::VyukovMPMCCycleQueue; @@ -116,7 +118,6 @@ int main(int argc, char* argv[]) constexpr size_t S = 256; using T = std::array; benchmark_allocator("std::allocator", std::allocator{}, n, 1); - benchmark_allocator("MmAllocator", MmAllocator{}, n, 1); benchmark_allocator("MemoryPool", MemoryPool{n}, n, 1); } { @@ -124,7 +125,6 @@ int main(int argc, char* argv[]) constexpr size_t S = 256; using T = std::array; benchmark_allocator_threaded("std::allocator", std::allocator{}, n, 4); - benchmark_allocator_threaded("MmAllocator", MmAllocator{}, n, 4); benchmark_allocator_threaded("MemoryPool", MemoryPool{n}, n, 4); } } diff --git a/cmake/apple/CMakeLists.txt b/cmake/apple/CMakeLists.txt index 0b66689e7..3fd0a4da4 100644 --- a/cmake/apple/CMakeLists.txt +++ b/cmake/apple/CMakeLists.txt @@ -19,8 +19,19 @@ CONFIGURE_FILE("lmms.plist.in" "${CMAKE_BINARY_DIR}/Info.plist") CONFIGURE_FILE("install_apple.sh.in" "${CMAKE_BINARY_DIR}/install_apple.sh" @ONLY) CONFIGURE_FILE("package_apple.json.in" "${CMAKE_BINARY_DIR}/package_apple.json" @ONLY) +IF(CMAKE_OSX_ARCHITECTURES) + SET(DMG_ARCH "${CMAKE_OSX_ARCHITECTURES}") +ELSEIF(IS_ARM64) + # Target arch is host arch + SET(DMG_ARCH "arm64") +ELSE() + # Fallback to Intel + SET(DMG_ARCH "x86_64") +ENDIF() + # DMG creation target -SET(DMG_FILE "${CMAKE_BINARY_DIR}/${CMAKE_PROJECT_NAME}-${VERSION}-mac${APPLE_OS_VER}.dmg") +SET(DMG_FILE "${CMAKE_BINARY_DIR}/${CMAKE_PROJECT_NAME}-${VERSION}-mac${APPLE_OS_VER}-${DMG_ARCH}.dmg") + FILE(REMOVE "${DMG_FILE}") ADD_CUSTOM_TARGET(removedmg COMMAND touch "\"${DMG_FILE}\"" && rm "\"${DMG_FILE}\"" diff --git a/cmake/apple/install_apple.sh.in b/cmake/apple/install_apple.sh.in index 63dc8145e..fc27d78b3 100644 --- a/cmake/apple/install_apple.sh.in +++ b/cmake/apple/install_apple.sh.in @@ -6,9 +6,6 @@ set -e -# STK rawwaves directory -STK_RAWWAVE=$(brew --prefix stk)/share/stk/rawwaves - # Place to create ".app" bundle APP="@CMAKE_BINARY_DIR@/@PROJECT_NAME_UCASE@.app" @@ -29,19 +26,15 @@ command cp "@CMAKE_BINARY_DIR@/Info.plist" "@CMAKE_INSTALL_PREFIX@/" mkdir -p "$APP/Contents/MacOS" mkdir -p "$APP/Contents/Frameworks" mkdir -p "$APP/Contents/Resources" -mkdir -p "$APP/Contents/share/stk/rawwaves" cd "@CMAKE_INSTALL_PREFIX@" cp -R ./* "$APP/Contents" cp "@CMAKE_SOURCE_DIR@/cmake/apple/"*.icns "$APP/Contents/Resources/" -cp "$STK_RAWWAVE"/*.raw "$APP/Contents/share/stk/rawwaves" > /dev/null 2>&1 # Make all libraries writable for macdeployqt cd "$APP" find . -type f -print0 | xargs -0 chmod u+w lmmsbin="MacOS/@CMAKE_PROJECT_NAME@" -zynlib="lib/lmms/libzynaddsubfx.so" -zynfmk="Frameworks/libZynAddSubFxCore.dylib" zynbin="MacOS/RemoteZynAddSubFx" # Move lmms binary @@ -49,18 +42,9 @@ mv "$APP/Contents/bin/@CMAKE_PROJECT_NAME@" "$APP/Contents/$lmmsbin" # Fix zyn linking mv "$APP/Contents/lib/lmms/RemoteZynAddSubFx" "$APP/Contents/$zynbin" -mv "$APP/Contents/lib/lmms/libZynAddSubFxCore.dylib" "$APP/Contents/$zynfmk" - -install_name_tool -change @rpath/libZynAddSubFxCore.dylib \ - @loader_path/../$zynfmk \ - "$APP/Contents/$zynbin" - -install_name_tool -change @rpath/libZynAddSubFxCore.dylib \ - @loader_path/../../$zynfmk \ - "$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 \ @@ -72,7 +56,6 @@ install_name_tool -change @rpath/libcarlabase.dylib \ # Link lmms binary _executables="${_executables} -executable=$APP/Contents/$zynbin" -_executables="${_executables} -executable=$APP/Contents/$zynfmk" # Build a list of shared objects in target/lib/lmms for file in "$APP/Contents/lib/lmms/"*.so; do @@ -114,4 +97,8 @@ done # Cleanup rm -rf "$APP/Contents/bin" + +# Codesign +codesign --force --deep --sign - "$APP" + echo -e "\nFinished.\n\n" diff --git a/cmake/build_win32.sh b/cmake/build_win32.sh deleted file mode 100755 index 33cd8ecce..000000000 --- a/cmake/build_win32.sh +++ /dev/null @@ -1,40 +0,0 @@ -#!/usr/bin/env bash -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" - -# Accomodate both linux windows mingw locations -if [ -z "$ARCH" ]; then - ARCH=32 -fi - -MINGW=/mingw$ARCH - -if [ -z "$MSYSCON" ]; then - MINGW=/opt$MINGW - - DISTRO=$(lsb_release -si) - DISTRO_VERSION=$(lsb_release -sr) - - if [ "$DISTRO" != "Ubuntu" ]; then - echo "This script only supports Ubuntu" - exit 1 - fi - - if [ "$DISTRO_VERSION" == "14.04" ]; then - TOOLCHAIN="$DIR/toolchains/Ubuntu-MinGW-X-Trusty-$ARCH.cmake" - else - TOOLCHAIN="$DIR/toolchains/Ubuntu-MinGW-W64-$ARCH.cmake" - fi -else - TOOLCHAIN="$DIR/toolchains/MSYS-$ARCH.cmake" -fi - -export PATH=$MINGW/bin:$PATH -export CXXFLAGS="$CFLAGS" -if [ "$ARCH" == "32" ]; then - export CFLAGS="-march=pentium3 -mtune=generic -mpreferred-stack-boundary=5 -mfpmath=sse" -fi - -CMAKE_OPTS="-DCMAKE_PREFIX_PATH=$MINGW $CMAKE_OPTS" - -# shellcheck disable=SC2086 -cmake "$DIR/.." -DCMAKE_TOOLCHAIN_FILE="$TOOLCHAIN" $CMAKE_OPTS diff --git a/cmake/build_win64.sh b/cmake/build_win64.sh deleted file mode 100755 index 8dabe09f8..000000000 --- a/cmake/build_win64.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/usr/bin/env bash -DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -ARCH=64 "$DIR/build_win32.sh" diff --git a/cmake/install/CMakeLists.txt b/cmake/install/CMakeLists.txt index cd4100c9b..3f6e3624e 100644 --- a/cmake/install/CMakeLists.txt +++ b/cmake/install/CMakeLists.txt @@ -36,7 +36,21 @@ IF(LMMS_BUILD_WIN32 OR LMMS_INSTALL_DEPENDENCIES) ) ENDIF() +# Install STK rawwaves +if(LMMS_HAVE_STK AND (LMMS_BUILD_WIN32 OR LMMS_BUILD_APPLE)) + if(STK_RAWWAVE_ROOT) + file(GLOB RAWWAVES "${STK_RAWWAVE_ROOT}/*.raw") + install(FILES ${RAWWAVES} DESTINATION "${DATA_DIR}/stk/rawwaves") + else() + message(WARNING "Can't find STK rawwave root!") + endif() +endif() + IF(LMMS_BUILD_APPLE) INSTALL(CODE "EXECUTE_PROCESS(COMMAND chmod u+x ${CMAKE_BINARY_DIR}/install_apple.sh)") - INSTALL(CODE "EXECUTE_PROCESS(COMMAND ${CMAKE_BINARY_DIR}/install_apple.sh)") + INSTALL(CODE "EXECUTE_PROCESS(COMMAND ${CMAKE_BINARY_DIR}/install_apple.sh RESULT_VARIABLE EXIT_CODE) + IF(NOT EXIT_CODE EQUAL 0) + MESSAGE(FATAL_ERROR \"Execution of install_apple.sh failed\") + ENDIF() + ") ENDIF() diff --git a/cmake/install/excludelist-win b/cmake/install/excludelist-win index 17793a113..ac3c47901 100644 --- a/cmake/install/excludelist-win +++ b/cmake/install/excludelist-win @@ -3,17 +3,21 @@ ADVAPI32.dll COMCTL32.dll comdlg32.dll +d3d11.dll dwmapi.dll +dxgi.dll GDI32.dll IMM32.dll KERNEL32.dll MPR.DLL msvcrt.dll +netapi32.dll ole32.dll OLEAUT32.dll OPENGL32.DLL SHELL32.dll USER32.dll +userenv.dll UxTheme.dll VERSION.dll WINMM.DLL diff --git a/cmake/linux/launch_lmms.sh b/cmake/linux/launch_lmms.sh index 198b5711a..ba26fb9c7 100644 --- a/cmake/linux/launch_lmms.sh +++ b/cmake/linux/launch_lmms.sh @@ -4,21 +4,21 @@ 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." + 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." + 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." + 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." + 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." + 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/package_linux.sh.in b/cmake/linux/package_linux.sh.in index a1f9ff865..16cd5719b 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 @@ -135,6 +149,7 @@ fi # Patch the desktop file sed -i 's/.*Exec=.*/Exec=lmms.real/' "$DESKTOPFILE" +echo "X-AppImage-Version=@VERSION@" >> "$DESKTOPFILE" # Fix linking for soft-linked plugins for file in "${APPDIR}usr/lib/lmms/"*.so; do @@ -149,12 +164,14 @@ 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" # shellcheck disable=SC2086 -"$LINUXDEPLOYQT" "$DESKTOPFILE" $executables -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 @@ -185,10 +202,12 @@ fi rm -f "${APPDIR}/AppRun" ln -sr "${APPDIR}/usr/bin/lmms" "${APPDIR}/AppRun" +# Add icon +ln -srf "${APPDIR}/lmms.png" "${APPDIR}/.DirIcon" + # Create AppImage echo -e "\nFinishing the AppImage..." -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/BashCompletion.cmake b/cmake/modules/BashCompletion.cmake index c3916f201..7301e82aa 100644 --- a/cmake/modules/BashCompletion.cmake +++ b/cmake/modules/BashCompletion.cmake @@ -24,7 +24,7 @@ # - Windows does not support bash completion # - macOS support should eventually be added for Homebrew (TODO) IF(WIN32) - MESSAGE(STATUS "Bash competion is not supported on this platform.") + MESSAGE(STATUS "Bash completion is not supported on this platform.") ELSEIF(APPLE) MESSAGE(STATUS "Bash completion is not yet implemented for this platform.") ELSE() diff --git a/cmake/modules/BuildPlugin.cmake b/cmake/modules/BuildPlugin.cmake index 675433e63..69af41ecb 100644 --- a/cmake/modules/BuildPlugin.cmake +++ b/cmake/modules/BuildPlugin.cmake @@ -1,12 +1,12 @@ # BuildPlugin.cmake - Copyright (c) 2008 Tobias Doerffel # # description: build LMMS-plugin -# usage: BUILD_PLUGIN( MOCFILES EMBEDDED_RESOURCES UICFILES LINK ) +# usage: BUILD_PLUGIN( MOCFILES EMBEDDED_RESOURCES LINK ) INCLUDE(GenQrc) MACRO(BUILD_PLUGIN PLUGIN_NAME) - CMAKE_PARSE_ARGUMENTS(PLUGIN "" "LINK;EXPORT_BASE_NAME" "MOCFILES;EMBEDDED_RESOURCES;UICFILES" ${ARGN}) + CMAKE_PARSE_ARGUMENTS(PLUGIN "" "LINK;EXPORT_BASE_NAME" "MOCFILES;EMBEDDED_RESOURCES" ${ARGN}) SET(PLUGIN_SOURCES ${PLUGIN_UNPARSED_ARGUMENTS}) INCLUDE_DIRECTORIES("${CMAKE_CURRENT_BINARY_DIR}" "${CMAKE_BINARY_DIR}" "${CMAKE_SOURCE_DIR}/include") @@ -31,10 +31,9 @@ MACRO(BUILD_PLUGIN PLUGIN_NAME) ENDIF(ER_LEN) QT5_WRAP_CPP(plugin_MOC_out ${PLUGIN_MOCFILES}) - QT5_WRAP_UI(plugin_UIC_out ${PLUGIN_UICFILES}) FOREACH(f ${PLUGIN_SOURCES}) - ADD_FILE_DEPENDENCIES(${f} ${RCC_OUT} ${plugin_UIC_out}) + ADD_FILE_DEPENDENCIES(${f} ${RCC_OUT}) ENDFOREACH(f) IF(LMMS_BUILD_APPLE) @@ -45,10 +44,6 @@ MACRO(BUILD_PLUGIN PLUGIN_NAME) LINK_DIRECTORIES("${CMAKE_BINARY_DIR}" "${CMAKE_SOURCE_DIR}") LINK_LIBRARIES(${QT_LIBRARIES}) ENDIF(LMMS_BUILD_WIN32) - IF(LMMS_BUILD_MSYS AND CMAKE_BUILD_TYPE STREQUAL "Debug") - # Override Qt debug libraries with release versions - SET(QT_LIBRARIES "${QT_OVERRIDE_LIBRARIES}") - ENDIF() IF (NOT PLUGIN_LINK) SET(PLUGIN_LINK "MODULE") @@ -56,11 +51,7 @@ MACRO(BUILD_PLUGIN PLUGIN_NAME) ADD_LIBRARY(${PLUGIN_NAME} ${PLUGIN_LINK} ${PLUGIN_SOURCES} ${plugin_MOC_out} ${RCC_OUT}) - TARGET_LINK_LIBRARIES(${PLUGIN_NAME} Qt5::Widgets Qt5::Xml) - - IF(LMMS_BUILD_WIN32) - TARGET_LINK_LIBRARIES(${PLUGIN_NAME} lmms) - ENDIF(LMMS_BUILD_WIN32) + target_link_libraries("${PLUGIN_NAME}" lmms Qt5::Widgets Qt5::Xml) INSTALL(TARGETS ${PLUGIN_NAME} LIBRARY DESTINATION "${PLUGIN_DIR}" @@ -69,16 +60,17 @@ MACRO(BUILD_PLUGIN PLUGIN_NAME) IF(LMMS_BUILD_APPLE) IF ("${PLUGIN_LINK}" STREQUAL "SHARED") - SET_TARGET_PROPERTIES(${PLUGIN_NAME} PROPERTIES LINK_FLAGS "-undefined dynamic_lookup") - ELSE() - SET_TARGET_PROPERTIES(${PLUGIN_NAME} PROPERTIES LINK_FLAGS "-bundle_loader \"${CMAKE_BINARY_DIR}/lmms\"") + TARGET_LINK_OPTIONS(${PLUGIN_NAME} PRIVATE -undefined dynamic_lookup) ENDIF() - ADD_DEPENDENCIES(${PLUGIN_NAME} lmms) ENDIF(LMMS_BUILD_APPLE) IF(LMMS_BUILD_WIN32) - IF(STRIP) - ADD_CUSTOM_COMMAND(TARGET ${PLUGIN_NAME} POST_BUILD COMMAND ${STRIP} "$") - ENDIF() + add_custom_command( + TARGET "${PLUGIN_NAME}" + POST_BUILD + COMMAND "${STRIP_COMMAND}" "$" + VERBATIM + COMMAND_EXPAND_LISTS + ) SET_TARGET_PROPERTIES(${PLUGIN_NAME} PROPERTIES PREFIX "") ENDIF() diff --git a/cmake/modules/CheckSubmodules.cmake b/cmake/modules/CheckSubmodules.cmake index 2541a75bf..5c8257a0b 100644 --- a/cmake/modules/CheckSubmodules.cmake +++ b/cmake/modules/CheckSubmodules.cmake @@ -7,7 +7,7 @@ # INCLUDE(CheckSubmodules) # # Options: -# SET(PLUGIN_LIST "zynaddsubfx;...") # skips submodules for plugins not explicitely listed +# SET(PLUGIN_LIST "ZynAddSubFx;...") # skips submodules for plugins not explicitely listed # # Or via command line: # cmake -PLUGIN_LIST=foo;bar @@ -18,7 +18,7 @@ # For details see the accompanying COPYING-CMAKE-SCRIPTS file. # 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") +SET(VALID_CRUMBS "CMakeLists.txt;Makefile;Makefile.in;Makefile.am;configure.ac;configure.py;autogen.sh;.gitignore;LICENSE;Home.md;license.txt") OPTION(NO_SHALLOW_CLONE "Disable shallow cloning of submodules" OFF) diff --git a/cmake/modules/CompileCache.cmake b/cmake/modules/CompileCache.cmake index ed4622bd9..56486e24f 100644 --- a/cmake/modules/CompileCache.cmake +++ b/cmake/modules/CompileCache.cmake @@ -1,25 +1,40 @@ -option(USE_COMPILE_CACHE "Use ccache or clcache for compilation" OFF) +option(USE_COMPILE_CACHE "Use a compiler cache for compilation" OFF) # Compatibility for old option name if(USE_CCACHE) set(USE_COMPILE_CACHE ON) endif() -if(USE_COMPILE_CACHE) - if(MSVC) - set(CACHE_TOOL_NAME clcache) - elseif(CMAKE_CXX_COMPILER_ID MATCHES "(GNU|AppleClang|Clang)") - set(CACHE_TOOL_NAME ccache) - else() - message(WARNING "Compile cache only available with MSVC or GNU") +if(NOT USE_COMPILE_CACHE) + return() +endif() + +if(NOT CMAKE_CXX_COMPILER_ID MATCHES "(GNU|AppleClang|Clang|MSVC)") + message(WARNING "Compiler cache only available with MSVC or GNU") + return() +endif() + +set(CACHE_TOOL_NAME ccache) +find_program(CACHE_TOOL "${CACHE_TOOL_NAME}") +if(NOT CACHE_TOOL) + message(WARNING "USE_COMPILE_CACHE enabled, but no ${CACHE_TOOL_NAME} found") + return() +endif() + +if(MSVC) + # ccache doesn't support debug information in the PDB format. Setting the + # debug information format requires CMP0141, introduced with CMake 3.25, to + # be set to NEW prior to the initial `project` command. + if(CMAKE_VERSION VERSION_LESS "3.25") + message(WARNING "Use of compiler cache with MSVC requires at least CMake 3.25") + return() endif() - find_program(CACHE_TOOL ${CACHE_TOOL_NAME}) - if (CACHE_TOOL) - message(STATUS "Using ${CACHE_TOOL} found for caching") - set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE ${CACHE_TOOL}) - set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK ${CACHE_TOOL}) - else() - message(WARNING "USE_COMPILE_CACHE enabled, but no ${CACHE_TOOL_NAME} found") - endif() + set(CMAKE_MSVC_DEBUG_INFORMATION_FORMAT "$<$:Embedded>") endif() + +message(STATUS "Using ${CACHE_TOOL} for compiler caching") + +# TODO CMake 3.21: Use CMAKE___LAUNCHER variables instead +set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CACHE_TOOL}") +set_property(GLOBAL PROPERTY RULE_LAUNCH_LINK "${CACHE_TOOL}") diff --git a/cmake/modules/CreateTempFile.cmake b/cmake/modules/CreateTempFile.cmake index 5210342ac..27cc5faa7 100644 --- a/cmake/modules/CreateTempFile.cmake +++ b/cmake/modules/CreateTempFile.cmake @@ -11,7 +11,7 @@ function(CreateTempFilePath) set(file_name "${CMAKE_BINARY_DIR}/${TEMP_TAG}_${hashed_content}") set(${TEMP_OUTPUT_VAR} "${file_name}" PARENT_SCOPE) - if(CONFIG_SUFFIX) + if(TEMP_CONFIG_SUFFIX) set(file_name "${file_name}_$") endif() diff --git a/cmake/modules/DefineInstallVar.cmake b/cmake/modules/DefineInstallVar.cmake index b13cb1d52..0ca8fa429 100644 --- a/cmake/modules/DefineInstallVar.cmake +++ b/cmake/modules/DefineInstallVar.cmake @@ -24,7 +24,7 @@ function(DEFINE_INSTALL_VAR) endif() else() if(VAR_GENERATOR_EXPRESSION) - cmake_policy(SET CMP0087 NEW) + cmake_policy(SET CMP0087 NEW) # install(CODE) and install(SCRIPT) support generator expressions. endif() install(CODE "set(\"${VAR_NAME}\" \"${VAR_CONTENT}\")") endif() diff --git a/cmake/modules/DetectMachine.cmake b/cmake/modules/DetectMachine.cmake index 86807b757..b9aa4c8c6 100644 --- a/cmake/modules/DetectMachine.cmake +++ b/cmake/modules/DetectMachine.cmake @@ -12,31 +12,56 @@ ELSE() SET(LMMS_BUILD_LINUX 1) ENDIF(WIN32) -# LMMS_BUILD_MSYS also set in build_winXX.sh -IF(LMMS_BUILD_WIN32 AND CMAKE_COMPILER_IS_GNUCXX AND DEFINED ENV{MSYSCON}) - SET(LMMS_BUILD_MSYS TRUE) -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) - if(MSVC) SET(MSVC_VER ${CMAKE_CXX_COMPILER_VERSION}) - IF(MSVC_VER VERSION_GREATER 19.20 OR MSVC_VER VERSION_EQUAL 19.20) + # 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) @@ -50,23 +75,70 @@ IF(WIN32) 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(WIN32) - EXEC_PROGRAM( ${CMAKE_C_COMPILER} ARGS "-dumpmachine ${CMAKE_C_FLAGS}" OUTPUT_VARIABLE Machine ) +ELSE() + # Detect target architecture based on compiler target triple e.g. "x86_64-pc-linux" + execute_process(COMMAND ${CMAKE_C_COMPILER} -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/ErrorFlags.cmake b/cmake/modules/ErrorFlags.cmake new file mode 100644 index 000000000..57cc6ad49 --- /dev/null +++ b/cmake/modules/ErrorFlags.cmake @@ -0,0 +1,72 @@ +# Shim the SYSTEM property for older CMake versions - we rely on this property +# to determine which set of error flags to use. +if(CMAKE_VERSION VERSION_LESS "3.25") + define_property(TARGET + PROPERTY SYSTEM + INHERITED + BRIEF_DOCS "Shim of built-in SYSTEM property for CMake versions less than 3.25" + FULL_DOCS "Non-functional, but allows the property to be inherited properly." + "See the CMake documentation at https://cmake.org/cmake/help/latest/prop_tgt/SYSTEM.html." + ) +endif() + +# Allow the user to control whether to treat warnings as errors +option(USE_WERROR "Treat compiler warnings as errors" OFF) + +# Compute the appropriate flags for the current compiler and options +if(CMAKE_CXX_COMPILER_ID MATCHES "GNU|Clang") + set(COMPILE_ERROR_FLAGS + "-Wall" # Enable most warnings by default + ) + set(THIRD_PARTY_COMPILE_ERROR_FLAGS + "-w" # Disable all warnings + ) + + if(CMAKE_COMPILER_IS_GNUCXX) + list(APPEND COMPILE_ERROR_FLAGS + # The following warning generates false positives that are difficult + # to work around, in particular when inlining calls to standard + # algorithms performed on single-element arrays. See, for example, + # https://gcc.gnu.org/bugzilla/show_bug.cgi?id=111273. + "-Wno-array-bounds" # Permit out-of-bounds array subscripts + ) + + if(CMAKE_CXX_COMPILER_VERSION VERSION_GREATER_EQUAL "11") + list(APPEND COMPILE_ERROR_FLAGS + # This has the same problems described above for "array-bounds". + "-Wno-stringop-overread" # Permit string functions overreading the source + ) + endif() + endif() + + if(USE_WERROR) + list(APPEND COMPILE_ERROR_FLAGS + "-Werror" # Treat warnings as errors + ) + endif() +elseif(MSVC) + set(COMPILE_ERROR_FLAGS + "/W2" # Enable some warnings by default + "/external:W0" # Don't emit warnings for third-party code + "/external:anglebrackets" # Consider headers included with angle brackets to be third-party + "/external:templates-" # Still emit warnings from first-party instantiations of third-party templates + # Silence "class X needs to have DLL-interface to be used by clients of + # class Y" warnings. These aren't trivial to address, and don't pose a + # problem for us since we build all modules with the same compiler and + # options, and dynamically link the CRT. + "/wd4251" + ) + set(THIRD_PARTY_COMPILE_ERROR_FLAGS + "/W0" # Disable all warnings + ) + + if(USE_WERROR) + list(APPEND COMPILE_ERROR_FLAGS + "/WX" # Treat warnings as errors + ) + endif() +endif() + +# Add the flags to the whole directory tree. We use the third-party flags for +# targets whose SYSTEM property is true, and the normal flags otherwise. +add_compile_options("$>,${THIRD_PARTY_COMPILE_ERROR_FLAGS},${COMPILE_ERROR_FLAGS}>") diff --git a/cmake/modules/FindFluidSynth.cmake b/cmake/modules/FindFluidSynth.cmake new file mode 100644 index 000000000..70c40b8d8 --- /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..3017dc5aa 100644 --- a/cmake/modules/FindLame.cmake +++ b/cmake/modules/FindLame.cmake @@ -1,16 +1,31 @@ -# - Try to find LAME -# Once done this will define +# Copyright (c) 2023 Dominic Clark # -# LAME_FOUND - system has liblame -# LAME_INCLUDE_DIRS - the liblame include directory -# LAME_LIBRARIES - The liblame libraries +# Redistribution and use is allowed according to the terms of the New BSD license. +# For details see the accompanying COPYING-CMAKE-SCRIPTS file. -find_path(LAME_INCLUDE_DIRS lame/lame.h) -find_library(LAME_LIBRARIES mp3lame) +include(ImportedTargetHelpers) + +find_package_config_mode_with_fallback(mp3lame mp3lame::mp3lame + LIBRARY_NAMES "mp3lame" + INCLUDE_NAMES "lame/lame.h" + PREFIX Lame +) + +determine_version_from_source(Lame_VERSION mp3lame::mp3lame [[ + #include + #include + + auto main() -> int + { + auto version = lame_version_t{}; + get_lame_version_numerical(&version); + std::cout << version.major << "." << version.minor; + } +]]) 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_LIBRARY Lame_INCLUDE_DIRS + VERSION_VAR Lame_VERSION +) diff --git a/cmake/modules/FindOggVorbis.cmake b/cmake/modules/FindOggVorbis.cmake index 79a9ab406..cfbd73256 100644 --- a/cmake/modules/FindOggVorbis.cmake +++ b/cmake/modules/FindOggVorbis.cmake @@ -1,86 +1,68 @@ -# - Try to find the OggVorbis libraries -# Once done this will define +# Copyright (c) 2023 Dominic Clark # -# OGGVORBIS_FOUND - system has OggVorbis -# OGGVORBIS_VERSION - set either to 1 or 2 -# OGGVORBIS_INCLUDE_DIR - the OggVorbis include directory -# OGGVORBIS_LIBRARIES - The libraries needed to use OggVorbis -# OGG_LIBRARY - The Ogg library -# VORBIS_LIBRARY - The Vorbis library -# VORBISFILE_LIBRARY - The VorbisFile library -# VORBISENC_LIBRARY - The VorbisEnc library - -# Copyright (c) 2006, Richard Laerkaeng, -# -# Redistribution and use is allowed according to the terms of the BSD license. +# Redistribution and use is allowed according to the terms of the New BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. +include(ImportedTargetHelpers) -include (CheckLibraryExists) +find_package_config_mode_with_fallback(Ogg Ogg::ogg + LIBRARY_NAMES "ogg" + INCLUDE_NAMES "ogg/ogg.h" + PKG_CONFIG ogg +) -find_path(VORBIS_INCLUDE_DIR vorbis/vorbisfile.h) -find_path(OGG_INCLUDE_DIR ogg/ogg.h) +find_package_config_mode_with_fallback(Vorbis Vorbis::vorbis + LIBRARY_NAMES "vorbis" + INCLUDE_NAMES "vorbis/codec.h" + PKG_CONFIG vorbis + DEPENDS Ogg::ogg +) -find_library(OGG_LIBRARY NAMES ogg) -find_library(VORBIS_LIBRARY NAMES vorbis) -find_library(VORBISFILE_LIBRARY NAMES vorbisfile) -find_library(VORBISENC_LIBRARY NAMES vorbisenc) +find_package_config_mode_with_fallback(Vorbis Vorbis::vorbisfile + LIBRARY_NAMES "vorbisfile" + INCLUDE_NAMES "vorbis/vorbisfile.h" + PKG_CONFIG vorbisfile + DEPENDS Vorbis::vorbis + PREFIX VorbisFile +) +find_package_config_mode_with_fallback(Vorbis Vorbis::vorbisenc + LIBRARY_NAMES "vorbisenc" + INCLUDE_NAMES "vorbis/vorbisenc.h" + PKG_CONFIG vorbisenc + DEPENDS Vorbis::vorbis + PREFIX VorbisEnc +) -if (VORBIS_INCLUDE_DIR AND VORBIS_LIBRARY AND VORBISFILE_LIBRARY AND VORBISENC_LIBRARY) - set(OGGVORBIS_FOUND TRUE) +determine_version_from_source(Vorbis_VERSION Vorbis::vorbis [[ + #include + #include + #include - set(OGGVORBIS_LIBRARIES ${OGG_LIBRARY} ${VORBIS_LIBRARY} ${VORBISFILE_LIBRARY} ${VORBISENC_LIBRARY}) + auto main() -> int + { + // Version string has the format "org name version" + const auto version = std::string_view{vorbis_version_string()}; + const auto nameBegin = version.find(' ') + 1; + const auto versionBegin = version.find(' ', nameBegin) + 1; + std::cout << version.substr(versionBegin); + } +]]) - set(_CMAKE_REQUIRED_LIBRARIES_TMP ${CMAKE_REQUIRED_LIBRARIES}) - set(CMAKE_REQUIRED_LIBRARIES ${CMAKE_REQUIRED_LIBRARIES} ${OGGVORBIS_LIBRARIES}) - check_library_exists(vorbis vorbis_bitrate_addblock "" HAVE_LIBVORBISENC2) - set(CMAKE_REQUIRED_LIBRARIES ${_CMAKE_REQUIRED_LIBRARIES_TMP}) - - if (HAVE_LIBVORBISENC2) - set (OGGVORBIS_VERSION 2) - else (HAVE_LIBVORBISENC2) - set (OGGVORBIS_VERSION 1) - endif (HAVE_LIBVORBISENC2) - -else (VORBIS_INCLUDE_DIR AND VORBIS_LIBRARY AND VORBISFILE_LIBRARY AND VORBISENC_LIBRARY) - set (OGGVORBIS_VERSION) - set(OGGVORBIS_FOUND FALSE) -endif (VORBIS_INCLUDE_DIR AND VORBIS_LIBRARY AND VORBISFILE_LIBRARY AND VORBISENC_LIBRARY) - - -if (OGGVORBIS_FOUND) - if (NOT OggVorbis_FIND_QUIETLY) - message(STATUS "Found OggVorbis: ${OGGVORBIS_LIBRARIES}") - endif (NOT OggVorbis_FIND_QUIETLY) -else (OGGVORBIS_FOUND) - if (OggVorbis_FIND_REQUIRED) - message(FATAL_ERROR "Could NOT find OggVorbis libraries") - endif (OggVorbis_FIND_REQUIRED) - if (NOT OggVorbis_FIND_QUITELY) - message(STATUS "Could NOT find OggVorbis libraries") - endif (NOT OggVorbis_FIND_QUITELY) -endif (OGGVORBIS_FOUND) - -#check_include_files(vorbis/vorbisfile.h HAVE_VORBISFILE_H) -#check_library_exists(ogg ogg_page_version "" HAVE_LIBOGG) -#check_library_exists(vorbis vorbis_info_init "" HAVE_LIBVORBIS) -#check_library_exists(vorbisfile ov_open "" HAVE_LIBVORBISFILE) -#check_library_exists(vorbisenc vorbis_info_clear "" HAVE_LIBVORBISENC) -#check_library_exists(vorbis vorbis_bitrate_addblock "" HAVE_LIBVORBISENC2) - -#if (HAVE_LIBOGG AND HAVE_VORBISFILE_H AND HAVE_LIBVORBIS AND HAVE_LIBVORBISFILE AND HAVE_LIBVORBISENC) -# message(STATUS "Ogg/Vorbis found") -# set (VORBIS_LIBS "-lvorbis -logg") -# set (VORBISFILE_LIBS "-lvorbisfile") -# set (VORBISENC_LIBS "-lvorbisenc") -# set (OGGVORBIS_FOUND TRUE) -# if (HAVE_LIBVORBISENC2) -# set (HAVE_VORBIS 2) -# else (HAVE_LIBVORBISENC2) -# set (HAVE_VORBIS 1) -# endif (HAVE_LIBVORBISENC2) -#else (HAVE_LIBOGG AND HAVE_VORBISFILE_H AND HAVE_LIBVORBIS AND HAVE_LIBVORBISFILE AND HAVE_LIBVORBISENC) -# message(STATUS "Ogg/Vorbis not found") -#endif (HAVE_LIBOGG AND HAVE_VORBISFILE_H AND HAVE_LIBVORBIS AND HAVE_LIBVORBISFILE AND HAVE_LIBVORBISENC) +include(FindPackageHandleStandardArgs) +find_package_handle_standard_args(OggVorbis + REQUIRED_VARS + Ogg_LIBRARY + Ogg_INCLUDE_DIRS + Vorbis_LIBRARY + Vorbis_INCLUDE_DIRS + VorbisFile_LIBRARY + VorbisFile_INCLUDE_DIRS + VorbisEnc_LIBRARY + VorbisEnc_INCLUDE_DIRS + # This only reports the Vorbis version - Ogg can have a different version, + # so if we ever care about that, it should be split off into a different + # find module. + VERSION_VAR Vorbis_VERSION +) diff --git a/cmake/modules/FindPortaudio.cmake b/cmake/modules/FindPortaudio.cmake index bb6bdf48b..e7cfa1383 100644 --- a/cmake/modules/FindPortaudio.cmake +++ b/cmake/modules/FindPortaudio.cmake @@ -1,36 +1,34 @@ -# - 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) 2023 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. -# +include(ImportedTargetHelpers) -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) +find_package_config_mode_with_fallback(portaudio portaudio + LIBRARY_NAMES "portaudio" + INCLUDE_NAMES "portaudio.h" + PKG_CONFIG portaudio-2.0 + PREFIX Portaudio +) - # show the PORTAUDIO_INCLUDE_DIRS and PORTAUDIO_LIBRARIES variables only in the advanced view - mark_as_advanced(PORTAUDIO_INCLUDE_DIRS PORTAUDIO_LIBRARIES) +determine_version_from_source(Portaudio_VERSION portaudio [[ + #include + #include "portaudio.h" -endif (PORTAUDIO_LIBRARIES AND PORTAUDIO_INCLUDE_DIRS) + auto main() -> int + { + // Version number has the format 0xMMmmpp + const auto version = Pa_GetVersion(); + std::cout << ((version >> 16) & 0xff) + << "." << ((version >> 8) & 0xff) + << "." << ((version >> 0) & 0xff); + } +]]) +include(FindPackageHandleStandardArgs) + +find_package_handle_standard_args(Portaudio + REQUIRED_VARS Portaudio_LIBRARY Portaudio_INCLUDE_DIRS + VERSION_VAR Portaudio_VERSION +) diff --git a/cmake/modules/FindPulseAudio.cmake b/cmake/modules/FindPulseAudio.cmake index 8ea2616cf..0023d1d63 100644 --- a/cmake/modules/FindPulseAudio.cmake +++ b/cmake/modules/FindPulseAudio.cmake @@ -18,13 +18,15 @@ ENDIF (PULSEAUDIO_INCLUDE_DIR AND PULSEAUDIO_LIBRARIES) IF (NOT WIN32) # use pkg-config to get the directories and then use these values # in the FIND_PATH() and FIND_LIBRARY() calls - INCLUDE(FindPkgConfig) - pkg_check_modules(PA libpulse) - set(_PASIncDir ${PA_INCLUDE_DIRS}) - set(_PASLinkDir ${PA_LIBRARY_DIRS}) - set(_PASLinkFlags ${PA_LDFLAGS}) - set(_PASCflags ${PA_CFLAGS}) - SET(PULSEAUDIO_DEFINITIONS ${_PASCflags}) + find_package(PkgConfig QUIET) + if(PKG_CONFIG_FOUND) + pkg_check_modules(PA libpulse) + set(_PASIncDir ${PA_INCLUDE_DIRS}) + set(_PASLinkDir ${PA_LIBRARY_DIRS}) + set(_PASLinkFlags ${PA_LDFLAGS}) + set(_PASCflags ${PA_CFLAGS}) + set(PULSEAUDIO_DEFINITIONS ${_PASCflags}) + endif() ENDIF (NOT WIN32) FIND_PATH(PULSEAUDIO_INCLUDE_DIR pulse/pulseaudio.h diff --git a/cmake/modules/FindSDL2.cmake b/cmake/modules/FindSDL2.cmake index 7b9e5b149..6e07f7aff 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,103 @@ # (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) + # SDL2::SDL2 under MinGW is an interface target for reasons, so we can't get + # the library location from it. Print minimal information and return early. + get_target_property(sdl2_target_type SDL2::SDL2 TYPE) + if(sdl2_target_type STREQUAL "INTERFACE_LIBRARY") + unset(sdl2_target_type) + if(NOT SDL2_FIND_QUIETLY) + message(STATUS "Found SDL2 (found version \"${SDL2_VERSION}\")") + endif() + return() + endif() + unset(sdl2_target_type) -FIND_PATH(SDL2_INCLUDE_DIR SDL.h - HINTS - $ENV{SDL2DIR} - PATH_SUFFIXES SDL2 include/SDL2 include - PATHS ${SDL2_SEARCH_PATHS} -) + # 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} + ) -if(CMAKE_SIZEOF_VOID_P EQUAL 8) - set(PATH_SUFFIXES lib64 lib/x64 lib) -else() - set(PATH_SUFFIXES lib/x86 lib) -endif() + find_path(SDL2_INCLUDE_DIR + NAMES SDL.h + HINTS $ENV{SDL2DIR} ${SDL2_INCLUDE_DIRS} + PATH_SUFFIXES SDL2 include/SDL2 include + PATHS ${SDL2_SEARCH_PATHS} + ) -FIND_LIBRARY(SDL2_LIBRARY_TEMP - NAMES SDL2 - HINTS - $ENV{SDL2DIR} - PATH_SUFFIXES ${PATH_SUFFIXES} - 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(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} + find_library(SDL2_LIBRARY + NAMES SDL2 + HINTS $ENV{SDL2DIR} ${SDL2_LIBDIR} + 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..5564d24f8 100644 --- a/cmake/modules/FindSTK.cmake +++ b/cmake/modules/FindSTK.cmake @@ -1,20 +1,27 @@ -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) +include(ImportedTargetHelpers) -FIND_LIBRARY(STK_LIBRARY NAMES stk PATH /usr/lib /usr/local/lib ${CMAKE_INSTALL_PREFIX}/lib ${CMAKE_FIND_ROOT_PATH}/lib) +# TODO CMake 3.18: Alias this target to something less hideous +find_package_config_mode_with_fallback(unofficial-libstk unofficial::libstk::libstk + LIBRARY_NAMES "stk" + INCLUDE_NAMES "stk/Stk.h" + LIBRARY_HINTS "/usr/lib" "/usr/local/lib" "${CMAKE_INSTALL_PREFIX}/lib" "${CMAKE_FIND_ROOT_PATH}/lib" + INCLUDE_HINTS "/usr/include" "/usr/local/include" "${CMAKE_INSTALL_PREFIX}/include" "${CMAKE_FIND_ROOT_PATH}/include" + PREFIX STK +) -IF (STK_INCLUDE_DIR AND STK_LIBRARY) - SET(STK_FOUND TRUE) -ENDIF (STK_INCLUDE_DIR AND STK_LIBRARY) +# Find STK rawwave path +if(STK_INCLUDE_DIRS) + list(GET STK_INCLUDE_DIRS 0 STK_INCLUDE_DIR) + find_path(STK_RAWWAVE_ROOT + NAMES silence.raw sinewave.raw + HINTS "${STK_INCLUDE_DIR}/.." + PATH_SUFFIXES share/stk/rawwaves share/libstk/rawwaves + ) +endif() +include(FindPackageHandleStandardArgs) -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) - +find_package_handle_standard_args(STK + REQUIRED_VARS STK_LIBRARY STK_INCLUDE_DIR + # STK doesn't appear to expose its version, so we can't pass it here +) diff --git a/cmake/modules/FindSamplerate.cmake b/cmake/modules/FindSamplerate.cmake index 53b69f6c7..683748c59 100644 --- a/cmake/modules/FindSamplerate.cmake +++ b/cmake/modules/FindSamplerate.cmake @@ -1,34 +1,35 @@ -# FindFFTW.cmake - Try to find FFTW3 -# Copyright (c) 2018 Lukas W -# This file is MIT licensed. -# See http://opensource.org/licenses/MIT +# Copyright (c) 2023 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. -find_package(PkgConfig QUIET) -if(PKG_CONFIG_FOUND) - pkg_check_modules(SAMPLERATE_PKG samplerate) -endif() +include(ImportedTargetHelpers) -find_path(SAMPLERATE_INCLUDE_DIR - NAMES samplerate.h - PATHS ${SAMPLERATE_PKG_INCLUDE_DIRS} +find_package_config_mode_with_fallback(SampleRate SampleRate::samplerate + LIBRARY_NAMES "samplerate" "libsamplerate" "libsamplerate-0" + INCLUDE_NAMES "samplerate.h" + PKG_CONFIG samplerate + PREFIX Samplerate ) -set(SAMPLERATE_NAMES samplerate libsamplerate) -if(Samplerate_FIND_VERSION_MAJOR) - list(APPEND SAMPLERATE_NAMES libsamplerate-${Samplerate_FIND_VERSION_MAJOR}) -else() - list(APPEND SAMPLERATE_NAMES libsamplerate-0) -endif() +determine_version_from_source(Samplerate_VERSION SampleRate::samplerate [[ + #include + #include + #include -find_library(SAMPLERATE_LIBRARY - NAMES ${SAMPLERATE_NAMES} - PATHS ${SAMPLERATE_PKG_LIBRARY_DIRS} -) + auto main() -> int + { + // Version string has the format "name-version copyright" + const auto version = std::string_view{src_get_version()}; + const auto begin = version.find('-') + 1; + const auto end = version.find(' ', begin); + std::cout << version.substr(begin, end - begin); + } +]]) include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(SAMPLERATE DEFAULT_MSG SAMPLERATE_LIBRARY SAMPLERATE_INCLUDE_DIR) -mark_as_advanced(SAMPLERATE_INCLUDE_DIR SAMPLERATE_LIBRARY ) - -set(SAMPLERATE_LIBRARIES ${SAMPLERATE_LIBRARY} ) -set(SAMPLERATE_INCLUDE_DIRS ${SAMPLERATE_INCLUDE_DIR}) +find_package_handle_standard_args(Samplerate + REQUIRED_VARS Samplerate_LIBRARY Samplerate_INCLUDE_DIRS + VERSION_VAR Samplerate_VERSION +) diff --git a/cmake/modules/FindSndFile.cmake b/cmake/modules/FindSndFile.cmake index 28ebb7bb7..d69fa6331 100644 --- a/cmake/modules/FindSndFile.cmake +++ b/cmake/modules/FindSndFile.cmake @@ -1,39 +1,34 @@ -# FindSndFile.cmake - Try to find libsndfile -# Copyright (c) 2018 Lukas W -# This file is MIT licensed. -# See http://opensource.org/licenses/MIT +# Copyright (c) 2023 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 pkgconfig for hints -find_package(PkgConfig QUIET) -if(PKG_CONFIG_FOUND) - pkg_check_modules(SNDFILE_PKG sndfile) -endif(PKG_CONFIG_FOUND) -set(SndFile_DEFINITIONS ${SNDFILE_PKG_CFLAGS_OTHER}) +include(ImportedTargetHelpers) -if(WIN32) - # Try Vcpkg - find_package(LibSndFile ${SndFile_FIND_VERSION} CONFIG QUIET) - if(LibSndFile_FOUND) - get_target_property(LibSndFile_Location sndfile-shared LOCATION) - get_target_property(LibSndFile_Include_Path sndfile-shared INTERFACE_INCLUDE_DIRECTORIES) - get_filename_component(LibSndFile_Path LibSndFile_Location PATH) - endif() -endif() - -find_path(SNDFILE_INCLUDE_DIR - NAMES sndfile.h - PATHS ${SNDFILE_PKG_INCLUDE_DIRS} ${LibSndFile_Include_Path} +find_package_config_mode_with_fallback(SndFile SndFile::sndfile + LIBRARY_NAMES "sndfile" "libsndfile" "libsndfile-1" + INCLUDE_NAMES "sndfile.h" + PKG_CONFIG sndfile ) -find_library(SNDFILE_LIBRARY - NAMES sndfile libsndfile libsndfile-1 - PATHS ${SNDFILE_PKG_LIBRARY_DIRS} ${LibSndFile_Path} +determine_version_from_source(SndFile_VERSION SndFile::sndfile [[ + #include + #include + #include + + auto main() -> int + { + // Version string has the format "name-version", optionally followed by "-exp" + const auto version = std::string_view{sf_version_string()}; + const auto begin = version.find('-') + 1; + const auto end = version.find('-', begin); + std::cout << version.substr(begin, end - begin); + } +]]) + +include(FindPackageHandleStandardArgs) + +find_package_handle_standard_args(SndFile + REQUIRED_VARS SndFile_LIBRARY SndFile_INCLUDE_DIRS + VERSION_VAR SndFile_VERSION ) - -find_package(PackageHandleStandardArgs) -find_package_handle_standard_args(SndFile DEFAULT_MSG SNDFILE_LIBRARY SNDFILE_INCLUDE_DIR) - -set(SNDFILE_LIBRARIES ${SNDFILE_LIBRARY}) -set(SNDFILE_INCLUDE_DIRS ${SNDFILE_INCLUDE_DIR}) - -mark_as_advanced(SNDFILE_LIBRARY SNDFILE_LIBRARIES SNDFILE_INCLUDE_DIR SNDFILE_INCLUDE_DIRS) diff --git a/cmake/modules/FindSndio.cmake b/cmake/modules/FindSndio.cmake index e993702c2..a1b24d06c 100644 --- a/cmake/modules/FindSndio.cmake +++ b/cmake/modules/FindSndio.cmake @@ -24,7 +24,7 @@ check_library_exists(sndio sio_open "${SNDIO_LIBRARY_DIR}" HAVE_SIO_OPEN) find_path(SNDIO_INCLUDE_DIR sndio.h) include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(SNDIO DEFAULT_MSG SNDIO_LIBRARY SNDIO_INCLUDE_DIR HAVE_SIO_OPEN) +find_package_handle_standard_args(Sndio DEFAULT_MSG SNDIO_LIBRARY SNDIO_INCLUDE_DIR HAVE_SIO_OPEN) if(SNDIO_FOUND) set(SNDIO_INCLUDE_DIRS "${SNDIO_INCLUDE_DIR}") diff --git a/cmake/modules/FindSoundIo.cmake b/cmake/modules/FindSoundIo.cmake index 0d905ecf2..f5948f061 100644 --- a/cmake/modules/FindSoundIo.cmake +++ b/cmake/modules/FindSoundIo.cmake @@ -11,6 +11,6 @@ find_path(SOUNDIO_INCLUDE_DIR NAMES soundio/soundio.h) find_library(SOUNDIO_LIBRARY NAMES soundio) include(FindPackageHandleStandardArgs) -find_package_handle_standard_args(SOUNDIO DEFAULT_MSG SOUNDIO_LIBRARY SOUNDIO_INCLUDE_DIR) +find_package_handle_standard_args(SoundIo DEFAULT_MSG SOUNDIO_LIBRARY SOUNDIO_INCLUDE_DIR) mark_as_advanced(SOUNDIO_INCLUDE_DIR SOUNDIO_LIBRARY) diff --git a/cmake/modules/FindWine.cmake b/cmake/modules/FindWine.cmake index f7f3b0aa6..19a0cffbb 100644 --- a/cmake/modules/FindWine.cmake +++ b/cmake/modules/FindWine.cmake @@ -2,9 +2,15 @@ # Once done this will define # # 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 +# +# WINE_INCLUDE_DIR - Wine include directory +# WINE_BUILD - Path to winebuild +# WINE_CXX - Path to wineg++ +# WINE_GCC - Path to winegcc +# WINE_32_LIBRARY_DIRS - Path(s) to 32-bit wine libs +# WINE_32_FLAGS - 32-bit linker flags +# WINE_64_LIBRARY_DIRS - Path(s) to 64-bit wine libs +# WINE_64_FLAGS - 64-bit linker flags # MACRO(_findwine_find_flags output expression result) @@ -24,17 +30,49 @@ MACRO(_regex_replace_foreach EXPRESSION REPLACEMENT RESULT INPUT) ENDFOREACH() ENDMACRO() -LIST(APPEND CMAKE_PREFIX_PATH /opt/wine-stable /opt/wine-devel /opt/wine-staging /usr/lib/wine/) +# Prefer newest wine first +list(APPEND WINE_LOCATIONS + /opt/wine-staging + /opt/wine-devel + /opt/wine-stable + /usr/lib/wine) -FIND_PROGRAM(WINE_CXX - NAMES wineg++ winegcc winegcc64 winegcc32 winegcc-stable - PATHS /usr/lib/wine +# Prepare bin search +foreach(_loc ${WINE_LOCATIONS}) + if(_loc STREQUAL /usr/lib/wine) + # /usr/lib/wine doesn't have a "bin" + list(APPEND WINE_CXX_LOCATIONS "${_loc}") + else() + # expect "bin" + list(APPEND WINE_CXX_LOCATIONS "${_loc}/bin") + endif() +endforeach() +# Fallback +list(APPEND WINE_CXX_LOCATIONS "/usr/bin") + +# Prefer most-common to least common +FIND_PROGRAM(WINE_CXX NAMES + wineg++ + wineg++-stable + PATHS + ${WINE_CXX_LOCATIONS} + NO_DEFAULT_PATH ) -FIND_PROGRAM(WINE_BUILD NAMES winebuild) + +FIND_PROGRAM(WINE_GCC NAMES + winegcc + winegcc-stable + PATHS + ${WINE_CXX_LOCATIONS} + NO_DEFAULT_PATH +) + +FIND_PROGRAM(WINE_BUILD NAMES winebuild PATHS ${WINE_CXX_LOCATIONS} NO_DEFAULT_PATH) # Detect wine paths and handle linking problems IF(WINE_CXX) - EXEC_PROGRAM(${WINE_CXX} ARGS "-m32 -v /dev/zero" OUTPUT_VARIABLE WINEBUILD_OUTPUT_32) - EXEC_PROGRAM(${WINE_CXX} ARGS "-m64 -v /dev/zero" OUTPUT_VARIABLE WINEBUILD_OUTPUT_64) + # call wineg++ to obtain implied includes and libs + execute_process(COMMAND ${WINE_CXX} -m32 -v /dev/zero OUTPUT_VARIABLE WINEBUILD_OUTPUT_32 ERROR_QUIET) + execute_process(COMMAND ${WINE_CXX} -m64 -v /dev/zero OUTPUT_VARIABLE WINEBUILD_OUTPUT_64 ERROR_QUIET) _findwine_find_flags("${WINEBUILD_OUTPUT_32}" "^-isystem/usr/include$" BUGGED_WINEGCC) _findwine_find_flags("${WINEBUILD_OUTPUT_32}" "^-isystem" WINEGCC_INCLUDE_DIR) _findwine_find_flags("${WINEBUILD_OUTPUT_32}" "libwinecrt0\\.a.*" WINECRT_32) @@ -43,6 +81,9 @@ IF(WINE_CXX) _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}") + # Handle winehq + STRING(REGEX REPLACE "/libwinecrt0\\.a.*" "/" WINE_32_LIBRARY_DIR "${WINE_32_LIBRARY_DIR}") + STRING(REGEX REPLACE "/libwinecrt0\\.a.*" "/" WINE_64_LIBRARY_DIR "${WINE_64_LIBRARY_DIR}") IF(BUGGED_WINEGCC) MESSAGE(WARNING "Your winegcc is unusable due to https://bugs.winehq.org/show_bug.cgi?id=46293,\n @@ -60,16 +101,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}") @@ -89,41 +130,49 @@ FIND_PATH(WINE_INCLUDE_DIR wine/exception.h 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) IF(WINE_32_LIBRARY_DIR) - IF(WINE_32_LIBRARY_DIR MATCHES "wine*/lib") + IF(WINE_32_LIBRARY_DIR MATCHES "^/opt/wine-.*") + # winehq uses a singular lib directory + SET(WINE_32_FLAGS "-L${WINE_32_LIBRARY_DIR}") + SET(WINE_32_LIBRARY_DIRS "${WINE_32_LIBRARY_DIR}") + ELSEIF(WINE_32_LIBRARY_DIR MATCHES "wine*/lib") 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() IF(WINE_64_LIBRARY_DIR) - IF(WINE_64_LIBRARY_DIR MATCHES "wine*/lib") + IF(WINE_32_LIBRARY_DIR MATCHES "^/opt/wine-.*") + # winehq uses a singular lib directory + SET(WINE_64_FLAGS "-L${WINE_64_LIBRARY_DIR}") + SET(WINE_64_LIBRARY_DIRS "${WINE_64_LIBRARY_DIR}") + ELSEIF(WINE_64_LIBRARY_DIR MATCHES "wine*/lib") 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() -# Create winegcc wrapper +message(STATUS " WINE_INCLUDE_DIR: ${WINE_INCLUDE_DIR}") +message(STATUS " WINE_CXX: ${WINE_CXX}") +message(STATUS " WINE_GCC: ${WINE_GCC}") +message(STATUS " WINE_32_FLAGS: ${WINE_32_FLAGS}") +message(STATUS " WINE_64_FLAGS: ${WINE_64_FLAGS}") + +# Create winegcc (technically, wineg++) wrapper configure_file(${CMAKE_CURRENT_LIST_DIR}/winegcc_wrapper.in winegcc_wrapper @ONLY) SET(WINEGCC "${CMAKE_CURRENT_BINARY_DIR}/winegcc_wrapper") 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..d3d979901 --- /dev/null +++ b/cmake/modules/ImportedTargetHelpers.cmake @@ -0,0 +1,228 @@ +# ImportedTargetHelpers.cmake - various helper functions for use in find modules. +# +# Copyright (c) 2022-2023 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. + +# If the version variable is not yet set, build the source linked to the target, +# run it, and set the version variable to the output. Useful for libraries which +# do not expose the version information in a header where it can be extracted +# with regular expressions, but do provide a function to get the version. +# +# Usage: +# determine_version_from_source( +# # The cache variable in which to store the computed version +# # The target which the source will link to +# # The source code to determine the version +# ) +function(determine_version_from_source _version_out _target _source) + # Return if we already know the version, or the target was not found + if(NOT "${${_version_out}}" STREQUAL "" OR NOT TARGET "${_target}") + return() + endif() + + # Return with a notice if cross-compiling, since we are unlikely to be able + # to run the compiled source + if(CMAKE_CROSSCOMPILING) + message( + "${_target} was found but the version could not be determined automatically.\n" + "Set the cache variable `${_version_out}` to the version you have installed." + ) + return() + endif() + + # Write the source code to a temporary file + string(SHA1 _source_hash "${_source}") + set(_source_file "${CMAKE_CURRENT_BINARY_DIR}/${_source_hash}.cpp") + file(WRITE "${_source_file}" "${_source}") + + # Build and run the temporary file to get the version + # TODO CMake 3.25: Use the new signature for try_run which has a NO_CACHE + # option and doesn't require separate file management. + try_run( + _dvfs_run_result _dvfs_compile_result "${CMAKE_CURRENT_BINARY_DIR}" + SOURCES "${_source_file}" + LINK_LIBRARIES "${_target}" + CXX_STANDARD 17 + RUN_OUTPUT_VARIABLE _run_output + COMPILE_OUTPUT_VARIABLE _compile_output + ) + + # Clean up the temporary file + file(REMOVE "${_source_file}") + + # Set the version if the run was successful, using a cache variable since + # this version check may be relatively expensive. Otherwise, log the error + # and inform the user. + if(_dvfs_run_result EQUAL "0") + set("${_version_out}" "${_run_output}" CACHE INTERNAL "Version of ${_target}") + else() + message(DEBUG "${_compile_output}") + message( + "${_target} was found but the version could not be determined automatically.\n" + "Set the cache variable `${_version_out}` to the version you have installed." + ) + endif() +endfunction() + +# Search for a package using config mode. If this fails to find the desired +# target, use the specified fallbacks and add the target if they succeed. Set +# the variables `prefix_LIBRARY`, `prefix_INCLUDE_DIRS`, and `prefix_VERSION` +# if found for the caller to pass to `find_package_handle_standard_args`. +# +# Usage: +# find_package_config_mode_with_fallback( +# # The package to search for with config mode +# # The target to expect from config mode, or define if not found +# LIBRARY_NAMES names... # Possible library names to search for as a fallback +# INCLUDE_NAMES names... # Possible header names to search for as a fallback +# [PKG_CONFIG ] # The pkg-config name to search for as a fallback +# [LIBRARY_HINTS hints...] # Locations to look for libraries +# [INCLUDE_HINTS hints...] # Locations to look for headers +# [DEPENDS dependencies...] # Dependencies of the target - added to INTERFACE_LINK_LIBRARIES, and will fail if not found +# [PREFIX ] # The prefix for result variables - defaults to the package name +# ) +function(find_package_config_mode_with_fallback _fpcmwf_PACKAGE_NAME _fpcmwf_TARGET_NAME) + # Parse remaining arguments + set(_options "") + set(_one_value_args "PKG_CONFIG" "PREFIX") + set(_multi_value_args "LIBRARY_NAMES" "LIBRARY_HINTS" "INCLUDE_NAMES" "INCLUDE_HINTS" "DEPENDS") + cmake_parse_arguments(PARSE_ARGV 2 _fpcmwf "${_options}" "${_one_value_args}" "${_multi_value_args}") + + # Compute result variable names + if(NOT DEFINED _fpcmwf_PREFIX) + set(_fpcmwf_PREFIX "${_fpcmwf_PACKAGE_NAME}") + endif() + set(_version_var "${_fpcmwf_PREFIX}_VERSION") + set(_library_var "${_fpcmwf_PREFIX}_LIBRARY") + set(_include_var "${_fpcmwf_PREFIX}_INCLUDE_DIRS") + + # Try config mode if possible + find_package("${_fpcmwf_PACKAGE_NAME}" CONFIG QUIET) + + if(TARGET "${_fpcmwf_TARGET_NAME}") + # Extract package details from existing target + get_target_property("${_library_var}" "${_fpcmwf_TARGET_NAME}" LOCATION) + get_target_property("${_include_var}" "${_fpcmwf_TARGET_NAME}" INTERFACE_INCLUDE_DIRECTORIES) + if(DEFINED "${_fpcmwf_PACKAGE_NAME}_VERSION") + set("${_version_var}" "${${_fpcmwf_PACKAGE_NAME}_VERSION}") + endif() + else() + # Check whether the dependencies exist + foreach(_dependency IN LISTS _fpcmwf_DEPENDS) + if(NOT TARGET "${_dependency}") + return() + endif() + endforeach() + + # Attempt to find the package using pkg-config, if we have it and it was requested + set(_pkg_config_prefix "${_fpcmwf_PKG_CONFIG}_PKG") + if(DEFINED _fpcmwf_PKG_CONFIG) + find_package(PkgConfig QUIET) + if(PKG_CONFIG_FOUND) + pkg_check_modules("${_pkg_config_prefix}" QUIET "${_fpcmwf_PKG_CONFIG}") + if("${${_pkg_config_prefix}_FOUND}") + set("${_version_var}" "${${_pkg_config_prefix}_VERSION}") + endif() + endif() + endif() + + # Find the library and headers using the results from pkg-config as a guide + find_library("${_library_var}" + NAMES ${_fpcmwf_LIBRARY_NAMES} + HINTS ${${_pkg_config_prefix}_LIBRARY_DIRS} ${_fpcmwf_LIBRARY_HINTS} + ) + + find_path("${_include_var}" + NAMES ${_fpcmwf_INCLUDE_NAMES} + HINTS ${${_pkg_config_prefix}_INCLUDE_DIRS} ${_fpcmwf_INCLUDE_HINTS} + ) + + # Create an imported target if we succeeded in finding the package + if(${_library_var} AND ${_include_var}) + add_library("${_fpcmwf_TARGET_NAME}" UNKNOWN IMPORTED) + set_target_properties("${_fpcmwf_TARGET_NAME}" PROPERTIES + IMPORTED_LOCATION "${${_library_var}}" + INTERFACE_INCLUDE_DIRECTORIES "${${_include_var}}" + INTERFACE_LINK_LIBRARIES "${_fpcmwf_DEPENDS}" + ) + endif() + + mark_as_advanced("${_library_var}" "${_include_var}") + endif() + + # Return results to caller + if(DEFINED "${_version_var}") + set("${_version_var}" "${${_version_var}}" PARENT_SCOPE) + else() + unset("${_version_var}" PARENT_SCOPE) + endif() + set("${_library_var}" "${${_library_var}}" PARENT_SCOPE) + set("${_include_var}" "${${_include_var}}" PARENT_SCOPE) +endfunction() + +# Given a library in vcpkg, find appropriate debug and release versions. If only +# one version exists, use it as the release version, and do not set the debug +# version. +# +# Usage: +# get_vcpkg_library_configs( +# # Variable in which to store the path to the release version of the library +# # Variable in which to store the path to the debug version of the library +# # Known path to some version of the library +# ) +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 index 791041bb2..29e5b207c 100644 --- a/cmake/modules/InstallDependencies.cmake +++ b/cmake/modules/InstallDependencies.cmake @@ -1,8 +1,9 @@ include(GetPrerequisites) include(CMakeParseArguments) -CMAKE_POLICY(SET CMP0011 NEW) -CMAKE_POLICY(SET CMP0057 NEW) +# Project's cmake_minimum_required doesn't propagate to install scripts +cmake_policy(PUSH) +cmake_policy(SET CMP0057 NEW) # Support new if() IN_LIST operator. function(make_absolute var) get_filename_component(abs "${${var}}" ABSOLUTE BASE_DIR "${CMAKE_INSTALL_PREFIX}") @@ -182,3 +183,5 @@ function(FIND_PREREQUISITES target RESULT_VAR exclude_system recurse set(${RESULT_VAR} ${RESULTS} PARENT_SCOPE) endfunction() + +cmake_policy(POP) diff --git a/cmake/modules/PluginList.cmake b/cmake/modules/PluginList.cmake index ed4ffd2eb..009679533 100644 --- a/cmake/modules/PluginList.cmake +++ b/cmake/modules/PluginList.cmake @@ -5,9 +5,9 @@ OPTION(LMMS_MINIMAL "Build a minimal list of plug-ins" OFF) OPTION(LIST_PLUGINS "Lists the available plugins for building" OFF) SET(MINIMAL_LIST - audio_file_processor - kicker - triple_oscillator + AudioFileProcessor + Kicker + TripleOscillator ) IF(LMMS_MINIMAL) @@ -25,51 +25,57 @@ SET(LMMS_PLUGIN_LIST ${MINIMAL_LIST} Amplifier BassBooster - bit_invader + BitInvader Bitcrush - carlabase - carlapatchbay - carlarack + CarlaBase + CarlaPatchbay + CarlaRack + Compressor CrossoverEQ Delay + Dispersion DualFilter - dynamics_processor + DynamicsProcessor Eq Flanger + GranularPitchShifter HydrogenImport - ladspa_browser + LadspaBrowser LadspaEffect + LOMM Lv2Effect Lv2Instrument - lb302 + Lb302 MidiImport MidiExport MultitapEcho - monstro - nes + Monstro + Nes OpulenZ - organic + Organic FreeBoy - patman - peak_controller_effect + Patman + PeakControllerEffect GigPlayer ReverbSC - sf2_player - sfxr + Sf2Player + Sfxr Sid + SlicerT SpectrumAnalyzer - stereo_enhancer - stereo_matrix - stk - vst_base - vestige + StereoEnhancer + StereoMatrix + Stk + TapTempo + VstBase + Vestige VstEffect - watsyn - waveshaper + Watsyn + WaveShaper Vectorscope - vibed + Vibed Xpressive - zynaddsubfx + ZynAddSubFx ) IF("${PLUGIN_LIST}" STREQUAL "") @@ -95,13 +101,3 @@ 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/StaticDependencies.cmake b/cmake/modules/StaticDependencies.cmake new file mode 100644 index 000000000..d12c47d12 --- /dev/null +++ b/cmake/modules/StaticDependencies.cmake @@ -0,0 +1,141 @@ +# StaticDependencies.cmake - adds features similar to interface properties that +# are only transitive over static dependencies. +# +# Copyright (c) 2024 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. + +define_property(TARGET + PROPERTY STATIC_COMPILE_DEFINITIONS + BRIEF_DOCS "Compile definitions to be used by targets linking statically to this one" + FULL_DOCS "Behaves similarly to INTERFACE_COMPILE_DEFINITIONS, but only over static dependencies." + "Effectively becomes private once an executable module is reached." +) + +define_property(TARGET + PROPERTY STATIC_LINK_LIBRARIES + BRIEF_DOCS "Link libraries to be included in targets linking statically to this one" + FULL_DOCS "Behaves similarly to INTERFACE_LINK_LIBRARIES, but only over static dependencies." + "Effectively becomes private once an executable module is reached." +) + +# Link a target statically to a set of libraries. Forward the given arguments to +# `target_link_libraries`, but also perform two additional functions. Firstly, +# ensure that the given libraries will be linked into any module that also +# links the given target (allowing, for example, object libraries and private +# static libraries to be used transitively). Secondly, add any static compile +# definitions from the given libraries to the set of compile definitions used +# to build the given target. +# +# This function must be used in order for static requirements as defined in this +# module to be inherited transitively. Using `target_link_libraries` instead +# will break the chain for static link libraries and static compile definitions. +# +# Usage: +# target_static_libraries( +# # The target to which to add the libraries +# [] # Optionally, the scope to use for the following libraries +# ... # The libraries to which to link +# [ ...]... +# ) +function(target_static_libraries target) + # Target types that have a link step + set(linked_target_types "MODULE_LIBRARY" "SHARED_LIBRARY" "EXECUTABLE") + # Possible scopes for dependencies + set(scopes "PRIVATE" "PUBLIC" "INTERFACE") + + get_target_property(target_type "${target}" TYPE) + set(scope "") + + # Iterate over the dependencies (and possibly scopes) that we were given + foreach(dependency IN LISTS ARGN) + # If we have a scope, store it so we can apply it to upcoming libraries + if(dependency IN_LIST scopes) + set(scope "${dependency}") + continue() + endif() + + # Link the target to the current dependency. (Note: `${scope}` is + # unquoted so that the argument disappears if no scope was given.) + target_link_libraries("${target}" ${scope} "${dependency}") + + # Store the dependency so it can be linked in with this target later + set_property( + TARGET "${target}" + APPEND + PROPERTY STATIC_LINK_LIBRARIES + "${dependency}" + ) + + # If the dependency is a target, it may have some of our custom + # properties defined on it, so we have a bit more work to do + if(TARGET "${dependency}") + # Ensure it makes sense to link statically to this dependency + get_target_property(dependency_type "${dependency}" TYPE) + if(dependency_type IN_LIST linked_target_types) + message(SEND_ERROR "Cannot link statically to shared module ${dependency}") + endif() + + # Transitively include static definitions and libraries + set(defs "$>") + set(libs "$>") + set_property( + TARGET "${target}" + APPEND + PROPERTY STATIC_COMPILE_DEFINITIONS + "${defs}" + ) + set_property( + TARGET "${target}" + APPEND + PROPERTY STATIC_LINK_LIBRARIES + "${libs}" + ) + + # Add the dependency's transitive static compile definitions. + # (Note: definitions are private so dynamically linked dependents + # won't pick them up; a static dependent will have them set when + # this function is called for it.) + target_compile_definitions("${target}" PRIVATE "${defs}") + + # If the target has a link step, add the transitive static + # dependencies. (Note: we use `LINK_ONLY` so the caller can still + # control usage requirements through the normal use of scopes. Only + # transitive dependencies are needed here: the direct dependency was + # added earlier on. We have to append to `LINK_LIBRARIES` directly, + # rather than use `target_link_libraries(PRIVATE)`, in order to + # remain compatible with the scopeless signature of that command.) + if(target_type IN_LIST linked_target_types) + set_property( + TARGET "${target}" + APPEND + PROPERTY LINK_LIBRARIES + "$" + ) + endif() + endif() + endforeach() +endfunction() + +# Add compile definitions to a target only for use with dependents linking +# statically to it. +# +# Behaves like `target_compile_definitions(INTERFACE)`, except the definitions +# will not be inherited beyond any executable module into which the target is +# actually linked. The definitions are added to the `STATIC_COMPILE_DEFINITIONS` +# property on the target. +# +# Usage: +# target_static_definitions( +# # The target to which to add the definitions +# ... # The definitions to add to the target +# ) +function(target_static_definitions target) + set_property( + TARGET "${target}" + APPEND + PROPERTY STATIC_COMPILE_DEFINITIONS + "${ARGN}" + ) +endfunction() diff --git a/cmake/modules/VersionInfo.cmake b/cmake/modules/VersionInfo.cmake index 9571514a6..6f4c371f1 100644 --- a/cmake/modules/VersionInfo.cmake +++ b/cmake/modules/VersionInfo.cmake @@ -3,6 +3,13 @@ IF(GIT_FOUND AND NOT FORCE_VERSION) SET(MAJOR_VERSION 0) SET(MINOR_VERSION 0) SET(PATCH_VERSION 0) + + # If this is a GitHub Actions pull request build, get the pull request + # number from the environment and add it to the build metadata + if("$ENV{GITHUB_REF}" MATCHES "refs/pull/([0-9]+)/merge") + list(APPEND BUILD_METADATA "pr${CMAKE_MATCH_1}") + endif() + # 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( @@ -30,28 +37,43 @@ IF(GIT_FOUND AND NOT FORCE_VERSION) ENDIF() # 1 dash total: Dash in latest tag, no additional commits => pre-release IF(TAG_LIST_LENGTH EQUAL 2) + # Get the pre-release stage LIST(GET TAG_LIST 1 VERSION_STAGE) - SET(FORCE_VERSION "${FORCE_VERSION}-${VERSION_STAGE}") + list(APPEND PRERELEASE_DATA "${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) LIST(GET TAG_LIST 2 COMMIT_HASH) - # Bump the patch version + list(APPEND PRERELEASE_DATA "${EXTRA_COMMITS}") + list(APPEND BUILD_METADATA "${COMMIT_HASH}") + # Bump the patch version, since a pre-release (as specified by the extra + # commits) compares lower than the main version alone 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}") + # Reassemble the main version using the new patch version + set(FORCE_VERSION "${MAJOR_VERSION}.${MINOR_VERSION}.${PATCH_VERSION}") # 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 + # Get the pre-release stage, number of commits, and latest commit hash LIST(GET TAG_LIST 1 VERSION_STAGE) LIST(GET TAG_LIST 2 EXTRA_COMMITS) LIST(GET TAG_LIST 3 COMMIT_HASH) - # 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}") + list(APPEND PRERELEASE_DATA "${VERSION_STAGE}") + list(APPEND PRERELEASE_DATA "${EXTRA_COMMITS}") + list(APPEND BUILD_METADATA "${COMMIT_HASH}") ENDIF() + + # If there is any pre-release data, append it after a hyphen + if(PRERELEASE_DATA) + string(REPLACE ";" "." PRERELEASE_DATA "${PRERELEASE_DATA}") + set(FORCE_VERSION "${FORCE_VERSION}-${PRERELEASE_DATA}") + endif() + + # If there is any build metadata, append it after a plus + if(BUILD_METADATA) + string(REPLACE ";" "." BUILD_METADATA "${BUILD_METADATA}") + set(FORCE_VERSION "${FORCE_VERSION}+${BUILD_METADATA}") + endif() ENDIF() IF(FORCE_VERSION STREQUAL "internal") diff --git a/cmake/modules/winegcc_wrapper.in b/cmake/modules/winegcc_wrapper.in index 7677e4c37..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 diff --git a/cmake/msys/extract_debs.sh b/cmake/msys/extract_debs.sh deleted file mode 100644 index 939912bb2..000000000 --- a/cmake/msys/extract_debs.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash -set -e - -ppa_dir=./ppa/ - -pushd $ppa_dir - -for f in *.deb; do - echo "Extracting $f..." - ar xv "$f" - rm debian-binary - rm control.tar.* - tar xf data.tar.* --exclude=*mingw*/bin/fluid - rm data.tar.* -done - -popd - -echo "Your extracted files should be located in $ppa_dir" diff --git a/cmake/msys/fetch_ppa.sh b/cmake/msys/fetch_ppa.sh deleted file mode 100644 index ba8697c81..000000000 --- a/cmake/msys/fetch_ppa.sh +++ /dev/null @@ -1,53 +0,0 @@ -#!/bin/bash - -# Trusty=14.04, Precise=12.04 -PPA_DISTRO=trusty - -# Architecture=i386, amd64 -PPA_ARCH=amd64 - -# These shouldn't change -PPA_HOST=http://ppa.launchpad.net -PPA_USER=tobydox -PPA_PROJECT=mingw-x-trusty -PPA_ROOT=$PPA_HOST/$PPA_USER/$PPA_PROJECT/ubuntu - -PPA_URL=$PPA_ROOT/dists/$PPA_DISTRO/main/binary-$PPA_ARCH/Packages.gz - -ppa_dir=./ppa/ - -temp_file=/tmp/ppa_listing_$$ -temp_temp_file=/tmp/ppa_listing_temp_$$ - -skip_files="binutils openssl flac libgig libogg libvorbis x-bootstrap zlib" -skip_files="$skip_files x-runtime gcc qt_4 qt5 x-stk pkgconfig" -skip_files="$skip_files glib2 libpng" - -echo "Connecting to $PPA_URL to get list of packages..." -wget -qO- $PPA_URL | gzip -d -c | grep "Filename:" > $temp_file - -for j in $skip_files ; do - grep -v "$j" $temp_file > $temp_temp_file - mv $temp_temp_file $temp_file -done - -line_count=$(wc -l $temp_file |awk '{print $1}') - -echo "Found $line_count packages for download..." - -echo "Downloading packages. They will be saved to $ppa_dir" - -mkdir $ppa_dir - -while read -r j -do - echo "Downloading $j..." - echo "$PPA_ROOT/$j" - wget -qO "$ppa_dir$(basename "$j")" "$(echo "$PPA_ROOT/$j" | sed 's/\/Filename: /\//gi')" -done < $temp_file - - -echo "Cleaning up temporary files..." -rm -rf $temp_file - -echo "Packages have been saved to $ppa_dir. Please run extract_debs.sh" diff --git a/cmake/msys/msys_helper.sh b/cmake/msys/msys_helper.sh deleted file mode 100644 index a6a7e6aae..000000000 --- a/cmake/msys/msys_helper.sh +++ /dev/null @@ -1,226 +0,0 @@ -#!/bin/bash - -set -eu - -# Git repo information -fork="lmms" # i.e. "lmms" or "tobydox" -branch="master" # i.e. "master" or "stable-1.2" - -# Console colors -red="\\x1B[1;31m" -green="\\x1B[1;32m" -yellow="\\x1B[1;33m" -plain="\\x1B[0m" - -function info() { echo -e "\n${green}$1${plain}"; } -function warn() { echo -e "\n${yellow}$1${plain}"; } -function err() { echo -e "\n${red}$1${plain}"; exit 1;} - -info "Checking for mingw environment" -if ! env | grep MINGW; then - err " - Failed. Please relaunch using MinGW shell" -fi - -info "Preparing the git directory..." -mkdir "$HOME/.git" || true -touch "$HOME/.git/config" > /dev/null 2>&1 -git config --global http.sslverify false - -info "Cloning the repository..." -if [ -d ./lmms ]; then - warn " - Skipping, ./lmms already exists" -else - git clone -b $branch https://github.com/$fork/lmms.git -fi - -info "Fetching ppa using cmake/msys/fetch_ppas.sh..." -if [ -d "$HOME/ppa" ]; then - warn " - Skipping, $HOME/ppa already exists" -else - lmms/cmake/msys/fetch_ppa.sh -fi - -info "Extracting debs to $HOME/ppa/opt/, etc..." -if [ -d "$HOME/ppa/opt" ]; then - warn " - Skipping, $HOME/ppa/opt already exists" -else - lmms/cmake/msys/extract_debs.sh -fi - -info "Preparing library merge, making all qt headers writable..." -chmod u+w /mingw64/include/qt4 -R -chmod u+w /mingw32/include/qt4 -R - -info "Merging mingw headers and libraries from ppa over existing system libraries..." -if ! find /mingw64 | grep sndfile.h; then - command cp -r "$HOME/ppa/opt/mingw"* / -else - warn " - Skipping, sndfile.h has already been merged" -fi - -fltkver="1.3.3" -oggver="1.3.2" -vorbisver="1.3.5" -flacver="1.3.2" -gigver="4.0.0" -stkver="4.5.1" - -mingw_root="/$(echo "$MSYSTEM"|tr '[:upper:]' '[:lower:]')" - -info "Downloading and building fltk $fltkver" -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" - - info " - Compiling fltk $fltkver..." - ./configure --prefix="$mingw_root" --enable-shared - make - - info " - Installing fltk..." - make install - -# ln -s $mingw_root/usr/local/bin/fluid.exe $mingw_root/bin/fluid.exe - popd -else - warn " - Skipping, fluid binary already exists" -fi - -info "Downloading and building libogg $oggver" -if [ ! -e "$mingw_root/lib/libogg.dll.a" ]; then - wget http://downloads.xiph.org/releases/ogg/libogg-$oggver.tar.xz -O "$HOME/libogg-source.tar.xz" - tar xf "$HOME/libogg-source.tar.xz" -C "$HOME/" - pushd "$HOME/libogg-$oggver" - - info " - Compiling libogg $oggver..." - ./configure --prefix="$mingw_root" - make - - info " - Installing libogg..." - make install - # for some reason libgig needs this - ./configure --prefix="/opt$mingw_root" - make - - info " - Installing libogg..." - make install - - popd -else - warn " - Skipping, libogg binary already exists" -fi - -info "Downloading and building libvorbis $vorbisver" -if [ ! -e "$mingw_root/lib/libvorbis.dll.a" ]; then - wget http://downloads.xiph.org/releases/vorbis/libvorbis-$vorbisver.tar.xz -O "$HOME/libvorbis-source.tar.xz" - tar xf "$HOME/libvorbis-source.tar.xz" -C "$HOME/" - pushd "$HOME/libvorbis-$vorbisver" - - info " - Compiling libvorbis $vorbisver..." - ./configure --prefix="$mingw_root" - make - - info " - Installing libvorbis..." - make install - - # for some reason libgig needs this - ./configure --prefix="/opt$mingw_root" - make - info " - Installing libvorbis..." - make install - - popd -else - warn " - Skipping, libvorbis binary already exists" -fi - -info "Downloading and building flac $flacver" - -if [ ! -e "$mingw_root/lib/libFLAC.dll.a" ]; then - - wget http://downloads.xiph.org/releases/flac/flac-$flacver.tar.xz -O "$HOME/flac-source.tar.xz" - tar xf "$HOME/flac-source.tar.xz" -C "$HOME/" - pushd "$HOME/flac-$flacver" - - info " - Compiling flac $flacver..." - ./configure --prefix="$mingw_root" - make - - info " - Installing flac..." - make install - - # for some reason libgig needs this - ./configure --prefix="/opt$mingw_root" - make - - info " - Installing flac..." - make install - - popd -else - warn " - Skipping, libvorbis flac already exists" -fi - -info "Downloading and building libgig $gigver" - -if [ ! -e "$mingw_root/lib/libgig/libgig.dll.a" ]; then - wget http://download.linuxsampler.org/packages/libgig-$gigver.tar.bz2 -O "$HOME/gig-source.tar.xz" - tar xf "$HOME/gig-source.tar.xz" -C "$HOME/" - pushd "$HOME/libgig-$gigver" - - info " - Compiling libgig $gigver..." - ./configure --prefix="$mingw_root" - make - - info " - Installing libgig..." - make install - - mv "$mingw_root/lib/bin/libakai-0.dll" "$mingw_root/bin" - mv "$mingw_root/lib/bin/libgig-7.dll" "$mingw_root/bin" - - popd -else - warn " - Skipping, libgig binary already exists" -fi - -info "Downloading and building stk $stkver" - -if [ ! -e "$mingw_root/lib/libstk.dll" ]; then - wget http://ccrma.stanford.edu/software/stk/release/stk-$stkver.tar.gz -O "$HOME/stk-source.tar.xz" - tar xf "$HOME/stk-source.tar.xz" -C "$HOME/" - pushd "$HOME/stk-$stkver" - - info " - Compiling stk $stkver..." - ./configure --prefix="$mingw_root" - make - - info " - Installing stk..." - make install - - mv "$mingw_root/lib/libstk.so" "$mingw_root/lib/libstk.dll" - mv "$mingw_root/lib/libstk-$stkver.so" "$mingw_root/lib/libstk-$stkver.dll" - - popd -else - warn " - Skipping, stk binary already exists" -fi - -# make a symlink to make cmake happy -if [ "$mingw_root" = "/mingw64" ]; then - if [ ! -e /opt/mingw64/bin/x86_64-w64-mingw32-pkg-config ]; then - ln -s /usr/bin/pkg-config /opt/mingw64/bin/x86_64-w64-mingw32-pkg-config - fi -elif [ "$mingw_root" = "/mingw32" ]; then - if [ ! -e /opt/mingw32/bin/i686-w64-mingw32-pkg-config ]; then - ln -s /usr/bin/pkg-config /opt/mingw32/bin/i686-w64-mingw32-pkg-config - fi -fi - -info "Cleaning up..." -rm -rf "$HOME/fltk-$fltkver" -rm -rf "$HOME/libogg-$oggver" -rm -rf "$HOME/libvorbis-$vorbisver" -rm -rf "$HOME/flac-$flacver" -rm -rf "$HOME/libgig-$gigver" -rm -rf "$HOME/stk-$stkver" -info "Done." diff --git a/cmake/nsis/CMakeLists.txt b/cmake/nsis/CMakeLists.txt index 3fcb4b2f3..e926e074d 100644 --- a/cmake/nsis/CMakeLists.txt +++ b/cmake/nsis/CMakeLists.txt @@ -3,10 +3,9 @@ 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}) -ENDIF(MSVC) +# the final slash needs to be flipped for CPACK_PACKAGE_ICON to work: +# https://cmake.org/pipermail/cmake/2008-June/022085.html +SET(CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/cmake/nsis\\\\nsis_branding.bmp") SET(CPACK_NSIS_MUI_ICON "${CMAKE_SOURCE_DIR}/cmake/nsis/icon.ico") SET(CPACK_NSIS_INSTALLED_ICON_NAME "${CMAKE_PROJECT_NAME}.exe" PARENT_SCOPE) SET(CPACK_NSIS_DISPLAY_NAME "${PROJECT_NAME_UCASE} ${VERSION}" PARENT_SCOPE) @@ -44,25 +43,6 @@ IF(WIN64) ") ENDIF() -# Fix windows paths for msys -IF(LMMS_BUILD_MSYS) - STRING(REPLACE "/" "\\\\" CPACK_PACKAGE_ICON "${CPACK_PACKAGE_ICON}") - STRING(REPLACE "/" "\\\\" CPACK_NSIS_MUI_ICON "${CPACK_NSIS_MUI_ICON}") - STRING(REPLACE "/" "\\\\" CPACK_NSIS_DEFINES "${CPACK_NSIS_DEFINES}") - STRING(REPLACE "/" "\\\\" CMAKE_BINARY_DIR_FIX "${CMAKE_BINARY_DIR}") - - # FIXME: there's no easy way to fix $INST_DIR, so we'll redefine it manually - IF(WIN64) - SET(NSIS_ARCH "win64") - ELSE() - SET(NSIS_ARCH "win32") - ENDIF() - SET(CPACK_NSIS_DEFINES " - ${CPACK_NSIS_DEFINES} - !define /redef INST_DIR ${CMAKE_BINARY_DIR_FIX}\\\\_CPack_Packages\\\\${NSIS_ARCH}\\\\NSIS\\\\${CPACK_PACKAGE_FILE_NAME} - ") -ENDIF() - # Setup missing parent scopes SET(CPACK_PACKAGE_FILE_NAME "${CPACK_PACKAGE_FILE_NAME}" PARENT_SCOPE) SET(CPACK_NSIS_DEFINES "${CPACK_NSIS_DEFINES}" PARENT_SCOPE) @@ -71,13 +51,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") - -IF(LMMS_HAVE_STK) - FILE(GLOB RAWWAVES "${MINGW_PREFIX}/share/stk/rawwaves/*.raw") - LIST(SORT RAWWAVES) - INSTALL(FILES ${RAWWAVES} DESTINATION "${DATA_DIR}/stk/rawwaves") -ENDIF() +CONFIGURE_FILE("zynaddsubfx.rc.in" "${CMAKE_BINARY_DIR}/plugins/ZynAddSubFx/zynaddsubfx.rc") INSTALL(FILES "lmms.exe.manifest" DESTINATION .) INSTALL(FILES "lmms.VisualElementsManifest.xml" DESTINATION .) diff --git a/cmake/toolchains/MSYS-32.cmake b/cmake/toolchains/MSYS-32.cmake deleted file mode 100644 index 698dd5437..000000000 --- a/cmake/toolchains/MSYS-32.cmake +++ /dev/null @@ -1,4 +0,0 @@ -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/common/MSYS.cmake) -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/common/Win32.cmake) - -SET(MINGW_PREFIX /mingw32) \ No newline at end of file diff --git a/cmake/toolchains/MSYS-64.cmake b/cmake/toolchains/MSYS-64.cmake deleted file mode 100644 index 8becd51b3..000000000 --- a/cmake/toolchains/MSYS-64.cmake +++ /dev/null @@ -1,5 +0,0 @@ -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/common/MSYS.cmake) -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/common/Win64.cmake) - -SET(MINGW_PREFIX /mingw64) -SET(MINGW_PREFIX32 /mingw32) diff --git a/cmake/toolchains/MinGW-W64-32.cmake b/cmake/toolchains/MinGW-W64-32.cmake new file mode 100644 index 000000000..acbdef8dd --- /dev/null +++ b/cmake/toolchains/MinGW-W64-32.cmake @@ -0,0 +1,6 @@ + +set(WIN64 FALSE) + +set(CMAKE_SYSTEM_PROCESSOR i686) + +include(${CMAKE_CURRENT_LIST_DIR}/common/MinGW-W64.cmake) diff --git a/cmake/toolchains/MinGW-W64-64.cmake b/cmake/toolchains/MinGW-W64-64.cmake new file mode 100644 index 000000000..b3cf59b47 --- /dev/null +++ b/cmake/toolchains/MinGW-W64-64.cmake @@ -0,0 +1,9 @@ + +set(WIN64 TRUE) + +set(CMAKE_SYSTEM_PROCESSOR x86_64) +set(CMAKE_SYSTEM_PROCESSOR32 i686) + +set(CMAKE_TOOLCHAIN_FILE_32 "${CMAKE_CURRENT_LIST_DIR}/MinGW-W64-32.cmake") + +include(${CMAKE_CURRENT_LIST_DIR}/common/MinGW-W64.cmake) diff --git a/cmake/toolchains/Ubuntu-MinGW-W64-32.cmake b/cmake/toolchains/Ubuntu-MinGW-W64-32.cmake deleted file mode 100644 index 6f7ec6f23..000000000 --- a/cmake/toolchains/Ubuntu-MinGW-W64-32.cmake +++ /dev/null @@ -1,2 +0,0 @@ -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/common/Win32.cmake) -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/common/Ubuntu-MinGW-W64.cmake) diff --git a/cmake/toolchains/Ubuntu-MinGW-W64-64.cmake b/cmake/toolchains/Ubuntu-MinGW-W64-64.cmake deleted file mode 100644 index a1b33ec67..000000000 --- a/cmake/toolchains/Ubuntu-MinGW-W64-64.cmake +++ /dev/null @@ -1,4 +0,0 @@ -SET(CMAKE_TOOLCHAIN_FILE_32 "${CMAKE_CURRENT_LIST_DIR}/Ubuntu-MinGW-W64-32.cmake") - -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/common/Win64.cmake) -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/common/Ubuntu-MinGW-W64.cmake) diff --git a/cmake/toolchains/Ubuntu-MinGW-X-Trusty-32.cmake b/cmake/toolchains/Ubuntu-MinGW-X-Trusty-32.cmake deleted file mode 100644 index 0103d35e7..000000000 --- a/cmake/toolchains/Ubuntu-MinGW-X-Trusty-32.cmake +++ /dev/null @@ -1,3 +0,0 @@ -SET(MINGW_PREFIX /opt/mingw32) - -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/common/Ubuntu-MinGW-X-Trusty.cmake) diff --git a/cmake/toolchains/Ubuntu-MinGW-X-Trusty-64.cmake b/cmake/toolchains/Ubuntu-MinGW-X-Trusty-64.cmake deleted file mode 100644 index 0f448fef5..000000000 --- a/cmake/toolchains/Ubuntu-MinGW-X-Trusty-64.cmake +++ /dev/null @@ -1,9 +0,0 @@ -SET(MINGW_PREFIX /opt/mingw64) -SET(MINGW_PREFIX32 /opt/mingw32) - -SET(WIN64 TRUE) - -SET(CMAKE_TOOLCHAIN_FILE_32 "${CMAKE_CURRENT_LIST_DIR}/Ubuntu-MinGW-X-Trusty-32.cmake") -SET(CMAKE_PREFIX_PATH_32 "${MINGW_PREFIX32}") - -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/common/Ubuntu-MinGW-X-Trusty.cmake) diff --git a/cmake/toolchains/common/MSYS.cmake b/cmake/toolchains/common/MSYS.cmake deleted file mode 100644 index 0b27e8d32..000000000 --- a/cmake/toolchains/common/MSYS.cmake +++ /dev/null @@ -1,22 +0,0 @@ -# The target environment -SET(CMAKE_FIND_ROOT_PATH ${MINGW_PREFIX}) -SET(CMAKE_INSTALL_PREFIX ${MINGW_PREFIX}) - -# Windows msys mingw ships with a mostly-suitable preconfigured environment -SET(STRIP ${MINGW_PREFIX}/bin/strip) -SET(CMAKE_RC_COMPILER ${MINGW_PREFIX}/bin/windres) -SET(CMAKE_C_COMPILER ${MINGW_PREFIX}/bin/gcc) -SET(CMAKE_CXX_COMPILER ${MINGW_PREFIX}/bin/g++) - -# For 32-bit vst support -IF(WIN64) - # Specify the 32-bit cross compiler - SET(CMAKE_C_COMPILER32 ${MINGW_PREFIX32}/bin/gcc) - SET(CMAKE_CXX_COMPILER32 ${MINGW_PREFIX32}/bin/g++) -ENDIF() - -# Msys compiler does not support @CMakeFiles/Include syntax -SET(CMAKE_C_USE_RESPONSE_FILE_FOR_INCLUDES OFF) -SET(CMAKE_CXX_USE_RESPONSE_FILE_FOR_INCLUDES OFF) - -SET(LMMS_BUILD_MSYS 1) diff --git a/cmake/toolchains/common/MinGW-W64.cmake b/cmake/toolchains/common/MinGW-W64.cmake new file mode 100644 index 000000000..11b6a92d4 --- /dev/null +++ b/cmake/toolchains/common/MinGW-W64.cmake @@ -0,0 +1,24 @@ +# Toolchain for MinGW compiler + +set(CMAKE_SYSTEM_NAME Windows) +set(CMAKE_SYSTEM_VERSION 1) + +set(TOOLCHAIN_PREFIX ${CMAKE_SYSTEM_PROCESSOR}-w64-mingw32) +set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}-gcc) +set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}-g++) +set(CMAKE_RC_COMPILER ${TOOLCHAIN_PREFIX}-windres) + +set(CMAKE_FIND_ROOT_PATH /usr/${TOOLCHAIN_PREFIX}) +set(ENV{PKG_CONFIG} /usr/bin/${TOOLCHAIN_PREFIX}-pkg-config) + +if(WIN64) + set(TOOLCHAIN_PREFIX32 ${CMAKE_SYSTEM_PROCESSOR32}-w64-mingw32) + set(CMAKE_C_COMPILER32 ${TOOLCHAIN_PREFIX32}-gcc) + set(CMAKE_CXX_COMPILER32 ${TOOLCHAIN_PREFIX32}-g++) +endif() + +# Search for programs in the build host directories +set(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) +# Search for libraries and headers in the target directories +set(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) +set(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) diff --git a/cmake/toolchains/common/Ubuntu-MinGW-W64.cmake b/cmake/toolchains/common/Ubuntu-MinGW-W64.cmake deleted file mode 100644 index 2f78a441e..000000000 --- a/cmake/toolchains/common/Ubuntu-MinGW-W64.cmake +++ /dev/null @@ -1,17 +0,0 @@ -# Toolchain for Ubuntu MinGw compiler shipped with the mingw-w64 and -# g++-mingw-w64 packages -SET(TOOLCHAIN_PREFIX ${CMAKE_SYSTEM_PROCESSOR}-w64-mingw32) -set(CMAKE_C_COMPILER ${TOOLCHAIN_PREFIX}-gcc) -set(CMAKE_CXX_COMPILER ${TOOLCHAIN_PREFIX}-g++) -set(CMAKE_RC_COMPILER ${TOOLCHAIN_PREFIX}-windres) - -set(CMAKE_FIND_ROOT_PATH /usr/${TOOLCHAIN_PREFIX}) -SET(ENV{PKG_CONFIG} /usr/bin/${TOOLCHAIN_PREFIX}-pkg-config) - -IF(WIN64) - SET(TOOLCHAIN_PREFIX32 ${CMAKE_SYSTEM_PROCESSOR32}-w64-mingw32) - SET(CMAKE_C_COMPILER32 ${TOOLCHAIN_PREFIX32}-gcc) - SET(CMAKE_CXX_COMPILER32 ${TOOLCHAIN_PREFIX32}-g++) -ENDIF() - -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/WinCrossCompile.cmake) diff --git a/cmake/toolchains/common/Ubuntu-MinGW-X-Trusty.cmake b/cmake/toolchains/common/Ubuntu-MinGW-X-Trusty.cmake deleted file mode 100644 index 686f4497f..000000000 --- a/cmake/toolchains/common/Ubuntu-MinGW-X-Trusty.cmake +++ /dev/null @@ -1,58 +0,0 @@ -IF(WIN64) - INCLUDE(${CMAKE_CURRENT_LIST_DIR}/Win64.cmake) -ELSE() - INCLUDE(${CMAKE_CURRENT_LIST_DIR}/Win32.cmake) -ENDIF() -INCLUDE(${CMAKE_CURRENT_LIST_DIR}/WinCrossCompile.cmake) - -# The target environment -SET(CMAKE_FIND_ROOT_PATH ${MINGW_PREFIX}) -SET(CMAKE_INSTALL_PREFIX ${MINGW_PREFIX}) - -# Linux mingw requires explicitly defined tools to prevent clash with native system tools -SET(MINGW_TOOL_PREFIX ${MINGW_PREFIX}/bin/${CMAKE_SYSTEM_PROCESSOR}-w64-mingw32-) - -# Specify the cross compiler -SET(CMAKE_C_COMPILER ${MINGW_TOOL_PREFIX}gcc) -SET(CMAKE_CXX_COMPILER ${MINGW_TOOL_PREFIX}g++) -SET(CMAKE_RC_COMPILER ${MINGW_TOOL_PREFIX}windres) - -# Mingw tools -SET(STRIP ${MINGW_TOOL_PREFIX}strip) -SET(ENV{PKG_CONFIG} ${MINGW_TOOL_PREFIX}pkg-config) - -# For 32-bit vst support -IF(WIN64) - # Specify the 32-bit cross compiler - SET(MINGW_TOOL_PREFIX32 ${MINGW_PREFIX32}/bin/${CMAKE_SYSTEM_PROCESSOR32}-w64-mingw32-) - SET(CMAKE_C_COMPILER32 ${MINGW_TOOL_PREFIX32}gcc) - SET(CMAKE_CXX_COMPILER32 ${MINGW_TOOL_PREFIX32}g++) -ENDIF() - -INCLUDE_DIRECTORIES(${MINGW_PREFIX}/include) - -LINK_DIRECTORIES(${MINGW_PREFIX}/lib ${MINGW_PREFIX}/bin) - -# Qt tools -SET(QT_BINARY_DIR ${MINGW_PREFIX}/bin) -SET(QT_QMAKE_EXECUTABLE ${QT_BINARY_DIR}/qmake) - -# Echo modified cmake vars to screen for debugging purposes -IF(NOT DEFINED ENV{MINGW_DEBUG_INFO}) - MESSAGE("") - MESSAGE("Custom cmake vars: (blank = system default)") - MESSAGE("-----------------------------------------") - MESSAGE("* CMAKE_C_COMPILER : ${CMAKE_C_COMPILER}") - MESSAGE("* CMAKE_CXX_COMPILER : ${CMAKE_CXX_COMPILER}") - MESSAGE("* CMAKE_RC_COMPILER : ${CMAKE_RC_COMPILER}") - MESSAGE("* ENV{PKG_CONFIG} : $ENV{PKG_CONFIG}") - MESSAGE("* MINGW_TOOL_PREFIX32 : ${MINGW_TOOL_PREFIX32}") - MESSAGE("* CMAKE_C_COMPILER32 : ${CMAKE_C_COMPILER32}") - MESSAGE("* CMAKE_CXX_COMPILER32 : ${CMAKE_CXX_COMPILER32}") - MESSAGE("* STRIP : ${STRIP}") - MESSAGE("* QT_BINARY_DIR : ${QT_BINARY_DIR}") - MESSAGE("* QT_QMAKE_EXECUTABLE : ${QT_QMAKE_EXECUTABLE}") - MESSAGE("") - # So that the debug info only appears once - SET(ENV{MINGW_DEBUG_INFO} SHOWN) -ENDIF() diff --git a/cmake/toolchains/common/Win32.cmake b/cmake/toolchains/common/Win32.cmake deleted file mode 100644 index bc20775d6..000000000 --- a/cmake/toolchains/common/Win32.cmake +++ /dev/null @@ -1,6 +0,0 @@ -SET(CMAKE_SYSTEM_NAME Windows) -SET(CMAKE_SYSTEM_VERSION 1) - -SET(CMAKE_SYSTEM_PROCESSOR i686) - -SET(WIN64 FALSE) diff --git a/cmake/toolchains/common/Win64.cmake b/cmake/toolchains/common/Win64.cmake deleted file mode 100644 index 155a658f4..000000000 --- a/cmake/toolchains/common/Win64.cmake +++ /dev/null @@ -1,7 +0,0 @@ -SET(CMAKE_SYSTEM_NAME Windows) -SET(CMAKE_SYSTEM_VERSION 1) - -SET(CMAKE_SYSTEM_PROCESSOR x86_64) -SET(CMAKE_SYSTEM_PROCESSOR32 i686) - -SET(WIN64 TRUE) diff --git a/cmake/toolchains/common/WinCrossCompile.cmake b/cmake/toolchains/common/WinCrossCompile.cmake deleted file mode 100644 index a2d6ff2e9..000000000 --- a/cmake/toolchains/common/WinCrossCompile.cmake +++ /dev/null @@ -1,9 +0,0 @@ -# Required by cmake if `uname -s` is inadaquate -SET(CMAKE_SYSTEM_NAME Windows) -SET(CMAKE_SYSTEM_VERSION 1) - -# Search for programs in the build host directories -SET(CMAKE_FIND_ROOT_PATH_MODE_PROGRAM NEVER) -# For libraries and headers in the target directories -SET(CMAKE_FIND_ROOT_PATH_MODE_LIBRARY ONLY) -SET(CMAKE_FIND_ROOT_PATH_MODE_INCLUDE ONLY) \ No newline at end of file diff --git a/data/locale/CMakeLists.txt b/data/locale/CMakeLists.txt index 4ce666dcf..f7f9071e7 100644 --- a/data/locale/CMakeLists.txt +++ b/data/locale/CMakeLists.txt @@ -29,9 +29,14 @@ FOREACH(_ts_file ${lmms_LOCALES}) ADD_CUSTOM_TARGET(${_ts_target} COMMAND "${QT_LUPDATE_EXECUTABLE}" -locations none -no-obsolete -I ${CMAKE_SOURCE_DIR}/include/ ${LMMS_SRCS} ${LMMS_UIS} ${CMAKE_SOURCE_DIR}/plugins -ts "\"${_ts_file}\"" WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) - ADD_CUSTOM_TARGET(${_qm_target} + add_custom_command( + OUTPUT "${_qm_file}" COMMAND "${QT_LRELEASE_EXECUTABLE}" "${_ts_file}" -qm "${_qm_file}" - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR}) + MAIN_DEPENDENCY "${_ts_file}" + WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}" + VERBATIM + ) + add_custom_target("${_qm_target}" DEPENDS "${_qm_file}") LIST(APPEND ts_targets "${_ts_target}") LIST(APPEND qm_targets "${_qm_target}") LIST(APPEND QM_FILES "${_qm_file}") diff --git a/data/locale/ar.ts b/data/locale/ar.ts index 8e2bc5284..4aca06e51 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 + + + + + MixerChannelView + + 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 + MixerChannelLcdSpinBox + + 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,831 +5511,1023 @@ 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 - InstrumentMiscView + InstrumentTuningView + 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..8050af8c2 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 + MixerChannelView - + 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,72 +3619,72 @@ 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 - InstrumentMiscView + InstrumentTuningView - + 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 + MixerChannelLcdSpinBox 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..2b06d0754 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 + + + + + MixerChannelView + + 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 + MixerChannelLcdSpinBox + + 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,788 +5563,970 @@ 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 - InstrumentMiscView + InstrumentTuningView + 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..331a37c9b 100644 --- a/data/locale/cs.ts +++ b/data/locale/cs.ts @@ -1,12888 +1,18754 @@ - + 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 - AmplifierControlDialog + AboutJuceDialog - - VOL - HLA + + About JUCE + - - Volume: - Hlasitost: + + <b>About JUCE</b> + - - PAN - PAN + + This program uses JUCE version 3.x.x. + - - Panning: - Panoráma: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + - - LEFT - LEVÝ - - - - Left gain: - Zesílení vlevo: - - - - RIGHT - PRAVÝ - - - - Right gain: - Zesílení vpravo: + + This program uses JUCE version + - AmplifierControls + AudioDeviceSetupWidget - - Volume - Hlasitost - - - - Panning - Panoráma - - - - Left gain - Zesílení vlevo - - - - Right gain - Zesílení vpravo + + [System Default] + - AudioAlsaSetupWidget + CarlaAboutW - - DEVICE - ZAŘÍZENÍ + + About Carla + O programu Carla - - CHANNELS - KANÁLY + + About + O programu + + + + 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: + LADSPA: + + + + + + + + + + + TextLabel + + + + + VST2: + VST2: + + + + DSSI: + DSSI: + + + + LV2: + LV2: + + + + VST3: + VST3: + + + + OSC + + + + + Host URLs: + + + + + Valid commands: + + + + + valid osc commands here + + + + + Example: + + + + + License + Licence + + + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + 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 + Verze pluginu + + + + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> + + + + + + (Engine not running) + + + + + Everything! (Including LRDF) + + + + + Everything! (Including CustomData/Chunks) + + + + + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + + + + + + + Using Juce host + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + - AudioFileProcessorView + CarlaHostW - - Open other sample - Otevřít jiný sampl + + MainWindow + - - 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. + + Rack + - - Reverse sample - Přehrávat pozpátku + + Patchbay + - - 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. + + Logs + - - Disable loop - Vypnout smyčku + + Loading... + - - 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. + + Save + - - - Enable loop - Zapnout smyčku + + Clear + - - 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. + + Ctrl+L + - - 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. + + Auto-Scroll + - - Continue sample playback across notes - Pokračovat v přehrávání samplu přes znějící tóny + + Buffer Size: + - - 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) + + Sample Rate: + - - Amplify: - Zesílení: + + ? Xruns + - - 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!) + + DSP Load: %p% + - - Startpoint: - Začátek samplu: + + &File + &Soubor - - 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. + + &Engine + - - Endpoint: - Konec samplu: + + &Plugin + - - 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. + + Macros (all plugins) + - - Loopback point: - Začátek smyčky: + + &Canvas + - - 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. + + Zoom + - - - AudioFileProcessorWaveView - - Sample length: - Délka samplu: + + &Settings + - - - AudioJack - - JACK client restarted - Klient JACK je restartován - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS bylo z nějakého důvodu shozeno JACKem. Proto byl ovladač JACK v LMMS restartován. Musíte znovu provést ruční připojení. - - - - JACK server down - JACK server byl zastaven - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Vypnutí a nové spuštění serveru JACK se nezdařilo. LMMS proto nemůže pokračovat. Uložte svůj projekt a restartujte JACK i LMMS. - - - - CLIENT-NAME - JMÉNO-KLIENTA - - - - CHANNELS - KANÁLY - - - - AudioOss::setupWidget - - - DEVICE - ZAŘÍZENÍ - - - - CHANNELS - KANÁLY - - - - AudioPortAudio::setupWidget - - - BACKEND - OVLADAČ - - - - DEVICE - ZAŘÍZENÍ - - - - AudioPulseAudio::setupWidget - - - DEVICE - ZAŘÍZENÍ - - - - CHANNELS - KANÁLY - - - - AudioSdl::setupWidget - - - DEVICE - ZAŘÍZENÍ - - - - AudioSndio::setupWidget - - - DEVICE - ZAŘÍZENÍ - - - - CHANNELS - KANÁLY - - - - AudioSoundIo::setupWidget - - - BACKEND - OVLADAČ - - - - 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) - - - - Edit song-global automation - Upravit hlavní automatizaci skladby - - - - Remove song-global automation - Odebrat hlavní automatizaci skladby - - - - Remove all linked controls - Odebrat všechny propojené ovládací prvky - - - - Connected to %1 - Připojeno k %1 - - - - Connected to controller - Připojeno k ovladači - - - - Edit connection... - Upravit připojení... - - - - Remove connection - Odebrat připojení - - - - Connect to controller... - Připojit k ovladači... - - - - AutomationEditor - - - Please open an automation pattern 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) - 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) - 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) - - - - 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í - - - - 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 - Editor automatizace – žádný záznam - - - - - Automation Editor - %1 - Editor automatizace – %1 - - - - Model is already connected to this pattern. - Model je již k tomuto záznamu připojen. - - - - AutomationPattern - - - Drag a control while pressing <%1> - Ovládací prvek táhni při stisknutém <%1> - - - - AutomationPatternView - - - 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 je již k tomuto záznamu připojen. - - - - AutomationTrack - - - Automation track - Stopa automatizace - - - - BBEditor - - - 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 - - - - 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 - - - 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 - - - Beat/Bassline %1 - Bicí/basy %1 - - - - Clone of %1 - Klon z %1 - - - - BassBoosterControlDialog - - - FREQ - FREKV - - - - Frequency: - Frekvence: - - - - GAIN - ZES - - - - Gain: - Zesílení: - - - - RATIO - POMĚR - - - - Ratio: - Poměr: - - - - BassBoosterControls - - - Frequency - Frekvence - - - - Gain - Zesílení - - - - Ratio - Poměr - - - - BitcrushControlDialog - - - IN - IN - - - - OUT - OUT - - - - - GAIN - ZISK - - - - Input Gain: - Zesílení vstupu: - - - - NOISE - ŠUM - - - - Input Noise: - Vstup šumu: - - - - Output Gain: - Zesílení výstupu: - - - - CLIP - OŘÍZ - - - - Output Clip: - Oříznutí výstupu: - - - - Rate Enabled - Frekvence zapnuta - - - - Enable samplerate-crushing - Zapnout drtič vzorkovací frekvence - - - - Depth Enabled - Hloubka zapnuta - - - - Enable bitdepth-crushing - Zapnout drtič bitové hloubky - - - - FREQ - FREKV - - - - Sample rate: - Vzorkovací frekvence: - - - - STEREO - STEREO - - - - Stereo difference: - Stereo rozdíl: - - - - QUANT - KVANT - - - - Levels: - Úrovně: - - - - CaptionMenu - - + &Help &Nápověda - - Help (not available) - Nápověda (nedostupná) + + Tool Bar + - - - CarlaInstrumentView - - Show GUI - Ukázar grafické rozhraní + + Disk + - - 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. + + + Home + Domů - - - Controller - - Controller %1 - Ovladač %1 + + Transport + - - - ControllerConnectionDialog - - Connection Settings - Nastavení připojení + + Playback Controls + - - MIDI CONTROLLER - MIDI OVLADAČ + + Time Information + - - Input channel - Vstupní kanál + + Frame: + - - CHANNEL - KANÁL + + 000'000'000 + - - Input controller - Vstupní ovladač - - - - CONTROLLER - OVLADAČ - - - - - Auto Detect - Autodetekce - - - - MIDI-devices to receive MIDI-events from - MIDI zařízení k přijmu MIDI události - - - - USER CONTROLLER - UŽIVATELSKÝ OVLADAČ - - - - MAPPING FUNCTION - MAPOVACÍ FUNKCE - - - - OK - OK - - - - Cancel - Zrušit - - - - LMMS - LMMS - - - - Cycle Detected. - Zjištěno zacyklení. - - - - ControllerRackView - - - Controller Rack - Ovladače - - - - Add - Přidat - - - - Confirm Delete - Potvrdit smazání - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Opravdu smazat? Je (jsou) zde propojení na tento ovladač. Nebude možné vrátit se zpět. - - - - ControllerView - - - Controls - Ovládací prvky - - - - 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č - - - - CrossoverEQControlDialog - - - Band 1/2 Crossover: - Přechod mezi pásmy 1/2: - - - - Band 2/3 Crossover: - Přechod mezi pásmy 2/3: - - - - Band 3/4 Crossover: - Přechod mezi pásmy 3/4: - - - - Band 1 Gain: - Zesílení pásma 1: - - - - Band 2 Gain: - Zesílení pásma 2: - - - - Band 3 Gain: - Zesílení pásma 3: - - - - Band 4 Gain: - Zesílení pásma 4: - - - - Band 1 Mute - Ztlumení pásma 1 - - - - Mute Band 1 - Ztlumit pásmo 1 - - - - Band 2 Mute - Ztlumení pásma 2 - - - - Mute Band 2 - Ztlumit pásmo 2 - - - - Band 3 Mute - Ztlumení pásma 3 - - - - Mute Band 3 - Ztlumit pásmo 3 - - - - Band 4 Mute - Ztlumení pásma 4 - - - - Mute Band 4 - Ztlumit pásmo 4 - - - - DelayControls - - - Delay Samples - Zpoždění vzorků - - - - Feedback - Zpětná vazba - - - - Lfo Frequency - Frekvence LFO - - - - Lfo Amount - Hloubka LFO - - - - Output gain - Zesílení výstupu - - - - DelayControlsDialog - - - DELAY - ZPOŽ - - - - Delay Time - Délka zpoždění - - - - FDBK - ZPVAZ - - - - Feedback Amount - Hloubka zpětné vazby - - - - RATE - RYCH - - - - Lfo - LFO - - - - AMNT - MNOŽ - - - - Lfo Amt - Hloubka LFO - - - - Out Gain - Zesílení výstupu - - - - Gain - Zesílení - - - - DualFilterControlDialog - - - - FREQ - FREKV - - - - - Cutoff frequency - Frekvence oříznutí - - - - - RESO - REZON - - - - - Resonance - Rezonance - - - - - GAIN - ZESIL - - - - - Gain - Zesílení - - - - MIX - POMĚR - - - - Mix - Poměr - - - - Filter 1 enabled - Filtr 1 zapnutý - - - - Filter 2 enabled - Filtr 2 zapnutý - - - - Click to enable/disable Filter 1 - Klepněte pro zapnutí/vypnutí filtru 1 - - - - Click to enable/disable Filter 2 - Klepněte pro zapnutí/vypnutí filtru 2 - - - - DualFilterControls - - - Filter 1 enabled - Filtr 1 zapnutý - - - - Filter 1 type - Typ filtru 1 - - - - Cutoff 1 frequency - Frekvence oříznutí 1 - - - - Q/Resonance 1 - Q/rezonance 1 - - - - Gain 1 - Zesílení 1 - - - - Mix - Mix - - - - Filter 2 enabled - Filtr 1 zapnutý - - - - Filter 2 type - Typ filtru 2 - - - - Cutoff 2 frequency - Frekvence oříznutí 2 - - - - Q/Resonance 2 - Q/rezonance 2 - - - - Gain 2 - Zesílení 2 - - - - - LowPass - Dolní propust - - - - - HiPass - Horní propust - - - - - BandPass csg - Pásmová propust csg - - - - - BandPass czpg - Pásmová propust czpg - - - - - Notch - Pásmová zádrž - - - - - Allpass - Všepásmový filtr - - - - - Moog - Moogův filtr - - - - - 2x LowPass - 2x dolní propust - - - - - RC LowPass 12dB - RC dolní propust 12dB - - - - - RC BandPass 12dB - RC pásmová propust 12dB - - - - - RC HighPass 12dB - RC horní propust 12dB - - - - - RC LowPass 24dB - RC dolní propust 24dB - - - - - RC BandPass 24dB - RC pásmová propust 24dB - - - - - RC HighPass 24dB - RC horní propust 24dB - - - - - Vocal Formant Filter - Vokální formantový filtr - - - - - 2x Moog - 2x Moogův filtr - - - - - SV LowPass - SV dolní propust - - - - - SV BandPass - SV pásmová propust - - - - - SV HighPass - SV horní propust - - - - - SV Notch - SV pásmová zádrž - - - - - Fast Formant - Rychlý formantový filtr - - - - - Tripole - Třípólový filtr - - - - Editor - - - Transport controls - Řízení přenosu - - - - Play (Space) - Přehrát (mezerník) - - - - Stop (Space) - Zastavit (mezerník) - - - - Record - Nahrávat - - - - Record while playing - Nahrávat při přehrávání - - - - Effect - - - Effect enabled - Efekt aktivován - - - - Wet/Dry mix - Poměr zpracovaného/původního signálu - - - - Gate - Brána - - - - Decay - Pokles - - - - EffectChain - - - Effects enabled - Efekty aktivovány - - - - EffectRackView - - - EFFECTS CHAIN - ŘETĚZ EFEKTŮ - - - - Add effect - Přidat efekt - - - - EffectSelectDialog - - - Add effect - Přidat efekt - - - - - Name - Název - - - - Type - Typ - - - - Description - Popis - - - - Author - Autor - - - - EffectView - - - 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ů. + + 00:00:00 + - - GATE - BRÁ + + BBT: + - - Gate: - Brána: + + 000|00|0000 + - - 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ů. + + Settings + Nastavení - - Controls - Ovladače + + BPM + - - 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. + + Use JACK Transport + - - Move &up - Posunout &nahoru + + Use Ableton Link + - - Move &down - Posunout &dolů + + &New + &Nový - - &Remove this plugin - &Odstranit tento plugin + + Ctrl+N + + + + + &Open... + &Otevřít... + + + + + Open... + + + + + Ctrl+O + + + + + &Save + &Uložit + + + + Ctrl+S + + + + + Save &As... + Uložit &jako... + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + &Ukončit + + + + Ctrl+Q + + + + + &Start + + + + + F5 + + + + + St&op + + + + + F6 + + + + + &Add Plugin... + + + + + Ctrl+A + + + + + &Remove All + + + + + Enable + + + + + Disable + + + + + 0% Wet (Bypass) + + + + + 100% Wet + + + + + 0% Volume (Mute) + + + + + 100% Volume + + + + + Center Balance + + + + + &Play + + + + + Ctrl+Shift+P + + + + + &Stop + + + + + Ctrl+Shift+X + + + + + &Backwards + + + + + Ctrl+Shift+B + + + + + &Forwards + + + + + Ctrl+Shift+F + + + + + &Arrange + + + + + Ctrl+G + + + + + + &Refresh + + + + + Ctrl+R + + + + + Save &Image... + + + + + Auto-Fit + + + + + Zoom In + Přiblížit + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + Oddálit + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + + + + + Ctrl+1 + + + + + Show &Toolbar + + + + + &Configure Carla + + + + + &About + + + + + About &JUCE + + + + + About &Qt + + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + Ctrl+P + + + + + &Connect... + + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + + + + + &Configure driver... + + + + + Panic + + + + + Open custom driver panel... + + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + - EnvelopeAndLfoParameters + CarlaHostWindow - - Predelay - Předzpoždění + + Export as... + - - Attack - Náběh + + + + + Error + Chyba - - Hold - Držení + + Failed to load project + - - Decay - Útlum + + Failed to save project + - - Sustain - Vydržení + + Quit + - - Release - Doznění + + Are you sure you want to quit Carla? + - - Modulation - Modulace + + Could not connect to Audio backend '%1', possible reasons: +%2 + - - LFO Predelay - Předzpoždění LFO + + Could not connect to Audio backend '%1' + - - LFO Attack - Náběh LFO + + Warning + - - LFO speed - Rychlost LFO - - - - LFO Modulation - Modulace LFO - - - - LFO Wave Shape - Tvar vlny LFO - - - - Freq x 100 - Frekvence x 100 - - - - Modulate Env-Amount - Hloubka modulace + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + - EnvelopeAndLfoView + CarlaSettingsW - - - DEL - PŘED + + Settings + Nastavení - - Predelay: - Předzpoždění: + + main + - - 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. + + canvas + - - - ATT - NÁB + + engine + - - Attack: - Náběh: + + osc + - - 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. + + file-paths + - - HOLD - DRŽ + + plugin-paths + - - Hold: - Držení: + + wine + - - 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). + + experimental + - - DEC - ÚTL + + Widget + - - Decay: - Útlum: + + + Main + - - 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. + + + Canvas + - - SUST - VYD + + + Engine + - - Sustain: - Držení: + + File Paths + - - 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. + + Plugin Paths + - - REL - UVOL + + Wine + - - Release: - Uvolnění: + + + Experimental + - - 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. + + <b>Main</b> + - - - AMT - MOD + + Paths + Cesty - - - Modulation amount: - Hloubka modulace: + + Default project folder: + - - 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. + + Interface + - - LFO predelay: - Předzpoždění LFO: + + Use "Classic" as default rack skin + - - 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. + + Interface refresh interval: + - - LFO- attack: - Náběh LFO: + + + ms + - - 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. + + Show console output in Logs tab (needs engine restart) + - - SPD - RYCH + + Show a confirmation dialog before quitting + - - LFO speed: - Rychlost LFO: + + + Theme + - - 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 Carla "PRO" theme (needs restart) + - - 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. + + Color scheme: + - - Click here for a sine-wave. - Klepněte sem pro sinusovou vlnu. + + Black + - - Click here for a triangle-wave. - Klepněte sem pro trojúhelníkovou vlnu. + + System + - - Click here for a saw-wave for current. - Klepněte sem pro pilovitou vlnu. + + Enable experimental features + - - Click here for a square-wave. - Klepněte sem pro pravoúhlou vlnu. + + <b>Canvas</b> + - - 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. + + Bezier Lines + - - Click here for random wave. - Klepněte sem pro náhodnou vlnu. + + Theme: + - - FREQ x 100 - FREKVENCE x 100 + + Size: + Velikost: - - 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. + + 775x600 + - - multiply LFO-frequency by 100 - vynásobit frekvenci LFO x100 + + 1550x1200 + - - MODULATE ENV-AMOUNT - MODULOVAT OBÁLKU + + 3100x2400 + - - 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. + + 4650x3600 + - - control envelope-amount by this LFO - řízení množství obálky tímto LFO + + 6200x4800 + - - ms/LFO: - ms/LFO: + + 12400x9600 + - - Hint - Rada + + Options + - - 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ě. + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + + + + + Anti-Aliasing + + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + + + + + + Core + + + + + Single Client + + + + + Multiple Clients + + + + + + Continuous Rack + + + + + + Patchbay + + + + + Audio driver: + + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + + + + + Reset Xrun counter after project load + + + + + Plugin UIs + + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + + + + + <b>OSC</b> + + + + + Enable OSC + + + + + Enable TCP port + + + + + + Use specific port: + + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + + + + + Audio + Zvuk + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + + + + + + Remove + + + + + + Change... + + + + + <b>Plugin Paths</b> + + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + + + + + <b>Wine</b> + + + + + Executable + + + + + Path to 'wine' binary: + + + + + Prefix + + + + + Auto-detect Wine prefix based on plugin filename + + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + + + + + High Quality Anti-Aliasing (OpenGL only) + + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + + + + + Force mono plugins as stereo + + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path + - EqControls + Dialog - - Input gain - Zesílení vstupu + + Carla Control - Connect + - - Output gain - Zesílení výstupu + + Remote setup + - - Low shelf gain - Zesílení dolního šelfu + + UDP Port: + - - Peak 1 gain - Zesílení špičky 1 + + Remote host: + - - Peak 2 gain - Zesílení špičky 2 + + TCP Port: + - - Peak 3 gain - Zesílení špičky 3 + + Set value + Nastavit hodnotu - - Peak 4 gain - Zesílení špičky 4 + + TextLabel + - - High Shelf gain - Zesílení horního šelfu - - - - HP res - Rezonance horní propusti - - - - Low Shelf res - Rezonance dolního šelfu - - - - Peak 1 BW - Šířka pásma špičky 1 - - - - Peak 2 BW - Šířka pásma špičky 2 - - - - Peak 3 BW - Šířka pásma špičky 3 - - - - Peak 4 BW - Šířka pásma špičky 4 - - - - High Shelf res - Rezonance horního šelfu - - - - LP res - Rezonance dolní propusti - - - - HP freq - Frekvence horní propusti - - - - Low Shelf freq - Frekvence dolního šelfu - - - - Peak 1 freq - Frekvence špičky 1 - - - - Peak 2 freq - Frekvence špičky 2 - - - - Peak 3 freq - Frekvence špičky 3 - - - - Peak 4 freq - Frekvence špičky 3 - - - - High shelf freq - Frekvence špičky 4 - - - - LP freq - Frekvence dolní propusti - - - - HP active - Horní propust aktivní - - - - Low shelf active - Dolní šelf aktivní - - - - Peak 1 active - Špička 1 aktivní - - - - Peak 2 active - Špička 2 aktivní - - - - Peak 3 active - Špička 3 aktivní - - - - Peak 4 active - Špička 4 aktivní - - - - High shelf active - Horní šelf aktivní - - - - LP active - Dolní propust aktivní - - - - LP 12 - DP 12 - - - - LP 24 - DP 24 - - - - LP 48 - DP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - low pass type - typ dolní propusti - - - - high pass type - typ horní propusti - - - - Analyse IN - Analýza VSTUPU - - - - Analyse OUT - Analýza VÝSTUPU + + Scale Points + - EqControlsDialog + DriverSettingsW - - HP - HP + + Driver Settings + - - Low Shelf - Dolní šelf + + Device: + - - Peak 1 - Špička 1 + + Buffer size: + - - Peak 2 - Špička 2 + + Sample rate: + Vzorkovací frekvence: - - Peak 3 - Špička 3 + + Triple buffer + - - Peak 4 - Špička 4 + + Show Driver Control Panel + - - High Shelf - Horní šelf - - - - LP - DP - - - - In Gain - Zesílení vstupu - - - - - - Gain - Zesílení - - - - Out Gain - Zesílení výstupu - - - - Bandwidth: - Šířka pásma: - - - - Octave - oktávy - - - - Resonance : - Rezonance: - - - - Frequency: - Frekvence: - - - - lp grp - dp skup - - - - hp grp - hp skup - - - - EqHandle - - - Reso: - Rezon: - - - - BW: - ŠPás: - - - - - Freq: - Frekv: + + Restart the engine to load the new settings + 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 - - Start - Začít + + Render Looped Section: + Opakovat smyčku: - - Cancel - Zrušit + + time(s) + krát - - Could not open file - Nemohu otevřít soubor + + File format settings + Nastavení formátu souboru - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Nelze otevřít soubor %1 pro zápis. -Ověřte si prosím, zda máte povolen zápis do souboru a do složky, ve které je umístěn, a zkuste znovu! + + File format: + Formát souboru: - - Export project to %1 - Exportovat projekt do %1 + + Sampling rate: + Vzorkovací frekvence: - - Error - Chyba + + 44100 Hz + 44100 Hz - - 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. + + 48000 Hz + 48000 Hz - - Rendering: %1% - Renderuji: %1% + + 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: - (fastest) - (nejrychlejší) + + Bitrate: + Datový tok: - (default) - (výchozí) + + 64 KBit/s + 64 kbit/s - (smallest) - (nejmenší) + + 128 KBit/s + 128 kbit/s - - - Expressive - Selected graph - Zvolený graf + + 160 KBit/s + 160 kbit/s - A1 - A1 + + 192 KBit/s + 192 kbit/s - A2 - A2 + + 256 KBit/s + 256 kbit/s - A3 - A3 + + 320 KBit/s + 320 kbit/s - W1 smoothing - W1 vyhlazování + + Use variable bitrate + Použít proměnlivý datový tok - W2 smoothing - W2 vyhlazování + + Quality settings + Nastavení kvality - W3 smoothing - W3 vyhlazování + + Interpolation: + Interpolace: - PAN1 - PAN1 + + Zero order hold + Zero order hold - PAN2 - PAN2 + + Sinc worst (fastest) + Sinc nejhorší (nejrychlejší) - REL TRANS - + + Sinc medium (recommended) + Sinc střední (doporučeno) - - - Fader - - - Please enter a new value between %1 and %2: - Vložte prosím novou hodnotu mezi %1 a %2: + + Sinc best (slowest) + Sinc nejlepší (nejpomalejší) - - - FileBrowser - - Browser - Prohlížeč + + Start + Začít - Search - Hledat - - - Refresh list - Obnovit seznam - - - - 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 in new instrument-track/B+B Editor - Otevřít v nové nástrojové stopě / editoru bicich/basů - - - - 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ý - - - - file - soubor - - - - --- Factory files --- - --- Tovární soubory --- - - - - FileBrowserTreeWidget - - - FlangerControls - - - Delay Samples - Zpoždění vzorků - - - - Lfo Frequency - Frekvence LFO - - - - Seconds - Sekund - - - - Regen - Obnov - - - - Noise - Šum - - - - Invert - Převrátit - - - - FlangerControlsDialog - - - DELAY - ZPOŽ - - - - Delay Time: - Délka zpoždění: - - - - RATE - POMĚR - - - - Period: - Perioda: - - - - AMNT - MNOŽ - - - - Amount: - Množství: - - - - FDBK - ZP. VAZ - - - - Feedback Amount: - Velikost zpětné vazby: - - - - NOISE - ŠUM - - - - White Noise Amount: - Množství bílého šumu: - - - - Invert - Převrátit - - - - FxLine - - - 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 - - - - FxMixer - - - Master - Hlavní - - - - - - FX %1 - Efekt %1 - - - - Volume - Hlasitost - - - - Mute - Ztlumit - - - - Solo - Sólo - - - - FxMixerView - - - FX-Mixer - Efektový mixážní panel - - - - FX Fader %1 - Efektový fader %1 - - - - Mute - Ztlumit - - - - Mute this FX channel - Ztlumit tento efektový kanál - - - - Solo - Sólo - - - - Solo FX channel - Sólovat efektový kanál - - - - FxRoute - - - - Amount to send from channel %1 to channel %2 - Množství k odeslání z kanálu %1 do kanálu %2 - - - - GigInstrument - - - Bank - Banka - - - - Patch - Patch - - - - Gain - Zisk - - - - GigInstrumentView - - - Open 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 - - - - GIG Files (*.gig) - GIG soubory (*.gig) - - - - GuiApplication - - - Working directory - Pracovní adresář - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Pracovní adresář LMMS %1 neexistuje. Chcete jej nyní vytvořit? Změnu adresáře mžete provést později v nabídce Úpravy -> Nastavení. - - - - Preparing UI - Připravuji UI - - - - Preparing song editor - Připravuji editor skladby - - - - Preparing mixer - Připravuji mixážní panel - - - - Preparing controller rack - Připravuji panel ovladačů - - - - Preparing project notes - Připravuji poznámky k projektu - - - - Preparing beat/bassline editor - Připravuji editor bicích/basů - - - - Preparing piano roll - Připravuji Piano roll - - - - Preparing automation editor - Připravuji Editor automatizace - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpeggio - - - - Arpeggio type - Typ arpeggia - - - - Arpeggio range - Rozsah arpeggia - - - - Cycle steps - Počet kroků v cyklu - - - - Skip rate - Míra vynechávání - - - - Miss rate - Míra míjení - - - - Arpeggio time - Trvání arpeggia - - - - Arpeggio gate - Brána arpeggia - - - - Arpeggio direction - Směr arpeggia - - - - Arpeggio mode - Styl arpeggia - - - - Up - Nahoru - - - - Down - Dolů - - - - Up and down - Nahoru a dolů - - - - Down and up - Dolů a nahoru - - - - Random - Náhodné - - - - Free - Volné - - - - Sort - Tříděné - - - - Sync - Synchronizované - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - 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. - - - - 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: + + Cancel + Zrušit InstrumentFunctionNoteStacking - + octave Oktáva - - + + Major Dur - + Majb5 Maj5b - + minor Moll - + minb5 m5b - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 aug sus4 - + tri tri - + 6 6 - + 6sus4 6 sus4 - + 6add9 6 add9 - + m6 m6 - + m6add9 m6 add9 - + 7 7 - + 7sus4 7 sus4 - + 7#5 7/5# - + 7b5 7/5b - + 7#9 7/9# - + 7b9 7/9b - + 7#5#9 7/5#/9# - + 7#5b9 7/5#/9b - + 7b5b9 7/5b/9b - + 7add11 7 add11 - + 7add13 7 add13 - + 7#11 7/11# - + Maj7 Maj7 - + Maj7b5 Maj7/5b - + Maj7#5 Maj7/5# - + Maj7#11 Maj7/11# - + Maj7add13 Maj7 add13 - + m7 m7 - + m7b5 m7/5b - + m7b9 m7/9b - + m7add11 m7 add11 - + m7add13 m7 add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7 add11 - + m-Maj7add13 m-Maj7 add13 - + 9 9 - + 9sus4 9 sus4 - + add9 add9 - + 9#5 9/5# - + 9b5 9/5b - + 9#11 9/11# - + 9b13 9/13b - + Maj9 Maj9 - + Maj9sus4 Maj9 sus4 - + Maj9#5 Maj9/5# - + Maj9#11 Maj9/11# - + m9 m9 - + madd9 m add9 - + m9b5 m9/5b - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11/9b - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13/9# - + 13b9 13/9b - + 13b5b9 13/9b/5b - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Mollová harmonická - + Melodic minor Mollová melodická - + Whole tone Celotónová stupnice - + Diminished Zmenšená - + Major pentatonic Durová pentatonika - + Minor pentatonic Mollová pentatonika - + Jap in sen Japonská (in sen) stupnice - + Major bebop Durová bebopová - + Dominant bebop Dominantní bebopová - + Blues Bluesová stupnice - + Arabic Arabská - + Enigmatic Enigmatická - + Neopolitan Neapolská - + Neopolitan minor Mollová neapolská - + Hungarian minor Mollová maďarská - + Dorian Dórská - + Phrygian Frygický - + Lydian Lydická - + Mixolydian Mixolydická - + Aeolian Aiolská - + Locrian Lokrická - + Minor Moll - + Chromatic Chromatická - + Half-Whole Diminished Zmenšená (půltón–celý tón) - + 5 5 - + Phrygian dominant Frygická dominanta - + Persian Perská - - - Chords - Akordy - - - - Chord type - Typ akordu - - - - Chord range - Rozsah akordu - - - - InstrumentFunctionNoteStackingView - - - STACKING - VRSTVENÍ - - - - Chord: - Akord: - - - - RANGE - ROZSAH - - - - Chord range: - Rozsah akordu: - - - - octave(s) - oktáva(y) - - - - 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 - - - - NOTE - NOTA - - - - MIDI devices to receive MIDI events from - MIDI zařízení pro přijímání MIDI událostí - - - - MIDI devices to send MIDI events to - MIDI zařízení pro odesílání MIDI událostí - - - - CUSTOM BASE VELOCITY - VLASTNÍ VÝCHOZÍ DYNAMIKA - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity - Udává výchozí úroveň dynamiky pro MIDI nástroje při 100 % dynamiky tónu - - - - BASE VELOCITY - VÝCHOZÍ DYNAMIKA - - - - InstrumentMiscView - - - MASTER PITCH - TRANSPOZICE - - - - Enables the use of Master Pitch - Umožní použití transpozice - InstrumentSoundShaping - + VOLUME HLASITOST - + Volume Hlasitost - + CUTOFF SEŘÍZNUTÍ - - + Cutoff frequency Frekvence oříznutí - + RESO REZONANCE - + Resonance Rezonance + + + JackAppDialog - - Envelopes/LFOs - Obálky/LFO + + Add JACK Application + - - Filter type - Typ filtru + + Note: Features not implemented yet are greyed out + - - Q/Resonance - Q/rezonance + + Application + - - LowPass - Dolní propust + + Name: + - - HiPass - Horní propust + + Application: + - - BandPass csg - Pásmová propust csg + + From template + - - BandPass czpg - Pásmová propust czpg + + Custom + - - Notch - Pásmová zádrž + + Template: + - - Allpass - Všepásmový filtr + + Command: + - - Moog - Moogův filtr + + Setup + - - 2x LowPass - 2x dolní propust + + Session Manager: + - - RC LowPass 12dB - RC dolní propust 12dB + + None + - - RC BandPass 12dB - RC pásmová propust 12dB + + Audio inputs: + - - RC HighPass 12dB - RC horní propust 12dB + + MIDI inputs: + - - RC LowPass 24dB - RC dolní propust 24dB + + Audio outputs: + - - RC BandPass 24dB - RC pásmová propust 24dB + + MIDI outputs: + - - RC HighPass 24dB - RC horní propust 24dB + + Take control of main application window + - - Vocal Formant Filter - Vokální formantový filtr + + Workarounds + - - 2x Moog - 2x Moogův filtr + + Wait for external application start (Advanced, for Debug only) + - - SV LowPass - SV dolní propust + + Capture only the first X11 Window + - - SV BandPass - SV pásmová propust + + Use previous client output buffer as input for the next client + - - SV HighPass - SV horní propust + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - - SV Notch - SV pásmová zádrž + + Error here + - - Fast Formant - Rychlý formantový filtr + + NSM applications cannot use abstract or absolute paths + - - Tripole - Třípólový filtr + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + - InstrumentSoundShapingView + JuceAboutW - - 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: - 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... - - - - RESO - REZO - - - - 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. + + This program uses JUCE version %1. + - InstrumentTrack + MidiPatternW - - 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. + + MIDI Pattern + - - - unnamed_track - nepojmenovaná_stopa + + Time Signature: + - - Base note - Základní nota + + + + 1/4 + - - Volume - Hlasitost + + 2/4 + - - Panning - Panoráma + + 3/4 + - - Pitch - Ladění + + 4/4 + - - Pitch range - Výškový rozsah + + 5/4 + - - FX channel - Efektový kanál + + 6/4 + - - Master Pitch - Transpozice + + Measures: + - - - Default preset - Výchozí předvolba + + + + 1 + - - - InstrumentTrackView - - Volume - Hlasitost + + 2 + - - Volume: - Hlasitost: + + 3 + - - VOL - HLA + + 4 + - - Panning - Panoráma + + 5 + 5 - - Panning: - Panoráma: + + 6 + 6 - - PAN - PAN + + 7 + 7 - - MIDI - MIDI + + 8 + - - Input - Vstup + + 9 + 9 - - Output - Výstup + + 10 + - - FX %1: %2 - Efekt %1: %2 + + 11 + 11 - - - InstrumentTrackWindow - - GENERAL SETTINGS - HLAVNÍ NASTAVENÍ + + 12 + - - 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. + + 13 + 13 - - Instrument volume - Hlasitost nástroje + + 14 + - - Volume: - Hlasitost: + + 15 + - - VOL - HLA + + 16 + - - Panning - Panoráma + + Default Length: + - - Panning: - Panoráma: + + + 1/16 + - - PAN - PAN + + + 1/15 + - - Pitch - Ladění + + + 1/12 + - - Pitch: - Ladění: + + + 1/9 + - - cents - centů + + + 1/8 + - - PITCH - LADĚNÍ + + + 1/6 + - - Pitch range (semitones) - Rozsah výšky (v půltónech) + + + 1/3 + - - RANGE - ROZSAH + + + 1/2 + - - FX channel - Efektový kanál + + Quantize: + - - FX - 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í - - - - Miscellaneous - Různé - - - - Save preset - Uložit předvolbu - - - - XML preset file (*.xpf) - XML soubor předvoleb (*.xpf) - - - - Plugin - Plugin - - - - Knob - - - Set linear - Lineární zobrazení - - - - Set logarithmic - Logaritmické zobrazení - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Zadejte prosím novou hodnotu mezi -96.0 dBFS a 6.0 dBFS: - - - - Please enter a new value between %1 and %2: - Vložte prosím novou hodnotu mezi %1 a %2: - - - - LadspaControl - - - Link channels - Propojit kanály - - - - LadspaControlDialog - - - Link Channels - Propojit kanály - - - - Channel - Kanál - - - - LadspaControlView - - - Link channels - Propojit kanály - - - - Value: - Hodnota: - - - - 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. - - - - LcdSpinBox - - - Please enter a new value between %1 and %2: - Vložte prosím novou hodnotu mezi %1 a %2: - - - - LeftRightNav - - - - - Previous - Předchozí - - - - - - Next - Další - - - - Previous (%1) - Předchozí (%1) - - - - Next (%1) - Další (%1) - - - - LfoController - - - LFO Controller - Ovladač LFO - - - - Base value - Základní hodnota - - - - Oscillator speed - Rychlost oscilátoru - - - - Oscillator amount - Míra oscilátoru - - - - Oscillator phase - Fáze oscilátoru - - - - Oscillator waveform - Vlna oscilátoru - - - - Frequency Multiplier - Frekvenční multiplikátor - - - - LfoControllerDialog - - - LFO - LFO - - - - LFO Controller - Ovladač LFO - - - - BASE - ZÁKL - - - - Base amount: - Základní míra: - - - - todo - udělat - - - - SPD - RYCH - - - - 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 - 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é. - - - - 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. - Klepněte sem pro pilovitou vlnu. - - - - Click here for a square-wave. - Klepněte sem pro pravoúhlou vlnu. - - - - Click here for a moog saw-wave. - Klepněte sem pro pilovitou vlnu typu Moog. - - - - 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. - - - - Click here for a user-defined shape. -Double click to pick a file. - Klepněte sem pro uživatelem definovaný tvar. -Poklepejte pro výběr souboru. - - - - LmmsCore - - - Generating wavetables - Generuji vlny - - - - Initializing data structures - Inicializuji datové struktury - - - - Opening audio and midi devices - Spouštím zvuková a MIDI zařízení - - - - Launching mixer threads - Spouštím vlákna mixážního panelu - - - - MainWindow - - - Configuration file - Soubor nastavení - - - - Error while parsing configuration file at line %1:%2: %3 - Chyba při kontrole konfiguračního souboru na řádku %1:%2: %3 - - - - Could not open file - Nemohu otevřít soubor - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Nelze otevřít soubor %1 pro zápis. -Ujistěte se prosím, zda máte povolen zápis do souboru a do složky obsahující soubor a zkuste znovu! - - - - Project recovery - Obnovení projektu - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Je k dispozici soubor pro obnovu. Zdá se, že poslední práce nebyla správně ukončena nebo že je již spuštěna jiná instance LMMS. Chcete obnovit tuto verzi projektu? - - - - - - Recover - Obnovit - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Obnovit soubor. Před dokončením prosím nespouštějte další instance LMMS. - - - - - - Discard - Zrušit - - - - Launch a default session and delete the restored files. This is not reversible. - Spustit LMMS do výchozího stavu a smazat obnovené soubory. Tento krok je nevratný. - - - - Version %1 - Verze %1 - - - - Preparing plugin browser - Připravuji prohlížeč pluginů - - - - Preparing file browsers - Připravuji prohlížeč souborů - - - - My Projects - Moje projekty - - - - My Samples - Moje samply - - - - My Presets - Moje předvolby - - - - My Home - Domů - - - - Root directory - Kořenový adresář - - - - Volumes - Hlasitosti - - - - My Computer - Můj počítač - - - - 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 - - - - &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 + + &Quit + &Ukončit - - Redo - Znovu + + Esc + - - Settings - Nastavení + + &Insert Mode + - - &View - &Zobrazení + + F + - - &Tools - &Nástroje + + &Velocity Mode + - - &Help - &Nápověda + + D + - - Online Help - Nápověda online + + Select All + - - 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? - - - - Toggle metronome - Zapnout/Vypnout metronom - - - - Show/hide Song-Editor - Zobrazit/Skrýt editor skladby - - - - 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. - - - - Show/hide Beat+Bassline Editor - Zobrazit/Skrýt editor bicích/basů - - - - 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. - - - - 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čů - - - - 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čů - - - - 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 - - - - MeterDialog - - - - Meter Numerator - Počet dob v taktu - - - - - Meter Denominator - Délka doby v taktu - - - - TIME SIG - METRUM - - - - MeterModel - - - Numerator - Počet dob - - - - Denominator - Délka doby - - - - MidiController - - - MIDI Controller - MIDI ovladač - - - - unnamed_midi_controller - nepojmenovaný_midi_ovladač - - - - 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. - 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. - - - - Track - Stopa - - - - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK server zhavaroval - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Zdá se, že JACK server zhavaroval. - - - - MidiPort - - - Input channel - Vstupní kanál - - - - Output channel - Výstupní kanál - - - - Input controller - Vstupní ovladač - - - - Output controller - Výstupní ovladač - - - - Fixed input velocity - Pevná vstupní dynamika - - - - Fixed output velocity - Pevná výstupní dynamika - - - - Fixed output note - Pevná výstupní nota - - - - Output MIDI program - Výstupní MIDI program - - - - Base velocity - Výchozí dynamika - - - - Receive MIDI-events - Přijímat MIDI události - - - - Send MIDI-events - Posílat MIDI události - - - - MidiSetupWidget - - - DEVICE - ZAŘÍZENÍ - - - - MonstroInstrument - - - Osc 1 Volume - Osc 1 hlasitost - - - - Osc 1 Panning - Osc 1 panoráma - - - - Osc 1 Coarse detune - Osc 1 hrubé rozladění - - - - Osc 1 Fine detune left - Osc 1 jemné rozladění vlevo - - - - Osc 1 Fine detune right - Osc 1 jemné rozladění vpravo - - - - Osc 1 Stereo phase offset - Osc 1 posun stereo fáze - - - - Osc 1 Pulse width - Osc 1 délka pulzu - - - - Osc 1 Sync send on rise - Osc 1 synchronizace při nárůstu - - - - Osc 1 Sync send on fall - Osc 1 synchronizace při poklesu - - - - Osc 2 Volume - Osc 2 hlasitost - - - - Osc 2 Panning - Osc 2 panoráma - - - - Osc 2 Coarse detune - Osc 2 hrubé rozladění - - - - Osc 2 Fine detune left - Osc 2 jemné rozladění vlevo - - - - Osc 2 Fine detune right - Osc 2 jemné rozladění vpravo - - - - Osc 2 Stereo phase offset - Osc 2 posun stereo fáze - - - - Osc 2 Waveform - Osc 2 vlna - - - - Osc 2 Sync Hard - Osc 2 pevná synchronizace - - - - Osc 2 Sync Reverse - Osc 2 reverzní synchronizace - - - - Osc 3 Volume - Osc 3 hlasitost - - - - Osc 3 Panning - Osc 3 panoráma - - - - Osc 3 Coarse detune - Osc 3 hrubé rozladění - - - - Osc 3 Stereo phase offset - Osc 3 posun stereo fáze - - - - Osc 3 Sub-oscillator mix - Osc 3 smíchání se sub-oscilátorem - - - - Osc 3 Waveform 1 - Osc 3 vlna 1 - - - - Osc 3 Waveform 2 - Osc 3 vlna 2 - - - - Osc 3 Sync Hard - Osc 3 pevná synchronizace - - - - Osc 3 Sync Reverse - Osc 3 reverzní synchronizace - - - - LFO 1 Waveform - LFO 1 vlna - - - - LFO 1 Attack - LFO 1 náběh - - - - LFO 1 Rate - LFO 1 rychlost - - - - LFO 1 Phase - LFO 1 fáze - - - - LFO 2 Waveform - LFO 2 vlna - - - - LFO 2 Attack - LFO 2 náběh - - - - LFO 2 Rate - LFO 2 rychlost - - - - LFO 2 Phase - LFO 2 fáze - - - - Env 1 Pre-delay - Obálka 1 předzpoždění - - - - Env 1 Attack - Obálka 1 náběh - - - - Env 1 Hold - Obálka 1 držení - - - - Env 1 Decay - Obálka 1 útlum - - - - Env 1 Sustain - Obálka 1 vydržení - - - - Env 1 Release - Obálka 1 uvolnění - - - - Env 1 Slope - Obálka 1 sklon - - - - Env 2 Pre-delay - Obálka 2 předzpoždění - - - - Env 2 Attack - Obálka 2 náběh - - - - Env 2 Hold - Obálka 2 držení - - - - Env 2 Decay - Obálka 2 útlum - - - - Env 2 Sustain - Obálka 2 vydržení - - - - Env 2 Release - Obálka 2 uvolnění - - - - Env 2 Slope - Obálka 2 sklon - - - - Osc2-3 modulation - Osc 2–3 modulace - - - - Selected view - Zvolený pohled - - - - Vol1-Env1 - Hla1-Obá1 - - - - Vol1-Env2 - Hla1-Obá2 - - - - Vol1-LFO1 - Hla1-LFO1 - - - - Vol1-LFO2 - Hla1-LFO2 - - - - Vol2-Env1 - Hla2-Obá1 - - - - Vol2-Env2 - Hla2-Obá2 - - - - Vol2-LFO1 - Hla2-LFO1 - - - - Vol2-LFO2 - Hla2-LFO2 - - - - Vol3-Env1 - Hla3-Obá1 - - - - Vol3-Env2 - Hla3-Obá2 - - - - Vol3-LFO1 - Hla3-LFO1 - - - - Vol3-LFO2 - Hla3-LFO2 - - - - Phs1-Env1 - Fáz1-Obá1 - - - - Phs1-Env2 - Fáz1-Obá2 - - - - Phs1-LFO1 - Fáz1-LFO1 - - - - Phs1-LFO2 - Fáz1-LFO2 - - - - Phs2-Env1 - Fáz2-Obá1 - - - - Phs2-Env2 - Fáz2-Obá2 - - - - Phs2-LFO1 - Fáz2-LFO1 - - - - Phs2-LFO2 - Fáz2-LFO2 - - - - Phs3-Env1 - Fáz3-Obá1 - - - - Phs3-Env2 - Fáz3-Obá2 - - - - Phs3-LFO1 - Fáz3-LFO1 - - - - Phs3-LFO2 - Fáz3-LFO2 - - - - Pit1-Env1 - Výš1-Obá1 - - - - Pit1-Env2 - Výš1-Obá2 - - - - Pit1-LFO1 - Výš1-LFO1 - - - - Pit1-LFO2 - Výš1-LFO2 - - - - Pit2-Env1 - Výš2-Obá1 - - - - Pit2-Env2 - Výš2-Obá2 - - - - Pit2-LFO1 - Výš2-LFO1 - - - - Pit2-LFO2 - Výš2-LFO2 - - - - Pit3-Env1 - Výš3-Obá1 - - - - Pit3-Env2 - Výš3-Obá2 - - - - Pit3-LFO1 - Výš3-LFO1 - - - - Pit3-LFO2 - Výš3-LFO2 - - - - PW1-Env1 - Pul1-Obá1 - - - - PW1-Env2 - Pul1-Obá2 - - - - PW1-LFO1 - Pul1-LFO1 - - - - PW1-LFO2 - Pul1-LFO2 - - - - Sub3-Env1 - Sub3-Obá1 - - - - Sub3-Env2 - Sub3-Obá2 - - - - Sub3-LFO1 - Sub3-LFO1 - - - - Sub3-LFO2 - Sub3-LFO2 - - - - - Sine wave - Sinusová vlna - - - - Bandlimited Triangle wave - Pásmově zúžená trojúhelníková vlna - - - - Bandlimited Saw wave - Pásmově zúžená pilovitá vlna - - - - Bandlimited Ramp wave - Pásmově zúžená šikmá vlna - - - - Bandlimited Square wave - Pásmově zúžená pravoúhlá vlna - - - - Bandlimited Moog saw wave - Pásmově zúžená pilovitá vlna typu Moog - - - - - Soft square wave - Zaoblená pravoúhlá vlna - - - - Absolute sine wave - Absolutní sinusová vlna - - - - - Exponential wave - Exponenciální vlna - - - - White noise - Bílý šum - - - - Digital Triangle wave - Digitální trojúhelníková vlna - - - - Digital Saw wave - Digitální pilovitá vlna - - - - Digital Ramp wave - Digitální šikmá vlna - - - - Digital Square wave - Digitální pravoúhlá vlna - - - - Digital Moog saw wave - Digitální pilovitá vlna typu Moog - - - - Triangle wave - Trojúhelníková vlna - - - - Saw wave - Pilovitá vlna - - - - Ramp wave - Šikmá vlna - - - - Square wave - Pravoúhlá vlna - - - - Moog saw wave - Pilovitá vlna typu Moog - - - - Abs. sine wave - Abs. sinusová vlna - - - - Random - Náhodná - - - - Random smooth - Vyhlazená náhodná - - - - MonstroView - - - Operators view - Zobrazení operátorů - - - - 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 - Jemné rozladění vlevo - - - - - - - cents - centů - - - - - Finetune 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 - - - - Modulate amplitude of Osc3 with Osc2 - Modulovat amplitudu Osc3 pomocí Osc2 - - - - Modulate frequency of Osc3 with Osc2 - Modulovat frekvenci Osc3 pomocí Osc2 - - - - Modulate phase of Osc3 with Osc2 - Modulovat fázi Osc3 pomocí Osc2 - - - - 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 - - - - MultitapEchoControlDialog - - - Length - Délka - - - - Step length: - Délka kroku: - - - - Dry - Poměr - - - - Dry Gain: - Poměr zdrojového zvuku: - - - - Stages - Úrovně - - - - Lowpass stages: - Počet úrovní dolní propusti: - - - - Swap inputs - Přepnout vstupy - - - - Swap left and right input channel for reflections - Přepnout levý a pravý vstupní kanál pro odrazy - - - - NesInstrument - - - Channel 1 Coarse detune - Kanál 1 hrubé rozladění - - - - Channel 1 Volume - Hlasitost kanálu 1 - - - - Channel 1 Envelope length - Kanál 1 délka obálky - - - - Channel 1 Duty cycle - Kanál 1 pracovní cyklus - - - - Channel 1 Sweep amount - Kanál 1 množství sweepu - - - - Channel 1 Sweep rate - Kanál 1rychlost sweepu - - - - Channel 2 Coarse detune - Kanál 2 hrubé rozladění - - - - Channel 2 Volume - Hlasitost kanálu 2 - - - - Channel 2 Envelope length - Kanál 2 délka obálky - - - - Channel 2 Duty cycle - Kanál 2 pracovní cyklus - - - - Channel 2 Sweep amount - Kanál 2 množství sweepu - - - - Channel 2 Sweep rate - Kanál 2 rychlost sweepu - - - - Channel 3 Coarse detune - Kanál 3 hrubé rozladění - - - - Channel 3 Volume - Hlasitost kanálu 3 - - - - Channel 4 Volume - Hlasitost kanálu 4 - - - - Channel 4 Envelope length - Kanál 4 délka obálky - - - - Channel 4 Noise frequency - Kanál 4 frekvence šumu - - - - Channel 4 Noise frequency sweep - Kanál 4 sweep frekvence šumu - - - - Master volume - Hlavní hlasitost - - - - Vibrato - Vibráto - - - - NesInstrumentView - - - - - - Volume - Hlasitost - - - - - - Coarse detune - Hrubé rozladění - - - - - - Envelope length - Délka obálky - - - - Enable channel 1 - Zapnout kanál 1 - - - - Enable envelope 1 - Zapnout obálku 1 - - - - Enable envelope 1 loop - Zapnout smyčku obálky 1 - - - - Enable sweep 1 - Zapnout sweep 1 - - - - - Sweep amount - Množství sweepu - - - - - Sweep rate - Rychlost sweepu - - - - - 12.5% Duty cycle - 12.5% pracovního cyklu - - - - - 25% Duty cycle - 25% pracovního cyklu - - - - - 50% Duty cycle - 50% pracovního cyklu - - - - - 75% Duty cycle - 75% pracovního cyklu - - - - Enable channel 2 - Zapnout kanál 2 - - - - Enable envelope 2 - Zapnout obálku 2 - - - - Enable envelope 2 loop - Zapnout smyčku obálky 2 - - - - Enable sweep 2 - Zapnout sweep 2 - - - - Enable channel 3 - Zapnout kanál 3 - - - - Noise Frequency - Frekvence šumu - - - - Frequency sweep - Frekvence sweepu - - - - Enable channel 4 - Zapnout kanál 4 - - - - Enable envelope 4 - Zapnout obálku 4 - - - - Enable envelope 4 loop - Zapnout smyčku obálky 4 - - - - Quantize noise frequency when using note frequency - Kvantizovat frekvenci šumu při použití frekvence noty - - - - Use note frequency for noise - Použít frekvenci pro šum - - - - Noise mode - Typ šumu - - - - Master Volume - Hlavní hlasitost - - - - Vibrato - Vibráto - - - - 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 + + A + PatchesDialog + Qsynth: Channel Preset Qsynth: Předvolba kanálu + Bank selector Výběr banky + Bank Banka + Program selector Výběr programu + Patch Patch + Name Název + OK OK + Cancel Zrušit - - PatmanView - - - Open other patch - Otevřít jiný 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 - - - 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 - - - - Clear all notes - Vymazat všechny noty - - - - Reset name - Resetovat jméno - - - - Change name - Změnit jméno - - - - Add steps - Přidat kroky - - - - Remove steps - Odstranit kroky - - - - Clone Steps - Klonovat kroky - - - - PeakController - - - Peak Controller - Ovladač špičky - - - - Peak Controller Bug - Chyba ovladače špičky - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Z důvodu chyby ve starší verzi LMMS nemusí být ovladače špiček správně připojeny. Ujistěte se prosím, zda jsou ovladače špiček správně připojeny a znovu uložte tento soubor. Omlouváme se za způsobené nepříjemnosti. - - - - PeakControllerDialog - - - PEAK - ŠPIČ - - - - LFO Controller - Ovladač LFO - - - - PeakControllerEffectControlDialog - - - BASE - ZÁKL - - - - Base amount: - Základní míra: - - - - AMNT - MNOŽ - - - - Modulation amount: - Hloubka modulace: - - - - MULT - NÁSB - - - - Amount Multiplicator: - Násobič množství: - - - - ATCK - NÁBH - - - - Attack: - Náběh: - - - - DCAY - POKL - - - - Release: - Doznění: - - - - TRSH - PRÁH - - - - Treshold: - Práh: - - - - 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 - - - - 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 scale - Žádná stupnice - - - - No chord - Žádný akord - - - - 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! - Otevřete prosím záznam poklepáním! - - - - - Please enter a new value between %1 and %2: - Vložte prosím novou hodnotu mezi %1 a %2: - - - - PianoRollWindow - - - Play/pause current pattern (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) - 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 - - - - Copy paste controls - Ovládání kopírování a vkládání - - - - Cut selected notes (%1+X) - Vyjmout označené noty (%1+X) - - - - Copy selected notes (%1+C) - Kopírovat označené noty (%1+C) - - - - Paste notes from clipboard (%1+V) - Vložit noty ze schránky (%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 - - - - 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. - - - - 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. - - - - 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. - - - - 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! - - - - 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". - - - - - Piano-Roll - %1 - Piano roll – %1 - - - - - Piano-Roll - no pattern - Piano roll – žádný záznam - - - - PianoView - - - Base note - Základní nota - - - - Plugin - - - Plugin not found - Plugin nenalezen - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Plugin "%1" nebyl nalezen nebo nemůže být načten! -Důvod: "%2" - - - - Error while loading plugin - Při načítání pluginu došlo k chybě - - - - Failed to load plugin "%1"! - Načtení pluginu "%1" selhalo! - - PluginBrowser - - Instrument Plugins - Nástrojové pluginy - - - - Instrument browser - Prohlížeč nástrojů - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Nástroj přetáhněte do editoru skladby, editoru bicích/basů nebo do existující nástrojové stopy. - - - - 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! - - - - ProjectNotes - - - Project Notes - Poznámky k projektu - - - - Enter project notes here - Sem zapište poznámky k projektu - - - - Edit Actions - Provedené úpravy - - - - &Undo - &Zpět - - - - %1+Z - %1+Z - - - - &Redo - &Znovu - - - - %1+Y - %1+Z - - - - &Copy - &Kopírovat - - - - %1+C - %1+C - - - - Cu&t - &Vyjmout - - - - %1+X - %1+X - - - - &Paste - V&ložit - - - - %1+V - %1+V - - - - Format Actions - Formátování - - - - &Bold - &Tučné - - - - %1+B - %1+B - - - - &Italic - &Kurzíva - - - - %1+I - %1+I - - - - &Underline - &Podtržené - - - - %1+U - %1+U - - - - &Left - &Vlevo - - - - %1+L - %1+L - - - - C&enter - &Na střed - - - - %1+E - %1+E - - - - &Right - V&pravo - - - - %1+R - %1+R - - - - &Justify - &Do bloku - - - - %1+J - %1+J - - - - &Color... - &Barva... - - - - ProjectRenderer - - - WAV-File (*.wav) - WAV soubor (*.wav) - - - - Compressed OGG-File (*.ogg) - Komprimovaný OGG soubor (*.ogg) - - - FLAC-File (*.flac) - Soubor FLAC (*.flac) - - - - Compressed MP3-File (*.mp3) - Komprimovaný soubor MP3 (*.mp3) - - - - QWidget - - - - - Name: - Název: - - - - - Maker: - Tvůrce: - - - - - Copyright: - Autorská práva: - - - - - Requires Real Time: - Vyžaduje běh v reálném čase: - - - - - - - - - Yes - Ano - - - - - - - - - No - Ne - - - - - Real Time Capable: - Schopnost běhu v reálném čase: - - - - - In Place Broken: - Na místě poškozeného: - - - - - Channels In: - Vstupní kanály: - - - - - Channels Out: - Výstupní kanály: - - - - File: %1 - Soubor: %1 - - - - File: - Soubor: - - - - RenameDialog - - - Rename... - Přejmenovat... - - - - ReverbSCControlDialog - - - Input - Vstup - - - - Input Gain: - Zesílení vstupu: - - - - Size - Velikost - - - - Size: - Velikost: - - - - Color - Barva - - - - Color: - Barva: - - - - Output - Výstup - - - - Output Gain: - Zesílení výstupu: - - - - ReverbSCControls - - - Input Gain - Vstupní úroveň - - - - Size - Velikost - - - - Color - Barva - - - - Output Gain - Zesílení výstupu - - - - 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 - - - double-click to select sample - poklepáním vyberte sampl - - - - Delete (middle mousebutton) - Smazat (prostřední tlačítko myši) - - - - Cut - Vyjmout - - - - Copy - Kopírovat - - - - Paste - Vložit - - - - Mute/unmute (<%1> + middle click) - Ztlumit/Odtlumit (<%1> + prostřední tlačítko) - - - - SampleTrack - - - Volume - Hlasitost - - - - Panning - Panoráma - - - - - Sample track - Stopa samplů - - - - SampleTrackView - - - Track volume - Hlasitost stopy - - - - Channel volume: - Hlasitost kanálu: - - - - VOL - HLA - - - - Panning - Panoráma - - - - Panning: - Panoráma: - - - - PAN - PAN - - - - SetupDialog - - - Setup LMMS - Nastavení LMMS - - - - - 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 - - - - 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 - - - - - Paths - Cesty - - - - Directories - Adresáře - - - - LMMS working directory - Pracovní adresář LMMS - - - - Themes directory - Adresář pro témata - - - - Background artwork - Obrázek na pozadí - - - - VST-plugin directory - Adresář pro VST pluginy - - - - GIG directory - Adresář pro GIG - - - - SF2 directory - Adresář pro SF2 - - - - LADSPA plugin directories - Adresář pro LADSPA pluginy - - - - STK rawwave directory - Adresář pro STK rawwave - - - - Default Soundfont File - Výchozí Soundfont soubor - - - - - Performance settings - Nastavení výkonu - - - - Auto save - Automatické ukládání - - - - Enable auto-save - Povolit automatické ukládání - - - - Allow auto-save while playing - Povolit automatické ukládání během přehrávání - - - - UI effects vs. performance - Efekty uživatelského rozhraní vs. výkon - - - - Smooth scroll in Song Editor - Plynulé posouvání v Song Editoru - - - - Show playback cursor in AudioFileProcessor - Zobrazit přehrávací kurzor v AudioFileProcessoru - - - - - Audio settings - Audio nastavení - - - - AUDIO INTERFACE - AUDIO ROZHRANÍ - - - - - MIDI settings - MIDI nastavení - - - - 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 - - - - Auto-save interval: %1 - Interval automatického ukládání: %1 - - - - 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. - - - - 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í. - - - - 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í. - - - - Song - - - Tempo - Tempo - - - - Master volume - Hlavní hlasitost - - - - Master pitch - Transpozice - - - - 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 - - - - - 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: - - - - 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. - - - - 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. - - - - 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 of song - tempo skladby - - - - 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ů - - - - 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í - - - - Edit mode (select and move) - Režim úprav (označit a přesunout) - - - - Timeline controls - Ovládání časové osy - - - - Zoom controls - Ovládání zvětšení - - - - SpectrumAnalyzerControlDialog - - - Linear spectrum - Lineární spektrum - - - - Linear Y axis - Lineární osa Y - - - - SpectrumAnalyzerControls - - - Linear spectrum - Lineární spektrum - - - - Linear Y axis - Lineární osa Y - - - - Channel mode - Režim kanálu - - - - SubWindow - - - Close - Zavřít - - - - Maximize - Maximalizovat - - - - Restore - Obnovit - - - - TabWidget - - - - Settings for %1 - Nastavení rpo %1 - - - - TempoSyncKnob - - - - Tempo Sync - Synchronizace tempa - - - - No Sync - Nesynchronizovat - - - - Eight beats - Osm dob - - - - Whole note - Celá nota - - - - Half note - Půlová nota - - - - Quarter note - Čtvrťová nota - - - - 8th note - Osminová nota - - - - 16th note - Šestnáctinová nota - - - - 32nd note - Dvaatřicetinová nota - - - - Custom... - Vlastní... - - - - Custom - Vlastní - - - - Synced to Eight Beats - Synchronizováno k osmi dobám - - - - Synced to Whole Note - Synchronizováno k celé notě - - - - Synced to Half Note - Synchronizováno k půlové notě - - - - Synced to Quarter Note - Synchronizováno ke čtvrťové notě - - - - Synced to 8th Note - Synchronizováno k osminové notě - - - - Synced to 16th Note - Synchronizováno k šestnáctinové notě - - - - Synced to 32nd Note - Synchronizováno k dvaatřicetinové notě - - - - TimeDisplayWidget - - - click to change time units - klepněte pro změnu časových jednotek - - - - MIN - MIN - - - - SEC - S - - - - MSEC - MS - - - - BAR - TAKT - - - - BEAT - DOBA - - - - TICK - TIK - - - - TimeLineWidget - - - Enable/disable auto-scrolling - Povolit/Zakázat automatický posun - - - - Enable/disable loop-points - Povolit/Zakázat body přehrávání ve smyčce - - - - After stopping go back to begin - Po skončení přetočit zpět na začátek - - - - 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 - - - - TrackContainer - - - Couldn't import file - Nemohu importovat soubor - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - Nemohu najít filtr pro import souboru %1. -Měli byste tento soubor převést do formátu podporovaného LMMS pomocí jiného software. - - - - Couldn't open file - Nemohu otevřít soubor - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - Nemohu otevřít soubor %1 pro čtení. -Přesvědčte se prosím, že máte právo ke čtení tohoto souboru a příslušného adresáře a zkuste to znovu! - - - - Loading project... - Načítám projekt... - - - - - Cancel - Zrušit - - - - - Please wait... - Prosím čekejte... - - - - Loading cancelled - Načítání zrušeno - - - - Project loading was cancelled. - Načítání projektu bylo zrušeno. - - - - Loading Track %1 (%2/Total %3) - Načítám Stopu %1 (%2/celkem %3) - - - - Importing MIDI-file... - Importuji MIDI soubor... - - - - TrackContentObject - - - Mute - Ztlumit - - - - TrackContentObjectView - - - 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) - - - - Delete (middle mousebutton) - Smazat (prostřední tlačítko myši) - - - - Cut - Vyjmout - - - - Copy - Kopírovat - - - - Paste - Vložit - - - - Mute/unmute (<%1> + middle click) - Ztlumit/Odtlumit (<%1> + prostřední tlačítko myši) - - - - TrackOperationsWidget - - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - Při klepnutí na úchop držte <%1> pro zkopírování přetahované stopy. - - - - Actions for this track - Akce pro tuto stopu - - - - Mute - Ztlumit - - - - - Solo - Sólo - - - - Mute this track - Ztlumit tuto stopu - - - - Clone this track - Klonovat tuto stopu - - - - Remove this track - Odstranit tuto stopu - - - - Clear this track - Smazat tuto stopu - - - - FX %1: %2 - Efekt %1: %2 - - - - Assign to new FX 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í - - - - 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 - - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Použít amplitudovou modulaci pro modulování oscilátoru 1 oscilátorem 2 - - - - Mix output of oscillator 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 - - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Použít fázovou modulaci pro modulování 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 - - - - Mix output of oscillator 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 - - - - 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. - - - - Use a sine-wave for current oscillator. - Použít sinusovou vlnu pro aktuální oscilátor. - - - - Use a triangle-wave for current oscillator. - Použít trojúhelníkovou vlnu pro aktuální oscilátor. - - - - Use a saw-wave for current oscillator. - Použít pilovitou vlnu pro aktuální oscilátor. - - - - Use a square-wave for current oscillator. - Použít pravoúhlou vlnu pro aktuální oscilátor. - - - - Use a moog-like saw-wave for current oscillator. - Použít pilovitou vlnu typu Moog pro tento oscilátor. - - - - Use an exponential wave for current oscillator. - Použít exponenciální vlnu pro aktuální oscilátor. - - - - Use white-noise for current oscillator. - Použít bílý šum pro aktuální oscilátor. - - - - Use a user-defined waveform for current oscillator. - Použít vlastní vlnu pro aktuální oscilátor. - - - - VersionedSaveDialog - - - Increment version number - Zvýšit číslo verze - - - - Decrement version number - Snížení čísla verze - - - - already exists. Do you want to replace it? - již existuje. Přejete si jej přepsat? - - - - VestigeInstrumentView - - - Open other VST-plugin - Otevřít jiný 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 - 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ř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 - 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 - - - Show/hide - Ukázat/Skrýt - - - - 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ř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 /> - - - - VstPlugin - - - - The VST plugin %1 could not be loaded. - VST plugin %1 nelze načíst. - - - - Open Preset - Otevřít předvolbu - - - - - Vst Plugin Preset (*.fxp *.fxb) - Předvolba VST pluginu (*.fxp *.fxb) - - - - : default - : výchozí - - - - " - " - - - - ' - ' - - - - Save Preset - Uložit předvolbu - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Načítám plugin - - - - Please wait while loading VST plugin... - Počkejte prosím, než se načte VST plugin... - - - - WatsynInstrument - - - Volume A1 - Hlasitost A1 - - - - Volume A2 - Hlasitost A2 - - - - Volume B1 - Hlasitost B1 - - - - Volume B2 - Hlasitost B2 - - - - Panning A1 - Panoráma A1 - - - - Panning A2 - Panoráma A2 - - - - Panning B1 - Panoráma B1 - - - - Panning B2 - Panoráma B2 - - - - Freq. multiplier A1 - Násobič frekv. A1 - - - - Freq. multiplier A2 - Násobič frekv. A2 - - - - Freq. multiplier B1 - Násobič frekv. B1 - - - - Freq. multiplier B2 - Násobič frekv. B2 - - - - Left detune A1 - Rozladění vlevo A1 - - - - Left detune A2 - Rozladění vlevo A2 - - - - Left detune B1 - Rozladění vlevo B1 - - - - Left detune B2 - Rozladění vlevo B2 - - - - Right detune A1 - Rozladění vpravo A1 - - - - Right detune A2 - Rozladění vpravo A2 - - - - Right detune B1 - Rozladění vpravo B1 - - - - Right detune B2 - Rozladění vpravo B2 - - - - A-B Mix - Směšovač A-B - - - - A-B Mix envelope amount - Množství obálky směšovače A-B - - - - A-B Mix envelope attack - Náběh obálky směšovače A-B - - - - A-B Mix envelope hold - Množství zadržení směšovače A-B - - - - A-B Mix envelope decay - Pokles obálky směšovače A-B - - - - A1-B2 Crosstalk - Přeslech A1-B2 - - - - A2-A1 modulation - Modulace A1-B2 - - - - B2-B1 modulation - Modulace B2-B1 - - - - Selected graph - Zvolený graf - - - - WatsynView - - - - - - Volume - Hlasitost - - - - - - - Panning - Panoráma - - - - - - - Freq. multiplier - Násobič frekv. - - - - - - - Left detune - Rozladění vlevo - - - - - - - - - - - cents - centů - - - - - - - Right detune - Rozladění vpravo - - - - A-B Mix - Směšovač A-B - - - - Mix envelope amount - Množství obálky směšovače - - - - Mix envelope attack - Náběh obálky směšovače - - - - Mix envelope hold - Zadržení obálky směšovače - - - - Mix envelope decay - Pokles obálky směšovače - - - - Crosstalk - Přeslech - - - - Select oscillator A1 - Vybrat oscilátor A1 - - - - Select oscillator A2 - Vybrat oscilátor A2 - - - - Select oscillator B1 - Vybrat oscilátor B1 - - - - Select oscillator B2 - Vybrat oscilátor B2 - - - - Mix output of A2 to A1 - Přimíchat výstup A1 do A2 - - - - Modulate amplitude of A1 with output of A2 - Modulovat amplitudu A1 výstupem A2 - - - - Ring-modulate A1 and A2 - Kruhově modulovat A1 a A2 - - - - Modulate phase of A1 with 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 - Modulovat amplitudu B1 výstupem B2 - - - - Ring-modulate B1 and B2 - Kruhově modulovat B1 a B2 - - - - Modulate phase of B1 with 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ů - - - - Phase left - Fáze vlevo - - - - Click to shift phase by -15 degrees - Klepněte pro posun fáze o -15 stupňů - - - - Phase right - Fáze vpravo - - - - Click to shift phase by +15 degrees - Klepněte pro posun fáze 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 - - - - Click for saw wave - Klepněte pro pilovitou vlnu - - - - Square wave - Pravoúhlá vlna - - - - Click for square wave - Klepněte pro pravoúhlou vlnu - - - - ZynAddSubFxInstrument - - - Portamento - Portamento - - - - Filter Frequency - Frekvence filtru - - - - Filter Resonance - Rezonance filtru - - - - Bandwidth - Šířka pásma - - - - FM Gain - Zesílení FM - - - - Resonance Center Frequency - Střední frekvence rezonance - - - - Resonance Bandwidth - Šířka pásma rezonance - - - - Forward MIDI Control Change Events - Odesílat události MIDI Control Change - - - - ZynAddSubFxView - - - Portamento: - Portamento: - - - - PORT - PORT - - - - Filter Frequency: - Frekvence filtru: - - - - FREQ - FREKV - - - - Filter Resonance: - Rezonance filtru: - - - - RES - REZ - - - - Bandwidth: - Šířka pásma: - - - - BW - ŠP - - - - FM Gain: - Zesílení FM: - - - - FM GAIN - ZISK FM - - - - Resonance center frequency: - Střední frekvence rezonance: - - - - RES CF - SF REZ - - - - Resonance bandwidth: - Šířka pásma rezonance: - - - - RES BW - ŠP REZ - - - - Forward MIDI Control Changes - Odesílat 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. - - - - 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 - - - Samplelength - Délka samplu - - - - bitInvaderView - - - Sample Length - Délka samplu - - - - Draw your own waveform here by dragging your mouse on this graph. - Kreslení vlastní křivky tahem myši na tomto grafu. - - - - Sine wave - Sinusová vlna - - - - 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 - Bílý šum - - - - Click here for white-noise. - Klepněte sem pro bílý šum. - - - - User defined wave - Vlna definovaná uživatelem - - - - 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 - - - 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Í - - - - Peak release time: - Délka uvolnění špičky: - - - - Reset waveform - Obnovení vlny - - - - 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 waveform - Vyhlazení vlny - - - - Click here to apply smoothing to wavegraph - Klepněte sem pro vyhlazení křivky - - - - Increase wavegraph amplitude by 1dB - 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 - 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 - - - - 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 - - - - 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 - - - - Process each stereo channel independently - Zpracování každého stereo kanálu zvlášť - - - - dynProcControls - - - Input gain - Zesílení vstupu - - - - Output gain - Zesílení výstupu - - - - Attack time - Doba náběhu - - - - Release time - Délka doznění - - - - Stereo mode - Režim sterea - - - - fxLineLcdSpinBox - - - Assign to: - Přiřadit k: - - - - New FX Channel - Nový efektový kanál - - - - graphModel - - - Graph - Graf - - - - kickerInstrument - - - Start frequency - Počáteční frekvence - - - - End frequency - Konečná frekvence - - - - Length - Délka - - - - Distortion Start - Začátek zkreslení - - - - Distortion End - Konec zkreslení - - - - Gain - Zisk - - - - Envelope Slope - Sklon frekvence - - - - Noise - Šum - - - - Click - Klik - - - - Frequency Slope - Sklon frekvence - - - - Start from note - Začít od noty - - - - End to note - Skončit na notě - - - - kickerInstrumentView - - - Start frequency: - Počáteční frekvence: - - - - End frequency: - Konečná frekvence: - - - - Frequency Slope: - Sklon frekvence: - - - - Gain: - Zisk: - - - - Envelope Length: - Délka obálky: - - - - Envelope Slope: - Sklon obálky: - - - - Click: - Klik: - - - - Noise: - Šum: - - - - Distortion Start: - Začátek zkreslení: - - - - Distortion End: - Konec zkreslení: - - - - ladspaBrowserView - - - - Available Effects - Dostupné efekty - - - - - Unavailable Effects - Nedostupné efekty - - - - - Instruments - Nástroje - - - - - Analysis Tools - Analyzační nástroje - - - - - Don't know - Neznámé - - - - 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 - - - Plugins - Pluginy - - - - Description - Popis - - - - ladspaPortDialog - - - Ports - Porty - - - - Name - Název - - - - Rate - Druh - - - - Direction - Směr - - - - Type - Typ - - - - Min < Default < Max - Min < Výchozí < Max - - - - Logarithmic - Logaritmický - - - - SR Dependent - SR závislý - - - - Audio - Zvuk - - - - Control - Ovládání - - - - Input - Vstup - - - - Output - Výstup - - - - Toggled - Zapnuto - - - - Integer - Celočíselný - - - - Float - S plovoucí čárkou - - - - - Yes - Ano - - - - lb302Synth - - - VCF Cutoff Frequency - VCF frekvence vypnutí - - - - VCF Resonance - VCF rezonance - - - - VCF Envelope Mod - VCF modulace obálky - - - - VCF Envelope Decay - VCF útlum obálky - - - - Distortion - Zkreslení - - - - Waveform - Vlna - - - - Slide Decay - Útlum sklouznutí - - - - Slide - Sklouznutí - - - - Accent - Důraz - - - - Dead - Dead - - - - 24dB/oct Filter - Filtr 24dB/okt - - - - lb302SynthView - - - Cutoff Freq: - Frekvence odstřihnutí: - - - - Resonance: - Rezonance: - - - - Env Mod: - Modulace obálky: - - - - Decay: - Útlum: - - - - 303-es-que, 24dB/octave, 3 pole filter - 3pólový filtr 303-es-que, 24dB/okt - - - - Slide Decay: - Útlum sklouznutí: - - - - DIST: - Zkreslení: - - - - Saw wave - Pilovitá vlna - - - - Click here for a saw-wave. - Klepněte sem pro pilovitou vlnu. - - - - Triangle wave - Trojúhelníková vlna - - - - Click here for a triangle-wave. - Klepněte sem pro trojúhelníkovou vlnu. - - - - Square wave - Pravoúhlá vlna - - - - Click here for a square-wave. - Klepněte sem pro pravoúhlou vlnu. - - - - Rounded square wave - Oblá pravoúhlá vlna - - - - Click here for a square-wave with a rounded end. - Klepněte sem pro pravoúhlou vlnu s oblým zakončením. - - - - Moog wave - Vlna typu Moog - - - - Click here for a moog-like wave. - Klepněte sem pro vlnu typu Moog. - - - - Sine wave - Sinusová vlna - - - - Click for a sine-wave. - Klepněte sem pro sinusovou vlnu. - - - - - White noise wave - Bílý šum - - - - Click here for an exponential wave. - Klepněte sem pro exponenciální vlnu. - - - - Click here for white-noise. - Klepněte sem pro bílý šum. - - - - Bandlimited saw wave - Pásmově omezená pilovitá vlna - - - - Click here for bandlimited saw wave. - Klepněte sem pro pásmově omezenou pilovitou vlnu. - - - - Bandlimited square wave - Pásmově zúžená pravoúhlá vlna - - - - Click here for bandlimited square wave. - Klepněte sem pro pásmově zúženou pravoúhlou vlnu. - - - - Bandlimited triangle wave - Pásmově zúžená trojúhelníková vlna - - - - Click here for bandlimited triangle wave. - Klepněte sem pro pásmově zúženou trojúhelníkovou vlnu. - - - - Bandlimited moog saw wave - Pásmově zúžená pilovitá vlna typu Moog - - - - Click here for bandlimited moog saw wave. - Klepněte sem pro úzkopásmovou pilovitou vlnu typu Moog. - - - - malletsInstrument - - - Hardness - Tvrdost - - - - Position - Pozice - - - - Vibrato Gain - Zisk vibráta - - - - Vibrato Freq - Frekvence vibráta - - - - Stick Mix - Mix paliček - - - - Modulator - Modulátor - - - - Crossfade - Prolínání (crossfade) - - - - LFO Speed - LFO Rychlost - - - - LFO Depth - LFO Hloubka - - - - ADSR - ADSR - - - - Pressure - Tlak - - - - Motion - Pohyb - - - - Speed - Rychlost - - - - Bowed - Smyčcem - - - - Spread - Šíře - - - - Marimba - Marimba - - - - Vibraphone - Vibrafon - - - - Agogo - Agogo - - - - Wood1 - Dřevo1 - - - - Reso - Rezo - - - - Wood2 - Dřevo2 - - - - Beats - Údery - - - - Two Fixed - Dvě spojené - - - - Clump - Svazek - - - - Tubular Bells - Trubicové zvony - - - - Uniform Bar - Obyčejná tyč - - - - Tuned Bar - Laděná tyč - - - - Glass - Sklo - - - - Tibetan Bowl - Tibetská zpívající mísa - - - - malletsInstrumentView - - - Instrument - Nástroj - - - - Spread - Šíře - - - - Spread: - Šíře: - - - - Missing files - Chybějící soubory - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Zdá se, že instalace Stk není kompletní. Ujistěte se prosím, že je nainstalován celý balík Stk! - - - - Hardness - Tvrdost - - - - Hardness: - Tvrdost: - - - - Position - Pozice - - - - Position: - Pozice: - - - - Vib Gain - Vib zisk - - - - Vib Gain: - Vib zisk: - - - - Vib Freq - Vib frekv - - - - Vib Freq: - Vib frekv: - - - - Stick Mix - Mix paliček - - - - Stick Mix: - Mix paliček: - - - - Modulator - Modulátor - - - - Modulator: - Modulátor: - - - - Crossfade - Prolínání (crossfade) - - - - Crossfade: - Prolínání (crossfade): - - - - LFO Speed - LFO Rychlost - - - - LFO Speed: - LFO Rychlost: - - - - LFO Depth - LFO Hloubka - - - - LFO Depth: - LFO Hloubka: - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Tlak - - - - Pressure: - Tlak: - - - - Speed - Rychlost - - - - Speed: - Rychlost: - - - - manageVSTEffectView - - - - VST parameter control - - řízení parametrů VST - - - - 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 - - - - - 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 - - - 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 - - - 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 - - - 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 - - + 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 - - 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) - + + 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 + + + + + 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. - - Graphical spectrum analyzer plugin - Plugin pro grafickou analýzu spektra + + A graphical spectrum analyzer. + Grafický analyzátor spektra - + Plugin for enhancing stereo separation of a stereo input file Plugin pro zlepšení stereo separace vstupních stereo souborů - + Plugin for freely manipulating stereo output Plugin pro volné úpravy stereo výstupu - + Tuneful things to bang on Melodické bicí nástroje - + Three powerful oscillators you can modulate in several ways 3 silné oscilátory, které můžete různými způsoby modulovat - + + A stereo field visualizer. + Vizualizér stereofonního pole. + + + VST-host for using VST(i)-plugins within LMMS VST host pro užití VST(i) pluginů v LMMS - + Vibrating string modeler Vibrační modelátor strun - + plugin for using arbitrary VST effects inside LMMS. Plugin pro použití libovolného VST efektu v LMMS. - + 4-oscillator modulatable wavetable synth 4oscilátorový modulovatelný tabulkový syntezátor - + plugin for waveshaping plugin pro tvarování vln - + + Mathematical expression parser + Parser matematických výrazů + + + Embedded ZynAddSubFX Vestavěný ZynAddSubFX - Mathematical expression parser - Parser matematických výrazů + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + - sf2Instrument + PluginEdit - - Bank - Banka + + Plugin Editor + - - Patch - Patch + + Edit + - - Gain - Zisk + + Control + Ovládání - - Reverb - Dozvuk + + MIDI Control Channel: + - - Reverb Roomsize - Velikost dozvukového prostoru + + N + - - Reverb Damping - Útlum dozvuku + + Output dry/wet (100%) + - - Reverb Width - Délka dozvuku + + Output volume (100%) + - - Reverb Level - Úroveň dozvuku + + Balance Left (0%) + - - Chorus - Chorus + + + Balance Right (0%) + - - Chorus Lines - Počet linií chorusu + + Use Balance + - - Chorus Level - Úroveň chorusu + + Use Panning + - - Chorus Speed - Rychlost chorusu + + Settings + Nastavení - - Chorus Depth - Hloubka chorusu + + Use Chunks + - - A soundfont %1 could not be loaded. - Soundfont %1 nelze načíst. + + Audio: + + + + + Fixed-Size Buffer + + + + + Force Stereo (needs reload) + + + + + MIDI: + + + + + Map Program Changes + + + + + Send Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + + + + + Save State + + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + Typ: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + - sf2InstrumentView + PluginFactory - - Open other SoundFont file - Otevřít jiný SoundFont soubor + + Plugin not found. + Plugin nebyl nalezen. - - 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) + + LMMS plugin %1 does not have a plugin descriptor named %2! + U LMMS pluginu %1 chybí popisovač pluginu s názvem %2! - sfxrInstrument + PluginListDialog - - Wave Form - Vlna + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + - sidInstrument + PluginParameter - - Cutoff - Oříznutí + + Form + - - Resonance - Rezonance + + Parameter Name + - - Filter type - Typ filtru + + TextLabel + - - Voice 3 off - Vypnout hlas 3 - - - - Volume - Hlasitost - - - - Chip model - Model čipu + + ... + - sidInstrumentView + PluginRefreshDialog - - Volume: - Hlasitost: + + Plugin Refresh + - - Resonance: - Rezonance: + + Search for: + - - - Cutoff frequency: - Frekvence oříznutí: + + All plugins, ignoring cache + - - High-Pass filter - Filtr typu horní propust + + Updated plugins only + - - Band-Pass filter - Filtr typu pásmová propust + + Check previously invalid plugins + - - Low-Pass filter - Filtr typu dolní propust + + Press 'Scan' to begin the search + - - Voice3 Off - Vypnout hlas 3 + + Scan + - - MOS6581 SID - MOS6581 SID + + >> Skip + - - 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. + + Close + - stereoEnhancerControlDialog + PluginWidget - - WIDE - ŠÍŘKA + + + + + + Frame + - - Width: - Šířka: + + Enable + + + + + On/Off + Zap/Vyp + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + - stereoEnhancerControls + ProjectRenderer - - Width - Šířka + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) - stereoMatrixControlDialog + QGroupBox - - 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: + + + Settings for %1 + - stereoMatrixControls + QObject - - Left to Left - Levý do levého + + Reload Plugin + Restartuj plugin - - Left to Right - Levý do pravého + + Show GUI + Ukázat grafické rozhraní - - Right to Left - Pravý do levého + + Help + Nápověda - - Right to Right - Pravý do pravého + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + - vestigeInstrument + QWidget - - Loading plugin - Načítám plugin + + + Name: + Název: - - Please wait while loading VST-plugin... - Počkejte prosím, než se načte VST plugin... + + Maker: + Tvůrce: + + + + Copyright: + Autorská práva: + + + + Requires Real Time: + Vyžaduje běh v reálném čase: + + + + + + Yes + Ano + + + + + + No + Ne + + + + Real Time Capable: + Schopnost běhu v reálném čase: + + + + In Place Broken: + Na místě poškozeného: + + + + Channels In: + Vstupní kanály: + + + + Channels Out: + Výstupní kanály: + + + + File: %1 + Soubor: %1 + + + + File: + Soubor: - vibed + XYControllerW - - String %1 volume - Hlasitost struny %1 + + XY Controller + - - String %1 stiffness - Tvrdost struny %1 + + X Controls: + - - Pick %1 position - Místo drnknutí %1 + + Y Controls: + - - Pickup %1 position - Umístění snímače %1 - - - - Pan %1 - Pan %1 - - - - Detune %1 - Rozladění %1 - - - - Fuzziness %1 - Roztřepení %1 - - - - Length %1 - Délka %1 - - - - Impulse %1 - Impulz %1 - - - - Octave %1 - Oktáva %1 - - - - vibedView - - - Volume: - Hlasitost: - - - - 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. - - - - Pan: - Panoráma: - - - - 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. - - - - Detune: - Rozladění: - - - - 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. - - - - 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. - - - - 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 - Bílý šum - - - - Use white-noise for current oscillator. - Použít bílý šum pro aktuální oscilátor. - - - - User defined wave - Vlna definovaná uživatelem - - - - 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. + + &Settings + - + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + + + + + lmms::AudioFileProcessor + + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + JACK klient restartován + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS bylo z nějakého důvodu odpojeno od JACKu. Ovladač JACK rozhraní v LMMS byl proto restartován. Budete muset znovu provést ruční připojení. + + + + JACK server down + JACK server byl zastaven + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + JACK server byl zřejmě zastaven, a jeho opětovné spuštění se nezdařilo. LMMS proto nemůže pokračovat. Uložte svůj projekt a restartujte JACK i LMMS. + + + + Client name + Název klienta + + + + Channels + Kanály + + + + lmms::AudioOss + + + Device + Zařízení + + + + Channels + Kanály + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Backend + + + + Device + Zařízení + + + + lmms::AudioPulseAudio + + + Device + Zařízení + + + + Channels + Kanály + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + Zařízení + + + + Channels + Kanály + + + + lmms::AudioSoundIo::setupWidget + + + Backend + Backend + + + + Device + Zařízení + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + Normalize - Normalizovat - - - - Click here to normalize waveform. - Klepněte sem pro normalizaci vlny. + - voiceObject + lmms::BitcrushControls - - Voice %1 pulse width - Hlas %1 šířka pulzu - - - - Voice %1 attack - Hlas %1 náběh - - - - Voice %1 decay - Hlas %1 útlum - - - - Voice %1 sustain - Hlas %1 vydržení - - - - Voice %1 release - Hlas %1 uvolně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 - - - INPUT - VSTUP - - - - Input gain: - Zesílení vstupu: - - - - OUTPUT - VÝSTUP - - - - Output gain: - Zesílení výstupu: - - - - Reset waveform - Obnovení vlny - - - - 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 waveform - Vyhlazení vlny - - - - Click here to apply smoothing to wavegraph - Klepněte sem pro vyhlazení křivky - - - - 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 - - - - waveShaperControls - - + Input gain - Zesílení vstupu + - + + Input noise + + + + Output gain - Zesílení výstupu + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + - + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/de.ts b/data/locale/de.ts index d3957edf3..4736ea797 100644 --- a/data/locale/de.ts +++ b/data/locale/de.ts @@ -1,10319 +1,18755 @@ - + AboutDialog + About LMMS Über LMMS - Version %1 (%2/%3, Qt %4, %5) - Version %1 (%2/%3, Qt %4, %5) + + 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 - Musikproduktion für jedermann + + 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 - 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 - - + 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 + + + + AboutJuceDialog + + + About JUCE + + + + + <b>About JUCE</b> + + + + + This program uses JUCE version 3.x.x. + + + + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + + + + + This program uses JUCE version - AmplifierControlDialog + AudioDeviceSetupWidget - VOL - VOL - - - Volume: - Lautstärke: - - - PAN - PAN - - - Panning: - Balance: - - - LEFT - LINKS - - - Left gain: - Linke Verstärkung: - - - RIGHT - RECHTS - - - Right gain: - Rechte Verstärkung: - - - - AmplifierControls - - Volume - Lautstärke - - - Panning - Balance - - - Left gain - Linke Verstärkung - - - Right gain - Rechte Verstärkung - - - - AudioAlsaSetupWidget - - DEVICE - GERÄT - - - CHANNELS - KANÄLE - - - - AudioFileProcessorView - - Open 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. - - - 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. - - - 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. - - - 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. - - - 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. - - - 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: - - - - 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 - - - CHANNELS - KANÄLE - - - - AudioOss::setupWidget - - DEVICE - GERÄT - - - CHANNELS - KANÄLE - - - - AudioPortAudio::setupWidget - - BACKEND - BACKEND - - - DEVICE - GERÄT - - - - AudioPulseAudio::setupWidget - - DEVICE - GERÄT - - - CHANNELS - KANÄLE - - - - AudioSdl::setupWidget - - DEVICE - GERÄT - - - - AudioSndio::setupWidget - - DEVICE - GERÄT - - - CHANNELS - KANÄLE - - - - AudioSoundIo::setupWidget - - BACKEND - BACKEND - - - 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) - - - 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 - - - - AutomationEditor - - Please open an automation pattern 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) - 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) - 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 - - - Interpolation controls - Interpolations Regler - - - Timeline controls - Zeitlinien Regler - - - Zoom controls - Zoom Regler - - - 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. + + [System Default] - AutomationPattern + CarlaAboutW - Drag a control while pressing <%1> - Ein Steuerelement mit <%1> hier her ziehen - - - - AutomationPatternView - - 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. - Model ist bereits mit diesem Pattern verbunden. - - - - AutomationTrack - - Automation track - Automation-Spur - - - - BBEditor - - Beat+Bassline Editor - Zeige/verstecke 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 + + About Carla - Track and step actions + + About + Über + + + + About text here - Clone Steps - Schritte Klonen - - - Add sample-track - Sample Spur hinzufügen - - - - BBTCOView - - 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 - - Beat/Bassline %1 - Beat/Bassline %1 - - - Clone of %1 - Klon von %1 - - - - BassBoosterControlDialog - - FREQ - FREQ - - - Frequency: - Frequenz: - - - GAIN - GAIN - - - Gain: - Verstärkung: - - - RATIO - RATIO - - - Ratio: - Verhältnis: - - - - BassBoosterControls - - Frequency - Frequenz - - - Gain - Verstärkung - - - Ratio - Verhältnis - - - - BitcrushControlDialog - - IN - IN - - - OUT - OUT - - - GAIN - GAIN - - - Input Gain: - Eingangsverstärkung: - - - Input Noise: - Eingangsrauschen: - - - Output Gain: - Ausgabeverstärkung: - - - CLIP - CLIP - - - Output Clip: + + Extended licensing here - Rate Enabled + + Artwork - Enable samplerate-crushing + + Using KDE Oxygen icon set, designed by Oxygen Team. - Depth Enabled - Tiefe eingeschalten - - - Enable bitdepth-crushing + + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. - Sample rate: - Sample Rate: - - - Stereo difference: - Stereo Unterschied: - - - Levels: - Stärke: - - - NOISE - NOISE - - - FREQ - FREQ - - - STEREO + + VST is a trademark of Steinberg Media Technologies GmbH. - QUANT + + 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... + + + + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Datei + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help &Hilfe - Help (not available) - Hilfe (nicht verfügbar) - - - - CarlaInstrumentView - - Show GUI - GUI anzeigen - - - 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. - - - - Controller - - Controller %1 - Controller %1 - - - - ControllerConnectionDialog - - Connection Settings - Verbindungseinstellungen - - - MIDI CONTROLLER - MIDI CONTROLLER - - - Input channel - Eingangskanal - - - CHANNEL - KANAL - - - Input controller - Eingangscontroller - - - CONTROLLER - CONTROLLER - - - Auto Detect - Automatische Erkennung - - - MIDI-devices to receive MIDI-events from - MIDI-Geräte, von denen MIDI-Events empfangen werden sollen - - - USER CONTROLLER - BENUTZERDEFINIERTER CONTROLLER - - - MAPPING FUNCTION - ABBILDUNGS-FUNKTION - - - OK - OK - - - Cancel - Abbrechen - - - LMMS - LMMS - - - Cycle Detected. - Schleife erkannt. - - - - ControllerRackView - - Controller Rack - Controller-Einheit - - - Add - Hinzufügen - - - Confirm Delete - Löschen bestätigen - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - - - - - 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 - - - &Remove this controller - &Diesen Controller entfernen - - - Re&name this controller - Diesen Controller umbenennen - - - LFO - LFO - - - - CrossoverEQControlDialog - - Band 1/2 Crossover: + + Tool Bar - Band 2/3 Crossover: + + Disk - Band 3/4 Crossover: + + + Home + Home + + + + Transport - 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 - 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 - - - - DelayControls - - Delay Samples - Samples verzögern - - - Feedback - Rückkopplung - - - Lfo Frequency - LFO-Frequenz - - - Lfo Amount - LFO-Stärke - - - Output gain - Ausgabeverstärkung - - - - DelayControlsDialog - - Lfo Amt - LFO-Stärke - - - Delay Time - Verzögerungszeit - - - Feedback Amount - Rückkopplungsstärke - - - Lfo - LFO - - - Out Gain + + Playback Controls - Gain - Verstärkung - - - DELAY - DELAY - - - FDBK - FDBK - - - RATE - RATE - - - AMNT - AMNT - - - - 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 - - - - DualFilterControls - - Filter 1 enabled - Filter 1 aktiviert - - - Filter 1 type - Filtertyp 1 - - - Cutoff 1 frequency - Kennfrequenz 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 - - - Q/Resonance 2 - Q/Resonanz 2 - - - Gain 2 - Verstärkung 2 - - - LowPass - Tiefpass - - - HiPass - Hochpass - - - BandPass csg - Bandpass csg - - - BandPass czpg - Bandpass czpg - - - Notch - Notch - - - Allpass - Allpass - - - Moog - Moog - - - 2x LowPass - 2x Tiefpass - - - RC LowPass 12dB - RC-Tiefpass 12dB - - - RC BandPass 12dB - RC-Bandpass 12dB - - - RC HighPass 12dB - RC-Hochpass 12dB - - - RC LowPass 24dB - RC-Tiefpass 24dB - - - RC BandPass 24dB - RC-Bandpass 24dB - - - RC HighPass 24dB - RC-Hochpass 24dB - - - Vocal Formant Filter - Vokalformant-Filter - - - 2x Moog - 2x Moog - - - SV LowPass + + Time Information - SV BandPass + + Frame: - SV HighPass + + 000'000'000 - SV Notch - - - - Fast Formant - - - - Tripole - - - - - Editor - - Play (Space) - Abspielen (Leertaste) - - - Stop (Space) - Stoppen (Leertaste) - - - Record - Aufnahme - - - Record while playing - - - - Transport controls - - - - - Effect - - Effect enabled - Effekt eingeschaltet - - - Wet/Dry mix - Wet/Dry-Mix - - - Gate - Gate - - - Decay - Abfallzeit - - - - EffectChain - - Effects enabled - Effekte aktiviert - - - - EffectRackView - - EFFECTS CHAIN - EFFEKT-KETTE - - - Add effect - Effekt hinzufügen - - - - EffectSelectDialog - - Add effect - Effekt hinzufügen - - - Name - Name - - - Type - Typ - - - Description - Beschreibung - - - Author - Verfasser - - - - EffectView - - 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. + + 00:00:00 + - GATE - GATE + + BBT: + - Gate: - Gate: + + 000|00|0000 + - 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. + + Settings + Einstellungen - Controls - Regler + + BPM + - 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. + + Use JACK Transport + - Move &up - Nach &oben verschieben + + Use Ableton Link + - Move &down - Nach &unten verschieben + + &New + &Neu - &Remove this plugin - Plugin entfe&rnen + + Ctrl+N + + + + + &Open... + Ö&ffnen... + + + + + Open... + + + + + Ctrl+O + + + + + &Save + &Speichern + + + + Ctrl+S + + + + + Save &As... + Speichern &als... + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + &Beenden + + + + Ctrl+Q + + + + + &Start + + + + + F5 + + + + + St&op + + + + + F6 + + + + + &Add Plugin... + + + + + Ctrl+A + + + + + &Remove All + + + + + Enable + + + + + Disable + + + + + 0% Wet (Bypass) + + + + + 100% Wet + + + + + 0% Volume (Mute) + 0% Volumen (Mute) + + + + 100% Volume + 100% Volumen + + + + Center Balance + + + + + &Play + + + + + Ctrl+Shift+P + + + + + &Stop + + + + + Ctrl+Shift+X + + + + + &Backwards + + + + + Ctrl+Shift+B + + + + + &Forwards + + + + + Ctrl+Shift+F + + + + + &Arrange + + + + + Ctrl+G + + + + + + &Refresh + + + + + Ctrl+R + + + + + Save &Image... + + + + + Auto-Fit + + + + + Zoom In + + + + + Ctrl++ + + + + + Zoom Out + + + + + Ctrl+- + + + + + Zoom 100% + + + + + Ctrl+1 + + + + + Show &Toolbar + + + + + &Configure Carla + + + + + &About + + + + + About &JUCE + + + + + About &Qt + + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + Ctrl+P + + + + + &Connect... + + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + + + + + &Configure driver... + + + + + Panic + + + + + Open custom driver panel... + + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + - EnvelopeAndLfoParameters + CarlaHostWindow - Predelay - Verzögerung (predelay) + + Export as... + - Attack - Anschwellzeit (attack) + + + + + Error + Fehler - Hold - Haltezeit (hold) + + Failed to load project + - Decay - Abfallzeit + + Failed to save project + - Sustain - Haltepegel (sustain) + + Quit + - Release - Ausklingzeit (release) + + Are you sure you want to quit Carla? + - Modulation - Modulation + + Could not connect to Audio backend '%1', possible reasons: +%2 + Konnte nicht zum Audio backend verbinden '%1', mögliche Gründe: +%2 - LFO Predelay - LFO-Verzögerung + + Could not connect to Audio backend '%1' + Konnte nicht zum Audio backend verbinden '%1' - LFO Attack - LFO-Anschwellzeit (LFO-attack) + + Warning + - LFO speed - LFO-Geschwindigkeit - - - LFO Modulation - LFO Modulation - - - LFO Wave Shape - LFO-Wellenform - - - Freq x 100 - Freq x 100 - - - Modulate Env-Amount - Hüllkurve modulieren + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + - EnvelopeAndLfoView + CarlaSettingsW - DEL - DEL + + Settings + Einstellungen - Predelay: - Verzögerung (predelay): + + main + - 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. + + canvas + - ATT - ATT + + engine + - Attack: - Anschwellzeit (attack): + + osc + - 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. + + file-paths + - HOLD - HOLD + + plugin-paths + - Hold: - Haltezeit (hold): + + wine + - 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. + + experimental + - DEC - DEC + + Widget + - Decay: - Abfallzeit (decay): + + + Main + - 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. + + + Canvas + - SUST - SUST + + + Engine + - Sustain: - Dauerpegel (sustain): + + File Paths + - 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. + + Plugin Paths + - REL - REL + + Wine + - Release: - Ausklingzeit (release): + + + Experimental + - 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. + + <b>Main</b> + - AMT - AMT + + Paths + Pfade - Modulation amount: - Modulationsintensität: + + Default project folder: + - 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. + + Interface + - LFO predelay: - LFO-Verzögerung: + + Use "Classic" as default rack skin + - 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. + + Interface refresh interval: + - LFO- attack: - LFO-Anschwellzeit (LFO-attack): + + + ms + - 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. + + Show console output in Logs tab (needs engine restart) + - SPD - SPD + + Show a confirmation dialog before quitting + - LFO speed: - LFO-Geschwindigkeit: + + + Theme + - 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 Carla "PRO" theme (needs restart) + - 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. + + Color scheme: + - Click here for a sine-wave. - Klick für eine Sinuswelle. + + Black + - Click here for a triangle-wave. - Klick für eine Dreieckwelle. + + System + - Click here for a saw-wave for current. - Klick für eine Sägezahnwelle. + + Enable experimental features + - Click here for a square-wave. - Klick für eine Rechteckwelle. + + <b>Canvas</b> + - 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. + + Bezier Lines + - FREQ x 100 - FREQ x 100 + + Theme: + - 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. + + Size: + Größe: - multiply LFO-frequency by 100 - LFO-Frequenz mit 100 multiplizieren + + 775x600 + - MODULATE ENV-AMOUNT - HÜLLK. MODULIEREN + + 1550x1200 + - 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. + + 3100x2400 + - control envelope-amount by this LFO - Hüllkurvenintensität durch diesen LFO kontrollieren + + 4650x3600 + - ms/LFO: - ms/LFO: + + 6200x4800 + - Hint - Tipp + + 12400x9600 + - Drag a sample from somewhere and drop it in this window. - Ziehen Sie ein Sample von irgendwo und lassen es in diesem Fenster fallen. + + Options + - Click here for random wave. - Klick für eine zufällige Welle. + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + + + + + Anti-Aliasing + + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + + + + + + Core + + + + + Single Client + + + + + Multiple Clients + + + + + + Continuous Rack + + + + + + Patchbay + + + + + Audio driver: + + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + + + + + Reset Xrun counter after project load + + + + + Plugin UIs + + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + + + + + <b>OSC</b> + + + + + Enable OSC + + + + + Enable TCP port + + + + + + Use specific port: + + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + + + + + Audio + Audio + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + + + + + + Remove + + + + + + Change... + + + + + <b>Plugin Paths</b> + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + SF2/3 + + + + + SFZ + + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + + + + + <b>Wine</b> + + + + + Executable + + + + + Path to 'wine' binary: + + + + + Prefix + + + + + Auto-detect Wine prefix based on plugin filename + + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + + + + + High Quality Anti-Aliasing (OpenGL only) + + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + + + + + Force mono plugins as stereo + + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path + - EqControls + Dialog - Input gain - Eingangsverstärkung - - - Output gain - Ausgabeverstärkung - - - Low shelf gain + + Carla Control - Connect - 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 + + Remote setup - HP res - HP res - - - Low Shelf res + + UDP Port: - 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 + + Remote host: - LP res - LP res - - - HP freq + + TCP Port: - Low Shelf freq + + Set value + Wert setzen + + + + TextLabel - Peak 1 freq + + Scale Points - - Peak 2 freq - - - - Peak 3 freq - - - - Peak 4 freq - - - - High shelf freq - - - - LP freq - - - - HP active - - - - Low shelf active - - - - Peak 1 active - Peak 1 Aktiv - - - Peak 2 active - Peak 2 Aktive - - - Peak 3 active - Peak 3 Aktive - - - Peak 4 active - Peak 4 Aktive - - - High shelf active - - - - LP active - LP aktiv - - - LP 12 - LP 12 - - - LP 24 - LP 24 - - - LP 48 - LP 48 - - - HP 12 - HP 12 - - - HP 24 - HP 24 - - - HP 48 - HP 48 - - - low pass type - Tiefpass Art - - - high pass type - Hochpass Art - - - Analyse IN - Analyse IN - - - Analyse OUT - Analyse OUT - - EqControlsDialog + DriverSettingsW - HP - HP - - - Low Shelf + + Driver Settings - Peak 1 - Peak 1 - - - Peak 2 - Peak 2 - - - Peak 3 - Peak 3 - - - Peak 4 - Peak 4 - - - High Shelf + + Device: - LP - LP - - - In Gain + + Buffer size: - Gain - Verstärkung + + Sample rate: + Sample Rate: - Out Gain + + Triple buffer - Bandwidth: - Bandbreite: - - - Resonance : - Resonanz: - - - Frequency: - Frequenz: - - - lp grp + + Show Driver Control Panel - hp grp + + Restart the engine to load the new settings - - Octave - Octave - - - - EqHandle - - Reso: - Reso: - - - BW: - - - - Freq: - Freq: - 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 - + + Start + Start - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - - - - - Fader - - Please enter a new value between %1 and %2: - Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: - - - - FileBrowser - - Browser - Browser - - - Search - - - - Refresh list - - - - - 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 - - - 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 - - - - file - Datei - - - - FlangerControls - - Delay Samples - Samples verzögern - - - Lfo Frequency - LFO-Frequenz - - - Seconds - Sekunde - - - Regen - - - - Noise - Rauschen - - - Invert - Invertieren - - - - FlangerControlsDialog - - Delay Time: - Verzögerungszeit: - - - Feedback Amount: - Rückkopplungsstärke: - - - White Noise Amount: - Weißes Rauschen Stärke: - - - DELAY - DELAY - - - RATE - RATE - - - AMNT - AMNT - - - Amount: - Menge: - - - FDBK - FDBK - - - NOISE - NOISE - - - Invert - Invertieren - - - Period: - - - - - FxLine - - 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 - - - FX %1 - FX %1 - - - 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 - - - - - FxRoute - - Amount to send from channel %1 to channel %2 - Anteil, der von Kanal %1 zu Kanal %2 gesendet werden soll - - - - GigInstrument - - Bank - Bank - - - Patch - Patch - - - Gain - Verstärkung - - - - GigInstrumentView - - Open other GIG file - - - - Click here to open another GIG file - - - - Choose the 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 - - - - 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 - - - Arpeggio type - Arpeggiotyp - - - Arpeggio range - Arpeggio-Bereich - - - 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 - - - Random - Zufällig - - - Free - Frei - - - Sort - Sortiert - - - Sync - Synchron - - - Down and up - Hoch und runter - - - Skip rate - - - - Miss rate - - - - Cycle steps - - - - - 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: - - - - 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. - - - - 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. - + + Cancel + Abbrechen 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 - - 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: - - - - InstrumentMidiIOView - - ENABLE MIDI INPUT - MIDI-EINGANG AKTIVIEREN - - - CHANNEL - KANAL - - - VELOCITY - LAUTSTÄRKE - - - ENABLE MIDI OUTPUT - MIDI-AUSGANG AKTIVIEREN - - - PROGRAM - PROGRAMM - - - 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 - - - BASE VELOCITY - GRUNDLAUTSTÄRKE - - - - InstrumentMiscView - - MASTER PITCH - - - - Enables the use of Master Pitch - - - InstrumentSoundShaping + VOLUME LAUTSTÄRKE + Volume Lautstärke + CUTOFF KENNFREQ + Cutoff frequency Kennfrequenz + RESO RESO + Resonance Resonanz + + + JackAppDialog - Envelopes/LFOs - Hüllkurven/LFOs - - - Filter type - Filtertyp - - - Q/Resonance - Q/Resonanz - - - LowPass - Tiefpass - - - HiPass - Hochpass - - - BandPass csg - Bandpass csg - - - BandPass czpg - Bandpass czpg - - - Notch - Notch - - - Allpass - Allpass - - - Moog - Moog - - - 2x LowPass - 2x Tiefpass - - - RC LowPass 12dB - RC-Tiefpass 12dB - - - RC BandPass 12dB - RC-Bandpass 12dB - - - RC HighPass 12dB - RC-Hochpass 12dB - - - RC LowPass 24dB - RC-Tiefpass 24dB - - - RC BandPass 24dB - RC-Bandpass 24dB - - - RC HighPass 24dB - RC-Hochpass 24dB - - - Vocal Formant Filter - Vokalformant-Filter - - - 2x Moog - 2x Moog - - - SV LowPass + + Add JACK Application - SV BandPass + + Note: Features not implemented yet are greyed out - SV HighPass + + Application - SV Notch + + Name: - Fast Formant + + Application: - Tripole + + From template + + + + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used - InstrumentSoundShapingView + JuceAboutW - 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: - Kennfrequenz: - - - Envelopes, LFOs and filters are not supported by the current instrument. - Hüllkurven, LFOs und Filter sind vom aktuellen Instrument nicht unterstützt. - - - - InstrumentTrack - - unnamed_track - Unbenannter_Kanal - - - 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 - - - Pitch range - Tonhöhenbereich - - - Master Pitch + + This program uses JUCE version %1. - InstrumentTrackView + MidiPatternW - Volume - Lautstärke - - - Volume: - Lautstärke: - - - VOL - VOL - - - Panning - Balance - - - Panning: - Balance: - - - PAN - PAN - - - MIDI - MIDI - - - Input - Eingang - - - Output - Ausgang - - - FX %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - GENERAL SETTINGS - GRUNDLEGENDE EINSTELLUNGEN - - - Instrument volume - Instrument-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 - - - 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. + + MIDI Pattern - SAVE - SPEICHERN - - - Envelope, filter & LFO + + Time Signature: - Chord stacking & arpeggio + + + + 1/4 - Effects + + 2/4 - MIDI settings - MIDI-Einstellungen - - - Miscellaneous + + 3/4 - Plugin - - - - - 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: - - - 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: - - - - LadspaControl - - Link channels - Kanäle verbinden - - - - LadspaControlDialog - - Link Channels - Kanäle verbinden - - - Channel - Kanal - - - - 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. - - - - LcdSpinBox - - Please enter a new value between %1 and %2: - Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: - - - - LeftRightNav - - Previous - Vorheriges - - - Next - Nächstes - - - Previous (%1) - Vorheriges (%1) - - - Next (%1) - Nächstes (%1) - - - - LfoController - - LFO Controller - LFO-Controller - - - Base value - Grundwert - - - Oscillator speed - Oszillator-Geschwindigkeit - - - Oscillator amount - Oszillator-Stärke - - - Oscillator phase - Oszillator-Phase - - - Oscillator waveform - Oszillator-Wellenform - - - Frequency Multiplier - Frequenzmultiplikator - - - - LfoControllerDialog - - LFO - LFO - - - LFO Controller - LFO-Controller - - - BASE - BASE - - - Base amount: - Grundstärke: - - - todo - Zu erledigen - - - SPD - SPD - - - 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. - - - 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 - 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. - - - 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. - Klick für eine Sägezahnwelle. - - - Click here for a square-wave. - Klick für eine Rechteckwelle. - - - Click here for an exponential wave. - Klick für eine exponentielle Welle. - - - Click here for white-noise. - Klick für weißes Rauschen. - - - Click here for a 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. - - - AMNT - AMNT - - - - LmmsCore - - Generating wavetables + + 4/4 - Initializing data structures + + 5/4 - Opening audio and midi devices + + 6/4 - Launching mixer threads + + Measures: - - - MainWindow - &New - &Neu + + + + 1 + - &Open... - Ö&ffnen... + + 2 + - &Save - &Speichern + + 3 + - Save &As... - Speichern &als... + + 4 + - Import... - Importieren... + + 5 + 5 - E&xport... - E&xportieren... + + 6 + 6 - &Quit - &Beenden + + 7 + 7 - &Edit - &Bearbeiten + + 8 + - Settings - Einstellungen + + 9 + 9 - &Tools - &Werkzeuge + + 10 + - &Help - &Hilfe + + 11 + 11 - Help - Hilfe + + 12 + - What's this? - Was ist das? + + 13 + 13 - About - Über + + 14 + - Create new project - Neues Projekt erstellen + + 15 + - Create new project from template - Neues Projekt aus Vorlage erstellen + + 16 + - Open existing project - Existierendes Projekt öffnen + + Default Length: + - Recently opened projects - Zuletzt geöffnete Projekte + + + 1/16 + - Save current project - Aktuelles Projekt speichern + + + 1/15 + - Export current project - Aktuelles Projekt exportieren + + + 1/12 + - Song Editor - Zeige/verstecke Song-Editor + + + 1/9 + - 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. + + + 1/8 + - Beat+Bassline Editor - Zeige/verstecke Beat+Bassline Editor + + + 1/6 + - 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. + + + 1/3 + - Piano Roll - Zeige/verstecke Piano-Roll + + + 1/2 + - 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. - - - FX Mixer - Zeige/verstecke 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. - 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 - - - Untitled - Unbenannt - - - LMMS %1 - LMMS %1 - - - 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? - - - 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) - - - Version %1 - Version %1 - - - 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 + + Quantize: + + &File &Datei - &Recently Opened Projects - &Zuletzt geöffnete Projekte + + &Edit + &Bearbeiten - Save as New &Version - Speichern als neue &Version + + &Quit + &Beenden - 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? + + Esc - Recover - Wiederherstellen - - - Recover the file. Please don't run multiple instances of LMMS when you do this. + + &Insert Mode - Discard - Verwerfen - - - Launch a default session and delete the restored files. This is not reversible. + + F - Preparing plugin browser - Plugin Browser vorbereiten - - - Preparing file browsers - Dateimanager vorbereiten - - - Root directory - Grundverzeichnis - - - Loading background artwork + + &Velocity Mode - 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? + + D - LMMS Project - LMMS Projekt - - - LMMS Project Template - LMMS Projektvorlage - - - Overwrite default template? - Standard Vorlage überschreiben? - - - This will overwrite your current default template. + + Select All - Smooth scroll + + A - - Enable note labels in piano roll - Notenbeschriftung in Piano-Roll aktivieren - - - Save project template - - - - Volume as dBFS - - - - 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! - - - - Export &MIDI... - - - - - MeterDialog - - Meter Numerator - Takt/Zähler - - - Meter Denominator - Takt/Nenner - - - TIME SIG - TAKTART - - - - MeterModel - - Numerator - Zähler - - - Denominator - Nenner - - - - MidiController - - MIDI Controller - MIDI-Controller - - - unnamed_midi_controller - unbenannter_midi_controller - - - - 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 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 - - - - - 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) - - - - - 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 - - - Base velocity - Grundlautstärke - - - - MidiSetupWidget - - DEVICE - GERÄT - - - - MonstroInstrument - - Osc 1 Volume - Oszillator 1 Lautstärke - - - Osc 1 Panning - Oszillator 1 Balance - - - Osc 1 Coarse detune - Oszillator 1 Grob-Verstimmung - - - Osc 1 Fine detune left - Oszillator 1 Fein-Verstimmung links - - - Osc 1 Fine detune right - Oszillator 1 Fein-Verstimmung rechts - - - Osc 1 Stereo phase offset - Oszillator 1 Stereo Phasenverschiebung - - - Osc 1 Pulse width - Oszillator 1 Pulsweite - - - Osc 1 Sync send on rise - Oszillator 1 Sync beim Steigen senden - - - Osc 1 Sync send on fall - Oszillator 2 Sync beim Abfallen senden - - - Osc 2 Volume - Oszillator 2 Lautstärke - - - Osc 2 Panning - Oszillator 2 Balance - - - Osc 2 Coarse detune - Oszillator 2 Grob-Verstimmung - - - Osc 2 Fine detune left - Oszillator 2 Fein-Verstimmung links - - - Osc 2 Fine detune right - Oszillator 2 Fein-Verstimmung rechts - - - Osc 2 Stereo phase offset - Oszillator 2 Stereo Phasenverschiebung - - - Osc 2 Waveform - Oszillator 2 Wellenform - - - Osc 2 Sync Hard - Oszillator 2 hart synchronisieren - - - Osc 2 Sync Reverse - Oszillator 2 rückwärts synchronisieren - - - Osc 3 Volume - Oszillator 3 Lautstärke - - - Osc 3 Panning - Oszillator 3 Balance - - - Osc 3 Coarse detune - Oszillator 3 Grob-Verstimmung - - - Osc 3 Stereo phase offset - Oszillator 3 Stereo Phasenverschiebung - - - Osc 3 Sub-oscillator mix - Oszillator 3 Unter-Oszillator Mischung - - - Osc 3 Waveform 1 - Oszillator 3 Wellenform 1 - - - Osc 3 Waveform 2 - Oszillator 3 Wellenform 2 - - - Osc 3 Sync Hard - Oszillator 2 hart synchronisieren - - - Osc 3 Sync Reverse - Oszillator 2 rückwärts synchronisieren - - - LFO 1 Waveform - LFO 1 Wellenform - - - LFO 1 Attack - LFO 1 Anschwellzeit - - - LFO 1 Rate - LFO 1 Rate - - - LFO 1 Phase - LFO 1 Phase - - - LFO 2 Waveform - LFO 2 Wellenform - - - LFO 2 Attack - LFO 2 Anschwellzeit - - - LFO 2 Rate - LFO 2 Rate - - - LFO 2 Phase - Hüllkurve 2 Phase - - - Env 1 Pre-delay - Hüllkurve 1 Verzögerung - - - Env 1 Attack - Hüllkurve 1 Anschwellzeit - - - Env 1 Hold - Hüllkurve 1 Haltezeit - - - Env 1 Decay - Hüllkurve 1 Abfallzeit - - - Env 1 Sustain - Hüllkurve 1 Dauerpegel - - - Env 1 Release - Hüllkurve 1 Ausklingzeit - - - Env 1 Slope - Hüllkurve 1 Neigung - - - Env 2 Pre-delay - Hüllkurve 2 Verzögerung - - - Env 2 Attack - Hüllkurve 2 Anschwellzeit - - - Env 2 Hold - Hüllkurve 2 Haltezeit - - - Env 2 Decay - Hüllkurve 2 Abfallzeit - - - Env 2 Sustain - Hüllkurve 2 Dauerpegel - - - Env 2 Release - Hüllkurve 2 Ausklingzeit - - - Env 2 Slope - Hüllkurve 2 Neigung - - - Osc2-3 modulation - Oszillator2-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 - - - - Phs3-LFO1 - Phs3-LFO1 - - - Phs3-LFO2 - Phs3-LFO2 - - - Pit1-Env1 - Pit1-Env1 - - - Pit1-Env2 - Pit1-Env2 - - - Pit1-LFO1 - Pit1-LFO1 - - - Pit1-LFO2 - Pit1-LFO2 - - - Pit2-Env1 - Pit2-Env1 - - - Pit2-Env2 - Pit2-Env2 - - - Pit2-LFO1 - Pit2-LFO1 - - - Pit2-LFO2 - Pit2-LFO2 - - - Pit3-Env1 - Pit3-Env1 - - - Pit3-Env2 - Pit3-Env2 - - - Pit3-LFO1 - Pit3-LFO1 - - - Pit3-LFO2 - Pit3-LFO2 - - - PW1-Env1 - PW1-Env1 - - - PW1-Env2 - PW1-Env2 - - - PW1-LFO1 - PW1-LFO1 - - - PW1-LFO2 - PW1-LFO2 - - - Sub3-Env1 - Sub3-Env1 - - - Sub3-Env2 - Sub3-Env2 - - - Sub3-LFO1 - Sub3-LFO1 - - - Sub3-LFO2 - Sub3-LFO2 - - - Sine wave - Sinuswelle - - - Bandlimited Triangle wave - Bandlimitierte Dreieckwelle - - - Bandlimited Saw wave - Bandbegrenzte Sägezahnwelle - - - Bandlimited Ramp wave - Bandbegrenzte Sägezahnwelle - - - Bandlimited Square wave - Bandbegrenzte Rechteckwelle - - - Bandlimited Moog saw wave - Bandbegrenzte Moog-Sägezahnwelle - - - Soft square wave - Weiche Rechteckwelle - - - Absolute sine wave - Absolute Sinuswelle - - - Exponential wave - Exponentielle Welle - - - White noise - Weißes Rauschen - - - Digital Triangle wave - Digitale Dreieckwelle - - - Digital Saw wave - Digitale Sägezahnwelle - - - Digital Ramp wave - Digitale Sägezahnwelle - - - Digital Square wave - Digitale Rechteckwelle - - - Digital Moog saw wave - Digitale Moog-Sägezahnwelle - - - Triangle wave - Dreieckwelle - - - Saw wave - Sägezahnwelle - - - Ramp wave - Sägezahnwelle - - - Square wave - Rechteckwelle - - - Moog saw wave - Moog-Sägezahnwelle - - - Abs. sine wave - Abs. Sinuswelle - - - Random - Zufällig - - - Random smooth - Zufällig gleitend - - - - MonstroView - - Operators view - Operator-Ansicht - - - 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 - - - - Finetune left - - - - cents - - - - 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 - - - - Pre-delay - - - - Hold - Haltezeit (hold) - - - Decay - Abfallzeit - - - Sustain - Haltepegel (sustain) - - - Release - Ausklingzeit (release) - - - Slope - - - - Modulation amount - Modulationsintensität - - - - MultitapEchoControlDialog - - Length - Länge - - - Step length: - - - - Dry - - - - Dry Gain: - - - - Stages - - - - Lowpass stages: - - - - Swap inputs - - - - Swap left and right input channel for reflections - - - - - NesInstrument - - Channel 1 Coarse detune - Kanal 1 Grob-Verstimmung - - - Channel 1 Volume - Kanal 1 Lautstärke - - - Channel 1 Envelope length - Kanal 1 Hüllkurvenlänge - - - Channel 1 Duty cycle - Kanal 1 Tastgrad - - - Channel 1 Sweep amount - Kanal 1 Streichmenge - - - Channel 1 Sweep rate - Kanal 1 Streichrate - - - 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 Duty cycle - Kanal 2 Tastgrad - - - Channel 2 Sweep amount - Kanal 2 Streichmenge - - - Channel 2 Sweep rate - Kanal 2 Streichrate - - - Channel 3 Coarse detune - Kanal 3 Grob-Verstimmung - - - Channel 3 Volume - Kanal 3 Lautstärke - - - Channel 4 Volume - Kanal 4 Lautstärke - - - Channel 4 Envelope length - Kanal 4 Hüllkurvenlänge - - - Channel 4 Noise frequency - Kanal 4 Rauschfrequenz - - - Channel 4 Noise frequency sweep - Kanal 4 Rauschfrequenz-Streichen - - - Master volume - Master-Lautstärke - - - Vibrato - Vibrato - - - - NesInstrumentView - - Volume - Lautstärke - - - Coarse detune - - - - Envelope length - - - - Enable channel 1 - Kanal 1 aktivieren - - - Enable envelope 1 - - - - Enable envelope 1 loop - - - - Enable sweep 1 - - - - Sweep amount - - - - Sweep rate - - - - 12.5% Duty cycle - 12.5% Tastverhältnis - - - 25% Duty cycle - 25% Tastverhältnis - - - 50% Duty cycle - 50% Tastverhältnis - - - 75% Duty cycle - 75% Tastverhältnis - - - Enable channel 2 - Kanal 2 aktivieren - - - Enable envelope 2 - - - - Enable envelope 2 loop - - - - Enable sweep 2 - - - - Enable channel 3 - Kanal 3 aktivieren - - - Noise Frequency - - - - Frequency sweep - - - - Enable channel 4 - Kanal 4 aktivieren - - - Enable envelope 4 - - - - Enable envelope 4 loop - - - - Quantize noise frequency when using note frequency - - - - Use note frequency for noise - - - - Noise mode - Rausch Modus - - - Master Volume - Master-Lautstärke - - - Vibrato - Vibrato - - - - 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 - PatchesDialog + + Qsynth: Channel Preset + + Bank selector + + Bank Bank + + Program selector Programmwähler + + Patch Patch + + Name Name + + OK OK + + Cancel Abbrechen - - 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. - - - 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 - - Open in piano-roll - Im Piano-Roll öffnen - - - Clear all notes - Alle Noten löschen - - - Reset name - Name zurücksetzen - - - Change name - Name ändern - - - Add steps - Schritte hinzufügen - - - Remove steps - Schritte entfernen - - - Clone Steps - Schritte Klonen - - - - PeakController - - Peak Controller - Peak Controller - - - Peak Controller Bug - Peak Controller Fehler - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - 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. - - - - PeakControllerDialog - - PEAK - PEAK - - - LFO Controller - LFO-Controller - - - - PeakControllerEffectControlDialog - - BASE - BASE - - - Base amount: - Grundstärke: - - - Modulation amount: - Modulationsintensität: - - - Attack: - Anschwellzeit (attack): - - - Release: - Ausklingzeit (release): - - - AMNT - AMNT - - - MULT - MULT - - - Amount Multiplicator: - Stärkenmultiplikator: - - - ATCK - ATCK - - - DCAY - DCAY - - - Treshold: - Schwellwert: - - - TRSH - - - - - 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 - - - - 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 - - - - Select all notes on this key - - - - - PianoRollWindow - - Play/pause current pattern (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) - 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 - - - Copy paste controls - - - - Timeline controls - Zeitlinien Regler - - - Zoom and note controls - - - - Piano-Roll - %1 - - - - Piano-Roll - no pattern - - - - Quantize - Quantisiere - - - - PianoView - - Base note - Grundton - - - - Plugin - - Plugin not found - Plugin nicht gefunden - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Das Plugin »%1« konnte nicht gefunden oder geladen werden! -Grund: »%2« - - - Error while loading plugin - Fehler beim Laden des Plugins - - - Failed to load plugin "%1"! - Das Plugin »%1« konnte nicht geladen werden! - - PluginBrowser - Instrument 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 - - - - - PluginFactory - - Plugin not found. - Plugin nicht gefunden - - - LMMS plugin %1 does not have a plugin descriptor named %2! - - - - - 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 - - - - - ProjectRenderer - - WAV-File (*.wav) - WAV-Datei (*.wav) - - - Compressed OGG-File (*.ogg) - Komprimierte OGG-Datei (*.ogg) - - - FLAC-File (*.flac) - - - - Compressed MP3-File (*.mp3) - - - - - QWidget - - Name: - Name: - - - 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: - Datei: - - - File: %1 - Datei: %1 - - - - RenameDialog - - Rename... - Umbenennen... - - - - ReverbSCControlDialog - - Input - Eingang - - - Input Gain: - Eingangsverstärkung: - - - Size - Größe - - - Size: - Größe: - - - Color - Farbe - - - Color: - Farbe: - - - Output - Ausgang - - - Output Gain: - Ausgabeverstärkung: - - - - ReverbSCControls - - Input Gain - Eingangsverstärkung - - - Size - Größe - - - Color - Farbe - - - Output Gain - - - - - 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 - - - Delete (middle mousebutton) - Löschen (mittlere Maustaste) - - - Cut - Ausschneiden - - - Copy - Kopieren - - - Paste - Einfügen - - - Mute/unmute (<%1> + middle click) - Stumm/Laut schalten (<%1> + Mittelklick) - - - - SampleTrack - - Sample track - Samplespur - - - Volume - Lautstärke - - - Panning - Balance - - - - SampleTrackView - - Track volume - Lautstärke der Spur - - - Channel volume: - Kanal Lautstärke: - - - VOL - VOL - - - Panning - Balance - - - Panning: - Balance: - - - PAN - PAN - - - - SetupDialog - - Setup LMMS - Einrichtung von LMMS - - - General settings - Allgemeine Einstellungen - - - BUFFER SIZE - PUFFERGRÖSSE - - - Reset to default-value - Auf Standardwert zurücksetzen - - - MISC - VERSCHIEDENES - - - Enable tooltips - Tooltips aktivieren - - - Show restart warning after changing settings - - - - Compress project files per default - Projektfiles - - - One instrument track window mode - - - - HQ-mode for output audio-device - - - - Compact track buttons - Kompakte Spur-Knöpfe - - - 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 - - - - LANGUAGE - SPRACHE - - - Paths - Pfade - - - LMMS working directory - LMMS-Arbeitsverzeichnis - - - VST-plugin directory - VST-Plugin-Verzeichnis - - - Background artwork - - - - STK rawwave directory - STK RawWave-Verzeichnis - - - Default Soundfont File - - - - Performance settings - Performance-Einstellungen - - - UI effects vs. performance - UI-Effekte vs. Performance - - - Smooth scroll in Song Editor - - - - Show playback cursor in AudioFileProcessor - - - - Audio settings - Audio-Einstellungen - - - AUDIO INTERFACE - AUDIO-SCHNITTSTELLE - - - MIDI settings - MIDI-Einstellungen - - - MIDI INTERFACE - MIDI-SCHNITTSTELLE - - - 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 - - - - Choose your SF2 directory - - - - minutes - Minutes - - - minute - Minute - - - Display volume as dBFS - - - - Enable auto-save - Automatisches Speichern aktivieren - - - Allow auto-save while playing - - - - Disabled - Deaktiviert - - - Auto-save interval: %1 - - - - 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. - - - - - 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 - - - - Hydrogen projects - - - - 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) - - - - LMMS Error report - - - - Save project - - - - - 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. - - - 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. - - - template - Vorlage - - - project - Projekt - - - Version difference - - - - This %1 was created with LMMS %2. - - - - - SongEditorWindow - - Song-Editor - 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/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. - - - - Track actions - - - - Edit actions - Aktionen bearbeiten - - - Timeline controls - Zeitlinien Regler - - - Zoom controls - Zoom Regler - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - Lineares Spektrum - - - Linear Y axis - Lineare Y-Achse - - - - SpectrumAnalyzerControls - - Linear spectrum - Lineares Spektrum - - - Linear Y axis - Lineare Y-Achse - - - Channel mode - Kanalmodus - - - - SubWindow - - Close - Schließen - - - Maximize - Maximieren - - - Restore - Wiederherstellen - - - - TabWidget - - Settings for %1 - Einstellungen für %1 - - - - 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 - - - - TimeDisplayWidget - - click to change time units - Klicken Sie hier, um die Zeiteinheit zu ändern - - - MIN - MIN - - - SEC - SEC - - - MSEC - MSEC - - - BAR - BAR - - - BEAT - BEAT - - - TICK - TICK - - - - TimeLineWidget - - Enable/disable auto-scrolling - Automatisches Scrollen aktivieren/deaktivieren - - - 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 - 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 - - - - 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 Track %1 (%2/Total %3) - - - - - TrackContentObject - - Mute - Stumm - - - - TrackContentObjectView - - 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) - - - - Delete (middle mousebutton) - Löschen (mittlere Maustaste) - - - Cut - Ausschneiden - - - Copy - Kopieren - - - Paste - Einfügen - - - Mute/unmute (<%1> + middle click) - Stumm/Laut schalten (<%1> + Mittelklick) - - - - 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. - - - Actions for this track - Aktionen für diese Spur - - - Mute - Stumm - - - Solo - Solo - - - Mute this track - Diese Spur stummschalten - - - Clone this track - Diese Spur klonen - - - Remove this track - Diese Spur entfernen - - - Clear this track - Diese Spur leeren - - - FX %1: %2 - FX %1: %2 - - - Turn all recording on - Alle Aufnahmen einschalten - - - Turn all recording off - Alle Aufnahmen ausschalten - - - Assign to new FX Channel - - - - - TripleOscillatorView - - Use phase modulation for modulating oscillator 1 with oscillator 2 - Phasenmodulation benutzen, um Oszillator 2 mit Oszillator 1 zu modulieren - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Amplitudenmodulation benutzen, um Oszillator 2 mit Oszillator 1 zu modulieren - - - Mix output of oscillator 1 & 2 - Mische Ausgang von Oszillator 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 - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Phasenmodulation benutzen, um Oszillator 3 mit Oszillator 2 zu modulieren - - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Amplitudenmodulation benutzen, um Oszillator 3 mit Oszillator 2 zu modulieren - - - Mix output of oscillator 2 & 3 - Mische Ausgang von Oszillator 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 - - - 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. - - - 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 a moog-like saw-wave for current oscillator. - Moog-ähnliche Sägezahnwelle für aktuellen Oszillator nutzen. - - - Use an exponential wave for current oscillator. - Exponentielle Welle 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. - - - - VersionedSaveDialog - - Increment version number - Versionsnummer erhöhen - - - Decrement version number - Versionsnummer vermindern - - - already exists. Do you want to replace it? - - - - - VestigeInstrumentView - - Open other VST-plugin - Anderes VST-Plugin laden - - - 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. - - - 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. - - - 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. - - - 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 - - - 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. - - - 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 /> - - - - VstPlugin - - Loading plugin - Lade Plugin - - - 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… - - - The VST plugin %1 could not be loaded. - - - - - WatsynInstrument - - Volume A1 - Lautstärke A1 - - - Volume A2 - Lautstärke A2 - - - Volume B1 - Lautstärke B1 - - - Volume B2 - Lautstärke B2 - - - Panning A1 - Balance A1 - - - Panning A2 - Balance A2 - - - Panning B1 - Balance B1 - - - Panning B2 - Balance B2 - - - Freq. multiplier A1 - Frequenzmultiplikator-A1 - - - Freq. multiplier A2 - Frequenzmultiplikator-A2 - - - Freq. multiplier B1 - Frequenzmultiplikator-B1 - - - Freq. multiplier B2 - Frequenzmultiplikator-B2 - - - Left detune A1 - Links-Verstimmung A1 - - - Left detune A2 - Links-Verstimmung A2 - - - Left detune B1 - Links-Verstimmung B1 - - - Left detune B2 - Links-Verstimmung B2 - - - Right detune A1 - Rechts-Verstimmung A1 - - - Right detune A2 - Rechts-Verstimmung A2 - - - Right detune B1 - Rechts-Verstimmung B1 - - - Right detune B2 - Rechts-Verstimmung B2 - - - A-B Mix - A-B Mischung - - - A-B Mix envelope amount - A-B Mischung Hüllkurvenintensität - - - A-B Mix envelope attack - A-B Mischung Hüllkurvenanschwellzeit - - - A-B Mix envelope hold - A-B Mischung Hüllkurvenhaltezeit - - - A-B Mix envelope decay - A-B Mischung Hüllkurvenabfallzeit - - - A1-B2 Crosstalk - A1-B2 Überlagerung - - - A2-A1 modulation - A2-A1 Modulation - - - B2-B1 modulation - B2-B1 Modulation - - - Selected graph - Ausgewählter Graph - - - - WatsynView - - 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 - - - - Right detune - - - - A-B Mix - A-B Mischung - - - Mix envelope amount - - - - Mix envelope attack - - - - Mix envelope hold - - - - Mix envelope decay - - - - Crosstalk - - - - - ZynAddSubFxInstrument - - Portamento - Portamento - - - Filter Frequency - Filterfrequenz - - - Filter Resonance - Filterresonanz - - - Bandwidth - Bandbreite - - - FM Gain - FM-Verstärkung - - - Resonance Center Frequency - Zentrale Resonanzfrequenz - - - Resonance Bandwidth - Resonanzbandbreite - - - Forward MIDI Control Change Events - MIDI-Control-Change-Ereignisse weiterleiten - - - - 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: - - - FREQ - FREQ - - - Filter Resonance: - Filterresonanz: - - - RES - RES - - - Bandwidth: - Bandbreite: - - - BW - BW - - - FM Gain: - FM-Verstärkung: - - - 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 - - - - audioFileProcessor - - Amplify - Verstärkung - - - Start of sample - Sample-Anfang - - - End of sample - Sample-Ende - - - Reverse sample - Sample umkehren - - - Stutter - Stottern - - - Loopback point - Wiederholungspunkt - - - Loop mode - Wiederholungsmodus - - - Interpolation mode - Interpolationsmodus - - - None - Keiner - - - Linear - Linear - - - Sinc - Sinc - - - Sample not found: %1 - Sample nicht gefunden: %1 - - - - bitInvader - - Samplelength - Sample-Länge - - - - 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 - - - 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. - - - Click here for a triangle-wave. - Klick für eine Dreieckwelle. - - - Click here for a saw-wave. - Klick für eine Sägezahnwelle. - - - Click here for a square-wave. - Klick für eine Rechteckwelle. - - - Click here for white-noise. - Klick für 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 - - - Smooth waveform - Wellenform glätten - - - Click here to apply smoothing to wavegraph - Klicken Sie hier, um den Wellengraph zu glätten - - - Increase wavegraph 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 wavegraph 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 - - - Stereomode Maximum - Stereomodus Maximum - - - Process based on the maximum of both stereo channels - Basierend auf dem Maximum beider Stereokanäle verarbeiten - - - Stereomode Average - Stereomodus Durchschnitt - - - Process based on the average of both stereo channels - Basierend auf dem Durchschnitt beider Stereokanäle verarbeiten - - - Stereomode Unlinked - Stereomodus Unverknüpft - - - Process each stereo channel independently - Jeden Stereokanal unabhängig verarbeiten - - - - dynProcControls - - Input gain - Eingangsverstärkung - - - Output gain - Ausgabeverstärkung - - - Attack time - Anschwellzeit - - - Release time - Ausklingzeit - - - Stereo mode - Stereomodus - - - - 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 - - Start frequency - Startfrequenz - - - End frequency - Endfrequenz - - - Gain - Gain - - - Length - Länge - - - Distortion Start - Verzerrungsanfang - - - Distortion End - Verzerrungsende - - - Envelope Slope - Hüllkurvenneigung - - - Noise - Rauschen - - - Click - Klick - - - Frequency Slope - Frequenzabfall - - - Start from note - Starte bei Note - - - End to note - Ende bei Note - - - - kickerInstrumentView - - Start frequency: - Startfrequenz: - - - End frequency: - Endfrequenz: - - - Gain: - Gain: - - - Frequency Slope: - Frequenzabfall: - - - Envelope Length: - Hüllkurvenlänge: - - - Envelope Slope: - Hüllkurvenneigung: - - - Click: - Klick: - - - Noise: - Rauschen: - - - Distortion Start: - Verzerrungsanfang: - - - Distortion End: - Verzerrungsende: - - - - 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 - - Plugins - Plugins - - - Description - Beschreibung - - - - ladspaPortDialog - - Ports - Ports - - - Name - Name - - - Rate - Rate - - - Direction - Richtung - - - Type - Typ - - - Min < Default < Max - Min < Standard < Max - - - Logarithmic - Logarithmisch - - - SR Dependent - SR-abhängig - - - Audio - Audio - - - Control - Steuerung - - - Input - Eingang - - - Output - Ausgang - - - Toggled - Umgeschaltet - - - Integer - Ganzahl - - - Float - Kommazahl - - - Yes - Ja - - - - lb302Synth - - VCF Cutoff Frequency - VCF-Kennfrequenz - - - VCF Resonance - VCF-Resonanz - - - VCF Envelope Mod - VCF-Hüllkurvenintensität - - - VCF Envelope Decay - VCF-Hüllkurvenabfallzeit - - - Distortion - Verzerrung - - - Waveform - Wellenform - - - Slide Decay - Slide-Abfallzeit - - - Slide - Slide - - - Accent - Betonung - - - Dead - Stumpf - - - 24dB/oct Filter - 24db/Okt Filter - - - - lb302SynthView - - Cutoff Freq: - Kennfrequenz: - - - Resonance: - Resonanz: - - - Env Mod: - Hüllkurven-Modulation: - - - Decay: - Abfallzeit (decay): - - - 303-es-que, 24dB/octave, 3 pole filter - - - - Slide Decay: - Slide-Abfallzeit: - - - DIST: - DIST: - - - Saw wave - Sägezahnwelle - - - Click here for a saw-wave. - Klick für eine Sägezahnwelle. - - - Triangle wave - Dreieckwelle - - - Click here for a triangle-wave. - Klick für eine Dreieckwelle. - - - Square wave - Rechteckwelle - - - Click here for a square-wave. - Klick für eine Rechteckwelle. - - - Rounded square wave - Abgerundete Rechteckwelle - - - Click here for a square-wave with a rounded end. - Klick für eine abgerundete Rechteckwelle. - - - Moog wave - Moog-Welle - - - Click here for a moog-like wave. - Klick für eine Moog-ähnliche Welle. - - - Sine wave - Sinuswelle - - - Click for a sine-wave. - Klick für eine Sinuswelle. - - - White noise wave - Weißes Rauschen - - - Click here for an exponential wave. - Klick für eine exponentielle-Welle. - - - Click here for white-noise. - Klick für weißes Rauschen. - - - Bandlimited saw wave - Bandbegrenzte Sägezahnwelle - - - Click here for bandlimited saw wave. - Klick für eine bandbegrenzte Sägezahnwelle. - - - Bandlimited square wave - Bandbegrenzte Rechteckwelle - - - Click here for bandlimited square wave. - Klick für eine bandbegrenzte Rechteckwelle. - - - Bandlimited triangle wave - Bandlimitierte Dreieckwelle - - - Click here for bandlimited triangle wave. - Klick für eine bandbegrenzte Dreieckwelle. - - - Bandlimited moog saw wave - Bandbegrenzte Moog-Sägezahnwelle - - - Click here for bandlimited moog saw wave. - Klick für eine bandbegrenzte Moog-Sägezahnwelle. - - - - malletsInstrument - - Hardness - Härte - - - Position - Position - - - Vibrato Gain - Vibrato Gain - - - Vibrato Freq - Vibrato-Freq - - - Stick Mix - Stick Mix - - - Modulator - Modulator - - - Crossfade - Crossfade - - - LFO Speed - LFO-Geschwindigkeit - - - LFO Depth - LFO-Tiefe - - - ADSR - ADSR - - - Pressure - Druck - - - Motion - Bewegung - - - Speed - Geschwindigkeit - - - Bowed - Gestrichen - - - Spread - Weite - - - Marimba - Marimba - - - Vibraphone - Vibraphon - - - Agogo - Agogo - - - Wood1 - Holz 1 - - - Reso - Reso - - - Wood2 - Holz 2 - - - Beats - Beats - - - Two Fixed - Two Fixed - - - Clump - Clump - - - Tubular Bells - Glocken in Röhre - - - Uniform Bar - Uniform Bar - - - Tuned Bar - Tuned Bar - - - Glass - Glas - - - Tibetan Bowl - Tibetanische Schüssel - - - - malletsInstrumentView - - Instrument - Instrument - - - Spread - Weite - - - Spread: - Weite: - - - Hardness - Härte - - - Hardness: - Härte: - - - Position - Position - - - Position: - Position: - - - 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-Geschwindigkeit - - - LFO Speed: - LFO-Geschwindigkeit: - - - LFO Depth - LFO-Tiefe - - - LFO Depth: - LFO-Tiefe: - - - 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 - - - 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. - - - 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 - - - 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 - - Distortion - Verzerrung - - - Volume - Lautstärke - - - - organicInstrumentView - - Distortion: - Verzerrung: - - - Volume: - Lautstärke: - - - Randomise - Zufallswerte - - - Osc %1 waveform: - Oszillator %1 Wellenform: - - - Osc %1 volume: - Oszillator %1 Lautstärke: - - - Osc %1 panning: - Oszillator %1 Balance: - - - 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 - - - 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 - - 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 + + A native amplifier plugin + Ein natives Verstärker-Plugin - Plugin for freely manipulating stereo output - Plugin zur freien Manipulation der Stereoausgabe + + 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 controlling knobs with sound peaks - Plugin zur Kontrolle von Knöpfen mit Hilfe von Klangspitzen + + Boost your bass the fast and simple way + Verstärken Sie Ihren Bass auf schnellen und einfachen Wege - Plugin for enhancing stereo separation of a stereo input file - Plugin zur Erweiterung des Stereo-Klangeindrucks + + 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 - 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. + + 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 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. - Player for SoundFont files - Wiedergabe von SoundFont-Dateien + + A graphical spectrum analyzer. + - Emulation of GameBoy (TM) APU - Emulation des GameBoy (TM) APU + + Plugin for enhancing stereo separation of a stereo input file + Plugin zur Erweiterung des Stereo-Klangeindrucks - Customizable wavetable synthesizer - Flexibler Wavetable-Synthesizer + + Plugin for freely manipulating stereo output + Plugin zur freien Manipulation der Stereoausgabe - 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 + + 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 native amplifier plugin - Ein natives Verstärker-Plugin + + A stereo field visualizer. + - Carla Rack Instrument - Carla Rack Instrument + + VST-host for using VST(i)-plugins within LMMS + VST-Host zum Benutzen von VST(i)-Plugins innerhalb von LMMS - 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 + + Vibrating string modeler + Modellierung schwingender Saiten + plugin for using arbitrary VST effects inside LMMS. Plugin um beliebige VST-Effekte in LMMS zu benutzen. - Graphical spectrum analyzer plugin - Graphisches Spektrumanalyzer Plugin + + 4-oscillator modulatable wavetable synth + 4-Oszillator modulierbarer Wellenformtabellen Synth - 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 - + + plugin for waveshaping + Plugin für Wellenformen + Mathematical expression parser + + + Embedded ZynAddSubFX + Eingebettetes ZynAddSubFX-Plugin + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + + - sf2Instrument + PluginEdit - Bank - Bank + + Plugin Editor + - Patch - Patch + + 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 Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + + + + + Save State + + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + Typ: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + + + + + PluginFactory + + + Plugin not found. + Plugin nicht gefunden + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + + + + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + + + + + Parameter Name + + + + + TextLabel + + + + + ... + + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + An/aus + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + + + + + Show GUI + GUI anzeigen + + + + Help + Hilfe + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + Name: + + + + 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: + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + + + + + lmms::AudioFileProcessor + + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + Gain - Gain + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + Reverb - 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 voices + - Chorus Level - Chorus/Stärke + + Chorus level + - Chorus Speed - Chorus/Geschwindigkeit + + Chorus speed + - Chorus Depth - Chorus/Tiefe + + Chorus depth + + A soundfont %1 could not be loaded. - sf2InstrumentView + lmms::SfxrInstrument - 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: - - - Open SoundFont file - SoundFont-Datei öffnen - - - SoundFont2 Files (*.sf2) - SoundFont2-Dateien (*.sf2) + + Wave + - sfxrInstrument + lmms::SidInstrument - Wave Form - Wellenform - - - - sidInstrument - - Cutoff - Kennfrequenz + + Cutoff frequency + + Resonance - Resonanz + + Filter type - Filtertyp + + Voice 3 off - Stimme 3 lautlos + + Volume - Lautstärke + + Chip model - Chipmodell + - sidInstrumentView + lmms::SlicerT - Volume: - Lautstärke: + + Note threshold + - Resonance: - Resonanz: + + FadeOut + - Cutoff frequency: - Kennfrequenz: + + Original bpm + - High-Pass filter - Hochpass-Filter + + Slice snap + - Band-Pass filter - Bandpass-Filter + + BPM sync + - Low-Pass filter - Tiefpass-Filter + + + slice_%1 + - 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. + + Sample not found: %1 + - stereoEnhancerControlDialog + lmms::Song - WIDE - WEITE + + Tempo + - Width: - Weite: + + 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: + - stereoEnhancerControls + lmms::StereoEnhancerControls + Width - Weite + - stereoMatrixControlDialog - - Left to Left Vol: - Links-nach-links Lautstärke: - - - Left to Right Vol: - Links-nach-rechts Lautstärke: - - - Right to Left Vol: - Rechts-nach-links Lautstärke: - - - Right to Right Vol: - Rechts-nach-rechts Lautstärke: - - - - stereoMatrixControls + lmms::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 + lmms::Track + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + Loading plugin - 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 + lmms::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 - - 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 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. - - - Pan: - Balance: - - - 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. - - - Detune: - Verstimmung: - - - 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. - - - 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. - - - 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. - - - 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 - 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. - - - 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. - - - - voiceObject + lmms::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 + lmms::VstPlugin - INPUT - INPUT + + + The VST plugin %1 could not be loaded. + - Input gain: - Eingangsverstärkung: + + Open Preset + - OUTPUT - OUTPUT + + + VST Plugin Preset (*.fxp *.fxb) + - Output gain: - Ausgabeverstärkung: + + : default + - Reset waveform - Wellenform zurücksetzen + + Save Preset + - Click here to reset the wavegraph back to default - Klicken Sie hier, um den Wellengraph zum Standard zurückzusetzen + + .fxp + - Smooth waveform - Wellenform glätten + + .FXP + - Click here to apply smoothing to wavegraph - Klicken Sie hier, um den Wellengraph zu glätten + + .FXB + - Increase graph amplitude by 1dB - Die Amplitude des Wellengraphs um 1dB erhöhen + + .fxb + - Click here to increase wavegraph amplitude by 1dB - Klicken Sie hier, um die Amplitude des Wellengraphs um 1dB zu erhöhen + + Loading plugin + - 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 - - - Clip input - Eingang begrenzen - - - Clip input signal to 0dB - Eingangssignal auf 0dB begrenzen + + Please wait while loading VST plugin... + - waveShaperControls + lmms::WatsynInstrument + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + Input gain - Eingangsverstärkung + + Output gain - Ausgabeverstärkung + - + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/el.ts b/data/locale/el.ts new file mode 100644 index 000000000..130d5c63e --- /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 + + + + + MixerChannelView + + + Channel send amount + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + + + + MixerChannelLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + Ενταση + + + + 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 + + + + + InstrumentTuningView + + + MASTER PITCH + + + + + Enables the use of master pitch + + + + + InstrumentSoundShaping + + + VOLUME + ΕΝΤΑΣΗ + + + + Volume + Ενταση + + + + CUTOFF + + + + + + Cutoff frequency + + + + + RESO + + + + + Resonance + + + + + Envelopes/LFOs + + + + + Filter type + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 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..246311921 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 + MixerChannelView - + Channel send amount - + Move &left - + Move &right - + Rename &channel - + R&emove channel - + Remove &unused channels + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + - FxLineLcdSpinBox + MixerChannelLcdSpinBox - + 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,72 +6300,76 @@ 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 - InstrumentMiscView + InstrumentTuningView - + 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..88e92cda8 --- /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 + + + + + MixerChannelView + + + Channel send amount + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + + + + MixerChannelLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + 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 + + + + + InstrumentTuningView + + + 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..4182096b9 100644 --- a/data/locale/es.ts +++ b/data/locale/es.ts @@ -1,10319 +1,18754 @@ - + AboutDialog + About LMMS Acerca de LMMS - Version %1 (%2/%3, Qt %4, %5) - Versión %1 (%2/%3, Qt %4, %5) + + 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 al alcance de todos + + 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 - 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 - - + 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 + AboutJuceDialog - VOL - VOL + + About JUCE + - Volume: - Volumen: + + <b>About JUCE</b> + - PAN - PAN + + This program uses JUCE version 3.x.x. + - Panning: - Paneo: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + - LEFT - IZQ - - - Left gain: - Ganancia izquierda: - - - RIGHT - DER - - - Right gain: - Ganancia derecha: + + This program uses JUCE version + - AmplifierControls + AudioDeviceSetupWidget - Volume - Volumen - - - Panning - Paneo - - - Left gain - Ganacia izquierda - - - Right gain - Ganancia derecha + + [System Default] + - AudioAlsaSetupWidget + CarlaAboutW - DEVICE - DISPOSITIVO + + About Carla + - CHANNELS - CANALES + + 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) + - AudioFileProcessorView + CarlaHostW - Open other sample - Abrir otra muestra + + MainWindow + - 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. + + Rack + - Reverse sample - Reproducir la muestra en reversa + + Patchbay + - 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. + + Logs + - Amplify: - Amplificar: + + Loading... + - 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á!) + + Save + - Startpoint: - Inicio: + + Clear + - Endpoint: - Fin: + + Ctrl+L + - Continue sample playback across notes - Reproducción continua a través de las notas + + Auto-Scroll + - 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) + + Buffer Size: + - 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). - - - 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. - - - 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. - - - 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. - - - 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: - - - - 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 - - - CHANNELS - CANALES - - - - AudioOss::setupWidget - - DEVICE - DISPOSITIVO - - - CHANNELS - CANALES - - - - AudioPortAudio::setupWidget - - BACKEND - MOTOR - - - DEVICE - DISPOSITIVO - - - - AudioPulseAudio::setupWidget - - DEVICE - DISPOSITIVO - - - CHANNELS - CANALES - - - - AudioSdl::setupWidget - - DEVICE - DISPOSITIVO - - - - AudioSndio::setupWidget - - DEVICE - DISPOSITIVO - - - CHANNELS - CANALES - - - - AudioSoundIo::setupWidget - - BACKEND - MOTOR - - - DEVICE - DISPOSITIVO - - - - AutomatableModel - - &Reset (%1%2) - &Restaurar (%1%2) - - - &Copy value (%1%2) - &Copiar valor (%1%2) - - - &Paste value (%1%2) - &Pegar valor (%1%2) - - - 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 - - - - AutomationEditor - - Please open an automation pattern 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) - 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) - 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 - - - Interpolation controls - Controles de interpolación - - - Timeline controls - Controles de la línea de Tiempo - - - Zoom controls - Controles de Acercamiento - - - 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. - - - - AutomationPattern - - Drag a control while pressing <%1> - Arrastre un control mientras presiona <%1> - - - - AutomationPatternView - - 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. - El modelo ya está conectado a este patrón. - - - - AutomationTrack - - Automation track - Pista de Automatización - - - - BBEditor - - 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 sample-track - Agregar pista de muestras - - - - BBTCOView - - 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 - - Beat/Bassline %1 - Ritmo/Bajo %1 - - - Clone of %1 - Clon de %1 - - - - BassBoosterControlDialog - - FREQ - FREC - - - Frequency: - Frecuencia: - - - GAIN - GAN - - - Gain: - Ganancia: - - - RATIO - RAZÓN - - - Ratio: - Razón: - - - - BassBoosterControls - - Frequency - Frecuencia - - - Gain - Ganancia - - - Ratio - Razón - - - - BitcrushControlDialog - - IN - IN - - - OUT - OUT - - - GAIN - GAN - - - 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: + + Sample Rate: Frecuencia de Muestreo: - Stereo difference: - Diferencia estéreo: + + ? Xruns + - Levels: - Niveles: + + DSP Load: %p% + - NOISE - RUIDO + + &File + Archivo (&F) - FREQ - FREC + + &Engine + - STEREO - ESTÉREO + + &Plugin + - QUANT - SECUENCIADOR + + Macros (all plugins) + - - - CaptionMenu + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help - &Ayuda + Ayuda (&H) - Help (not available) - Ayuda (no disponible) + + Tool Bar + - - - CarlaInstrumentView - Show GUI - Mostrar IGU + + Disk + - 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. + + + Home + - - - Controller - Controller %1 - Controlador %1 + + Transport + - - - ControllerConnectionDialog - Connection Settings - Configuración de conexiones + + Playback Controls + - MIDI CONTROLLER - CONTROLADOR MIDI + + Time Information + - Input channel - Canal de entrada + + Frame: + - CHANNEL - CANAL - - - Input controller - Controlador de entrada - - - CONTROLLER - CONTROLADOR - - - Auto Detect - Auto-detectar - - - MIDI-devices to receive MIDI-events from - Dispositivos MIDI desde los cuales recibir eventos MIDI - - - USER CONTROLLER - CONTROLADOR DE USUARIO - - - MAPPING FUNCTION - FUNCIÓN DE MAPEO - - - OK - De acuerdo - - - Cancel - Cancelar - - - LMMS - LMMS - - - Cycle Detected. - Ciclo detectado. - - - - ControllerRackView - - Controller Rack - Bandeja de Controladores - - - Add - Añadir - - - Confirm Delete - Confirmar borrado - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - ¿Confirmar borrar? Hay conexiones asociadas a este controlador. Esta acción no se puede deshacer. - - - - ControllerView - - Controls - Controles - - - 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 - - - &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 2/3 Crossover: - Filtro de cruce Banda 2/3: - - - Band 3/4 Crossover: - Filtro de cruce Banda 3/4: - - - Band 1 Gain: - Banda 1 Ganancia: - - - Band 2 Gain: - Banda 2 Ganancia: - - - Band 3 Gain: - Banda 3 Ganancia: - - - Band 4 Gain: - Banda 4 Ganancia: - - - Band 1 Mute - Banda 1 Silencio - - - Mute Band 1 - Silenciar Banda 1 - - - Band 2 Mute - Banda 2 Silencio - - - Mute Band 2 - Silenciar Banda 2 - - - Band 3 Mute - Banda 3 Silencio - - - Mute Band 3 - Silenciar Banda 3 - - - Band 4 Mute - Banda 4 Silencio - - - Mute Band 4 - Silenciar Banda 4 - - - - DelayControls - - Delay Samples - Retrasar muestras - - - Feedback - Realimentacion - - - Lfo Frequency - Frecuencia LFO - - - Lfo Amount - Cantidad LFO - - - Output gain - Ganancia de salida - - - - 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 - - - FDBK - RETRO - - - RATE - TASA - - - AMNT - CANT - - - - 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 - - - - DualFilterControls - - Filter 1 enabled - Filtro 1 activado - - - Filter 1 type - Filtro 1 tipo - - - Cutoff 1 frequency - Frecuencia de corte 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 - - - Q/Resonance 2 - Q/Resonancia 2 - - - Gain 2 - Ganancia 2 - - - LowPass - PasoBajo - - - HiPass - PasoAlto - - - BandPass csg - PasoBanda csg - - - BandPass czpg - PasoBanda czpg - - - Notch - Notch - - - Allpass - PasaTodo - - - Moog - Moog - - - 2x LowPass - 2x PasoBajo - - - RC LowPass 12dB - RC PasoBajo 12 dB - - - RC BandPass 12dB - RC PasoBanda 12 dB - - - RC HighPass 12dB - RC PasoAlto 12 dB - - - RC LowPass 24dB - RC PasoBajo 24dB - - - RC BandPass 24dB - RC PasoBanda 24dB - - - RC HighPass 24dB - RC PasoAlto 24dB - - - Vocal Formant Filter - Filtro de Formante Vocal - - - 2x Moog - 2x Moog - - - SV LowPass - SV PasoBajo - - - SV BandPass - SV PasoBanda - - - SV HighPass - SV PasoAlto - - - SV Notch - SV Notch - - - Fast Formant - Formante Rápido - - - Tripole - Tripolar - - - - Editor - - Play (Space) - Reproducir (Espacio) - - - Stop (Space) - Detener (Espacio) - - - Record - Grabar - - - Record while playing - Grabar reproduciendo - - - Transport controls - Controles de Transporte - - - - Effect - - Effect enabled - Efecto activado - - - Wet/Dry mix - Mezcla Wet/Dry - - - Gate - Puerta - - - Decay - Caída - - - - EffectChain - - Effects enabled - Efectos activados - - - - EffectRackView - - EFFECTS CHAIN - CADENA DE EFECTOS - - - Add effect - Añadir efecto - - - - EffectSelectDialog - - Add effect - Añadir efecto - - - Name - Nombre - - - Type - Tipo - - - Description - Descripción - - - Author - Autor - - - - EffectView - - 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 + + 000'000'000 + + 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. + + 00:00:00 + - GATE - PUERTA + + BBT: + - Gate: - Puerta: + + 000|00|0000 + - 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. + + Settings + Configuración - Controls - Controles + + BPM + - 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. + + Use JACK Transport + - Move &up - Mover arriba (&U) + + Use Ableton Link + - Move &down - Mover abajo (&D) + + &New + &Nuevo - &Remove this plugin - Quita&r este complemento + + Ctrl+N + + + + + &Open... + Abrir...(&O) + + + + + Open... + + + + + Ctrl+O + + + + + &Save + Guardar (&S) + + + + Ctrl+S + + + + + Save &As... + Guardar Como... (&A) + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + Salir (&Q) + + + + Ctrl+Q + + + + + &Start + + + + + F5 + + + + + St&op + + + + + F6 + + + + + &Add Plugin... + + + + + Ctrl+A + + + + + &Remove All + + + + + Enable + + + + + Disable + + + + + 0% Wet (Bypass) + + + + + 100% Wet + + + + + 0% Volume (Mute) + + + + + 100% Volume + + + + + Center Balance + + + + + &Play + + + + + Ctrl+Shift+P + + + + + &Stop + + + + + Ctrl+Shift+X + + + + + &Backwards + + + + + Ctrl+Shift+B + + + + + &Forwards + + + + + Ctrl+Shift+F + + + + + &Arrange + + + + + Ctrl+G + + + + + + &Refresh + + + + + Ctrl+R + + + + + Save &Image... + + + + + Auto-Fit + + + + + Zoom In + + + + + Ctrl++ + + + + + Zoom Out + + + + + Ctrl+- + + + + + Zoom 100% + + + + + Ctrl+1 + + + + + Show &Toolbar + + + + + &Configure Carla + + + + + &About + + + + + About &JUCE + + + + + About &Qt + + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + Ctrl+P + + + + + &Connect... + + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + + + + + &Configure driver... + + + + + Panic + + + + + Open custom driver panel... + + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + - EnvelopeAndLfoParameters + CarlaHostWindow - Predelay - Pre-retraso + + Export as... + - Attack - Ataque + + + + + Error + Error - Hold - Mantener + + Failed to load project + - Decay - Caída + + Failed to save project + - Sustain - Sostenido + + Quit + Salir - Release - Disipación + + Are you sure you want to quit Carla? + - Modulation - Modulación + + Could not connect to Audio backend '%1', possible reasons: +%2 + - LFO Predelay - Pre-retraso del LFO + + Could not connect to Audio backend '%1' + - LFO Attack - Ataque del LFO + + Warning + - LFO speed - Velocidad del LFO - - - LFO Modulation - Modulación del LFO - - - LFO Wave Shape - Forma de onda del LFO - - - Freq x 100 - Frec x 100 - - - Modulate Env-Amount - Modular Cant-Env + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + - EnvelopeAndLfoView + CarlaSettingsW - DEL - RETR + + Settings + Configuración - Predelay: - Pre retraso: + + main + - 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. + + canvas + - ATT - ATA + + engine + - Attack: - Ataque: + + osc + - 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. + + file-paths + - HOLD - MANT + + plugin-paths + - Hold: - Mantener: + + wine + - 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. + + experimental + - DEC - CAI + + Widget + - Decay: - Caída: + + + Main + - 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. + + + Canvas + - SUST - SOST + + + Engine + - Sustain: - Sostenido: + + File Paths + - 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. + + Plugin Paths + - REL - DIS + + Wine + - Release: - Disipación: + + + Experimental + - 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. + + <b>Main</b> + - AMT - CANT + + Paths + Lugares - Modulation amount: - Cantidad de modulación: + + Default project folder: + - 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. + + Interface + - LFO predelay: - pre-retraso del LFO: + + Use "Classic" as default rack skin + - 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. + + Interface refresh interval: + - LFO- attack: - ataque del LFO: + + + ms + - 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. + + Show console output in Logs tab (needs engine restart) + - SPD - VEL + + Show a confirmation dialog before quitting + - LFO speed: - velocidad del LFO: + + + Theme + - 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 Carla "PRO" theme (needs restart) + - 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). + + Color scheme: + - Click here for a sine-wave. - Haz click aquí para seleccionar una onda-sinusoidal. + + Black + - Click here for a triangle-wave. - Haz click aquí para seleccionar una onda triangular. + + System + - Click here for a saw-wave for current. - Haz click aquí para seleccionar una onda de sierra. + + Enable experimental features + - Click here for a square-wave. - Haz click aquí para seleccionar una onda cuadrada. + + <b>Canvas</b> + - 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. + + Bezier Lines + - FREQ x 100 - FREC x 100 + + Theme: + - 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. + + Size: + Tamaño: - multiply LFO-frequency by 100 - multiplicar frecuencia del LFO por 100 + + 775x600 + - MODULATE ENV-AMOUNT - MODULAR CANT-DE-ENV + + 1550x1200 + - 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. + + 3100x2400 + - control envelope-amount by this LFO - controla la cantidad de envolvente a través de este LFO + + 4650x3600 + - ms/LFO: - ms/LFO: + + 6200x4800 + - Hint - Pista + + 12400x9600 + - Drag a sample from somewhere and drop it in this window. - Arrastra una muestra desde cualquier lugar y suéltala en esta ventana. + + Options + - Click here for random wave. - Haz click aquí para seleccionar una onda aleatoria. + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + + + + + Anti-Aliasing + + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + + + + + + Core + + + + + Single Client + + + + + Multiple Clients + + + + + + Continuous Rack + + + + + + Patchbay + + + + + Audio driver: + + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + + + + + Reset Xrun counter after project load + + + + + Plugin UIs + + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + + + + + <b>OSC</b> + + + + + Enable OSC + + + + + Enable TCP port + + + + + + Use specific port: + + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + + + + + Audio + Audio + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + + + + + + Remove + + + + + + Change... + + + + + <b>Plugin Paths</b> + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + SF2/3 + + + + + SFZ + + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + + + + + <b>Wine</b> + + + + + Executable + + + + + Path to 'wine' binary: + + + + + Prefix + + + + + Auto-detect Wine prefix based on plugin filename + + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + + + + + High Quality Anti-Aliasing (OpenGL only) + + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + + + + + Force mono plugins as stereo + + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path + - EqControls + Dialog - Input gain - Ganancia de entrada + + Carla Control - Connect + - Output gain - Ganancia de salida + + Remote setup + - Low shelf gain - Ganancia de la meseta de bajos + + UDP Port: + - Peak 1 gain - Ganancia del Pico 1 + + Remote host: + - Peak 2 gain - Ganancia del Pico 2 + + TCP Port: + - Peak 3 gain - Ganancia del Pico 3 + + Set value + - Peak 4 gain - Ganancia del Pico 4 + + TextLabel + - High Shelf gain - Ganancia de la meseta de agudos - - - HP res - PasoAlto res - - - Low Shelf res - Meseta de Bajos 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 - - - LP res - PasoBajo res - - - HP freq - PasoAlto frec - - - Low Shelf freq - Meseta de Bajos frec - - - 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 - - - LP freq - PasoBajo frec - - - HP active - PasoAlto activo - - - Low shelf active - Meseta de Bajos activa - - - 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 - - - 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 - - - high pass type - tipo paso alto - - - Analyse IN - Analizar ENTRADA - - - Analyse OUT - Analizar SALIDA + + Scale Points + - EqControlsDialog + DriverSettingsW - HP - PA + + Driver Settings + - Low Shelf - Meseta de Bajos + + Device: + - Peak 1 - Pico 1 + + Buffer size: + - Peak 2 - Pico 2 + + Sample rate: + Frecuencia de Muestreo: - Peak 3 - Pico 3 + + Triple buffer + - Peak 4 - Pico 4 + + Show Driver Control Panel + - High Shelf - Meseta de Agudos - - - LP - PB - - - In Gain - Ganancia de entrada - - - Gain - Ganancia - - - Out Gain - Ganancia de salida - - - Bandwidth: - AnchoDeBanda: - - - Resonance : - Resonancia : - - - Frequency: - Frecuencia: - - - lp grp - grupo PB - - - hp grp - grupo PA - - - Octave - Octava - - - - EqHandle - - Reso: - Reso: - - - BW: - AB: - - - Freq: - Frec: + + Restart the engine to load the new settings + 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 - Could not open file - No se puede abrir el archivo + + Render Looped Section: + - Export project to %1 - Exportar proyecto a %1 + + time(s) + - Error - Error + + File format settings + - 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. + + File format: + Tipo de archivo: - Rendering: %1% - Renderizando: %1% + + Sampling rate: + Tasa de muestreo: - 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. + + 44100 Hz + 44100 Hz - 24 Bit Integer - 24 Bits Entero + + 48000 Hz + 48000 Hz - Use variable bitrate - Usar tasa de bits variable + + 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: - Stereo - Estéreo - - - Joint Stereo - Conjunto De Estéreo: - - + Mono Mono + + Stereo + Estéreo + + + + Joint stereo + + + + Compression level: Compresor De Niveles: - (fastest) - (Rápido) + + Bitrate: + Tasa de bits: - (default) - (Por Defecto) + + 64 KBit/s + 64 KBit/s - (smallest) - (Reducir) + + 128 KBit/s + 128 KBit/s - - - Expressive - Selected graph - Gráfico seleccionado + + 160 KBit/s + 160 KBit/s - A1 - A1 + + 192 KBit/s + 192 KBit/s - A2 - A2 + + 256 KBit/s + 256 KBit/s - A3 - A3 + + 320 KBit/s + 320 KBit/s - W1 smoothing - W1 Suavizadora + + Use variable bitrate + Usar tasa de bits variable - W2 smoothing - W2 Suavizadora + + Quality settings + Configuración de calidad - W3 smoothing - W3 Suavizadora + + Interpolation: + Interpolación: - PAN1 - PAN1 + + Zero order hold + - PAN2 - PAN2 + + Sinc worst (fastest) + - REL TRANS - REL TRANS + + Sinc medium (recommended) + - - - Fader - Please enter a new value between %1 and %2: - Por favor ingresa un nuevo valor entre %1 y %2: + + Sinc best (slowest) + - - - FileBrowser - Browser - Explorador + + Start + Comenzar - Search - Buscar - - - Refresh list - Actualizar Lista - - - - 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 - - - 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 - - - file - archivo - - - - FlangerControls - - Delay Samples - Muestras de retraso - - - Lfo Frequency - Frecuencia LFO - - - Seconds - Segundos - - - Regen - Intensidad - - - Noise - Ruido - - - Invert - Invertir - - - - FlangerControlsDialog - - Delay Time: - Tiempo de retraso : - - - Feedback Amount: - Cantidad de realimentación: - - - White Noise Amount: - Cantidad de Ruido Blanco: - - - DELAY - RETRASO - - - RATE - TASA - - - AMNT - CANT - - - Amount: - Cantidad: - - - FDBK - RETRO - - - NOISE - RUIDO - - - Invert - Invertir - - - Period: - Period: - - - - FxLine - - 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 - - - - FxMixer - - Master - Maestro - - - FX %1 - FX %1 - - - Volume - Volumen - - - Mute - Silencio - - - Solo - Solo - - - - FxMixerView - - FX-Mixer - Mezcladora FX - - - FX Fader %1 - Fader FX %1 - - - Mute - Silencio - - - Mute this FX channel - Silenciar este canal FX - - - Solo - Solo - - - Solo FX channel - Canal FX Solo - - - - FxRoute - - Amount to send from channel %1 to channel %2 - Cantidad de envío del canal %1 al canal %2 - - - - GigInstrument - - Bank - Banco - - - Patch - Ajuste - - - Gain - Ganancia - - - - GigInstrumentView - - Open 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 - - - GIG Files (*.gig) - Archivos GIG (*.gig) - - - - GuiApplication - - Working directory - Directorio de trabajo - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - El directorio de trabajo LMMS %1 no existe. ¿Deseas crearlo ahora? Puedes cambiar este directorio luego via Edición -> Configuración. - - - Preparing UI - Preparando IU - - - Preparing song editor - Preparando editor de canción - - - Preparing mixer - Preparando mezclador - - - Preparing controller rack - Preparando bandeja de controladores - - - Preparing project notes - Preparando notas del proyecto - - - Preparing beat/bassline editor - Preparando editor de ritmo/bajo - - - Preparing piano roll - Preparando piano roll - - - Preparing automation editor - Preparando editor de automatización - - - - InstrumentFunctionArpeggio - - Arpeggio - Arpegio - - - Arpeggio type - tipo de arpegio - - - Arpeggio range - Extensión del arpegio - - - 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 - - - Random - Aleatorio - - - Free - Libre - - - Sort - Ordenado - - - Sync - Sincronizado - - - Down and up - Abajo y arriba - - - Skip rate - Tasa de salto - - - Miss rate - Tasa de omisión - - - Cycle steps - Ciclar pasos - - - - 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. - - - TIME - DURACIÓN - - - 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. - - - 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. + + Cancel + Cancelar 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 - - 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: - - - - InstrumentMidiIOView - - ENABLE MIDI INPUT - HABILITAR ENTRADA MIDI - - - CHANNEL - CANAL - - - VELOCITY - VELOCIDAD - - - ENABLE MIDI OUTPUT - HABILITAR SALIDA MIDI - - - PROGRAM - PROGRAMA - - - 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% - - - BASE VELOCITY - VELOCIDAD BÁSICA - - - - InstrumentMiscView - - MASTER PITCH - TRANSPORTE - - - Enables the use of Master Pitch - Habilitar el uso del Transporte - - InstrumentSoundShaping + VOLUME VOLUMEN + Volume Volumen + CUTOFF CORTE + Cutoff frequency Frecuencia de corte + RESO RESO + Resonance Resonancia + + + JackAppDialog - Envelopes/LFOs - Envolventes/LFOs + + Add JACK Application + - Filter type - Tipo de filtro + + Note: Features not implemented yet are greyed out + - Q/Resonance - Q/Resonancia + + Application + - LowPass - PasoBajo + + Name: + - HiPass - PasoAlto + + Application: + - BandPass csg - PasoBanda csg + + From template + - BandPass czpg - PasoBanda czpg + + Custom + - Notch - Notch + + Template: + - Allpass - PasaTodo + + Command: + - Moog - Moog + + Setup + - 2x LowPass - 2x PasoBajo + + Session Manager: + - RC LowPass 12dB - RC PasoBajo 12 dB + + None + - RC BandPass 12dB - RC PasoBanda 12 dB + + Audio inputs: + - RC HighPass 12dB - RC PasoAlto 12 dB + + MIDI inputs: + - RC LowPass 24dB - RC PasoBajo 24dB + + Audio outputs: + - RC BandPass 24dB - RC PasoBanda 24dB + + MIDI outputs: + - RC HighPass 24dB - RC PasoAlto 24dB + + Take control of main application window + - Vocal Formant Filter - Filtro de Formante Vocal + + Workarounds + - 2x Moog - 2x Moog + + Wait for external application start (Advanced, for Debug only) + - SV LowPass - SV PasoBajo + + Capture only the first X11 Window + - SV BandPass - SV PasoBanda + + Use previous client output buffer as input for the next client + - SV HighPass - SV PasoAlto + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - SV Notch - SV Notch + + Error here + - Fast Formant - Formante Rápido + + NSM applications cannot use abstract or absolute paths + - Tripole - Tripolar + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + - InstrumentSoundShapingView + JuceAboutW - 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: - - - Envelopes, LFOs and filters are not supported by the current instrument. - Envolventes, LFOx y filtros no son soportados por este instrumento. + + This program uses JUCE version %1. + - InstrumentTrack + MidiPatternW - unnamed_track - pista_sin_título + + MIDI Pattern + - Volume - Volumen + + Time Signature: + - Panning - Paneo + + + + 1/4 + - Pitch - Altura + + 2/4 + - FX channel - Canal FX + + 3/4 + - Default preset - Configuración predeterminada + + 4/4 + - With this knob you can set the volume of the opened channel. - Con este control puedes difinir el volumen del canal abierto. + + 5/4 + - Base note - Nota base + + 6/4 + - Pitch range - Registro + + Measures: + - Master Pitch - Transporte + + + + 1 + - - - InstrumentTrackView - Volume - Volumen + + 2 + - Volume: - Volumen: + + 3 + - VOL - VOL + + 4 + - Panning - Paneo + + 5 + 5ta - Panning: - Paneo: + + 6 + Mayor añad 6 - PAN - PAN + + 7 + Dominante (1 3 5 b7) - MIDI - MIDI + + 8 + - Input - Entrada + + 9 + Dom 9 (1-3-5-b7-9) - Output - Salida + + 10 + - FX %1: %2 - FX %1: %2 + + 11 + Dom 11 (1-3-5-b7-9-11) - - - InstrumentTrackWindow - GENERAL SETTINGS - CONFIGURACIÓN GENERAL + + 12 + - Instrument volume - Volumen del instrumento + + 13 + Dom 13 (...b7-9-11-13) - Volume: - Volumen: + + 14 + - VOL - VOL + + 15 + - Panning - Paneo + + 16 + - Panning: - Paneo: + + Default Length: + - PAN - PAN + + + 1/16 + - Pitch - Altura + + + 1/15 + - Pitch: - Altura: + + + 1/12 + - cents - cents + + + 1/9 + - PITCH - ALTURA + + + 1/8 + - FX channel - Canal FX + + + 1/6 + - FX - FX + + + 1/3 + - Save preset - Guardar preconfiguración + + + 1/2 + - XML preset file (*.xpf) - archivo de preconfiguración XML (*.xpf) - - - Pitch range (semitones) - Extensión (en semitonos) - - - RANGE - EXTENSIÓN - - - 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 - - - Miscellaneous - Diversos - - - Plugin - Plugin - - - - 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: - - - 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: - - - - LadspaControl - - Link channels - Enlazar canales - - - - LadspaControlDialog - - Link Channels - Enlazar Canales - - - Channel - Canal - - - - 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. - - - - LcdSpinBox - - Please enter a new value between %1 and %2: - Por favor ingresa un nuevo valor entre %1 y %2: - - - - LeftRightNav - - Previous - Anterior - - - Next - Siguiente - - - Previous (%1) - Anterior (%1) - - - Next (%1) - Siguiente (%1) - - - - LfoController - - LFO Controller - Controlador LFO - - - Base value - Valor base - - - Oscillator speed - Velocidad del oscilador - - - Oscillator amount - Cantidad del oscilador - - - Oscillator phase - Fase del oscilador - - - Oscillator waveform - Forma de onda del oscilador - - - Frequency Multiplier - Multiplicador de frecuencia - - - - LfoControllerDialog - - LFO - LFO - - - LFO Controller - Controlador LFO - - - BASE - BASE - - - Base amount: - Cantidad base: - - - todo - La ayuda para este ítem aún se encuentra pendiente - - - SPD - VEL - - - 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. - - - 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 - - - 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. - - - Click here for a sine-wave. - Haz click aquí para elegir una onda-sinusoidal. - - - Click here for a triangle-wave. - Haz click aquí para elegir una onda triangular. - - - Click here for a saw-wave. - Haz click aquí para elegir una onda de sierra. - - - Click here for a square-wave. - Haz click aquí para elegir una onda cuadrada. - - - 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. - - - Click here for a 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. - - - AMNT - CANT - - - - LmmsCore - - Generating wavetables - Generando tablas de onda - - - Initializing data structures - Inicializando estructuras de datos - - - Opening audio and midi devices - Abriendo dispositivos de audio y midi - - - Launching mixer threads - Lanzando tareas del mezclador - - - - MainWindow - - &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 + + Quantize: + + &File Archivo (&F) - &Recently Opened Projects - Proyectos &Recientes + + &Edit + &Editar - Save as New &Version - Guardar como una Nueva &Versión + + &Quit + Salir (&Q) - E&xport Tracks... - E&xportar Pistas... + + Esc + - Online Help - Ayuda en línea + + &Insert Mode + - What's This? - ¿Qué es esto? + + F + - Open Project - Abrir Proyecto + + &Velocity Mode + - Save Project - Guardar proyecto + + D + - Project recovery - Recuperar proyecto + + Select All + - 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. - - - Export &MIDI... - Exportar &MIDI... - - - - MeterDialog - - Meter Numerator - Numerador del Compás - - - Meter Denominator - Denominador del Compás - - - TIME SIG - COMPÁS - - - - MeterModel - - Numerator - Numerador - - - Denominator - Denominador - - - - MidiController - - MIDI Controller - Controlador MIDI - - - unnamed_midi_controller - controlador_midi_sin_nombre - - - - 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 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. - - - Track - Pista - - - - MidiJack - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - Ha fallado el servidor JACK - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Parece ser que el servidor JACK está apagado. - - - - 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 - - - Base velocity - Velocidad básica - - - - MidiSetupWidget - - DEVICE - DISPOSITIVO - - - - MonstroInstrument - - Osc 1 Volume - Osc 1 Volumen - - - Osc 1 Panning - Osc 1 Paneo - - - Osc 1 Coarse detune - Osc 1 desafinación gruesa - - - Osc 1 Fine detune left - Osc 1 desafinación fina izquierda - - - Osc 1 Fine detune right - Osc 1 desafinación fina derecha - - - Osc 1 Stereo phase offset - Osc 1 desfase estéreo - - - Osc 1 Pulse width - Osc 1 Amplitud del pulso - - - Osc 1 Sync send on rise - Osc 1 Enviar Sinc. al subir - - - Osc 1 Sync send on fall - Osc 1 Enviar Sinc al bajar - - - Osc 2 Volume - Osc 2 Volumen - - - Osc 2 Panning - Osc 2 Paneo - - - Osc 2 Coarse detune - Osc 2 desafinación gruesa - - - Osc 2 Fine detune left - Osc 2 desafinación fina izquierda - - - Osc 2 Fine detune right - Osc 2 desafinación fina derecha - - - Osc 2 Stereo phase offset - Osc 2 desfase estéreo - - - Osc 2 Waveform - Osc 2 Forma de onda - - - Osc 2 Sync Hard - Osc 2 Sincronización Dura - - - Osc 2 Sync Reverse - Osc 2 Sincronización reversa - - - Osc 3 Volume - Osc 3 Volumen - - - Osc 3 Panning - Osc 3 Paneo - - - Osc 3 Coarse detune - Osc 3 desafinación gruesa - - - Osc 3 Stereo phase offset - Osc 3 desfase estéreo - - - Osc 3 Sub-oscillator mix - Osc 3 Mezcla del sub-oscilador - - - Osc 3 Waveform 1 - Osc 3 Onda 1 - - - Osc 3 Waveform 2 - Osc 3 Onda 2 - - - Osc 3 Sync Hard - Osc 3 Sincronización Dura - - - Osc 3 Sync Reverse - Osc 3 Sincronización Reversa - - - LFO 1 Waveform - LFO 1 Forma de onda - - - LFO 1 Attack - LFO 1 Ataque - - - LFO 1 Rate - LFO 1 Velocidad - - - LFO 1 Phase - LFO 1 Fase - - - LFO 2 Waveform - LFO 2 Forma de onda - - - LFO 2 Attack - LFO 2 Ataque - - - LFO 2 Rate - LFO 2 Velocidad - - - LFO 2 Phase - LFO 2 Fase - - - Env 1 Pre-delay - Env 1 Pre-retraso - - - Env 1 Attack - Env 1 Ataque - - - Env 1 Hold - Env 1 Mantener - - - Env 1 Decay - Env 1 Caída - - - Env 1 Sustain - Env 1 Sostén - - - Env 1 Release - Env 1 Disipación - - - Env 1 Slope - Env 1 Curva - - - Env 2 Pre-delay - Env 2 Pre-retraso - - - Env 2 Attack - Env 2 Ataque - - - Env 2 Hold - Env 2 Mantener - - - Env 2 Decay - Env 2 Caída - - - Env 2 Sustain - Env 2 Sostén - - - Env 2 Release - Env 2 Disipación - - - Env 2 Slope - Env 2 Curva - - - Osc2-3 modulation - Modulación osc 2-3 - - - Selected view - Vista seleccionada - - - 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 - Fas1-Env1 - - - Phs1-Env2 - Fas1-Env2 - - - Phs1-LFO1 - Fas1-LFO1 - - - Phs1-LFO2 - Fas1-LFO2 - - - Phs2-Env1 - Fas2-Env1 - - - Phs2-Env2 - Fas2-Env2 - - - Phs2-LFO1 - Fas2-LFO1 - - - Phs2-LFO2 - Fas2-LFO2 - - - Phs3-Env1 - Fas3-Env1 - - - Phs3-Env2 - Fas3-Env2 - - - Phs3-LFO1 - Fas3-LFO1 - - - Phs3-LFO2 - Fas3-LFO2 - - - Pit1-Env1 - Alt1-Env1 - - - Pit1-Env2 - Alt1-Env2 - - - Pit1-LFO1 - Alt1-LFO1 - - - Pit1-LFO2 - Alt1-LFO2 - - - Pit2-Env1 - Alt2-Env1 - - - Pit2-Env2 - Alt2-Env2 - - - Pit2-LFO1 - Alt2-LFO1 - - - Pit2-LFO2 - Alt2-LFO2 - - - Pit3-Env1 - Alt3-Env1 - - - Pit3-Env2 - Alt3-Env2 - - - Pit3-LFO1 - Alt3-LFO1 - - - Pit3-LFO2 - Alt3-LFO2 - - - PW1-Env1 - AP1-Env1 - - - PW1-Env2 - AP1-Env2 - - - PW1-LFO1 - AP1-LFO1 - - - PW1-LFO2 - AP1-LFO2 - - - Sub3-Env1 - Sub3-Env1 - - - Sub3-Env2 - Sub3-Env2 - - - Sub3-LFO1 - Sub3-LFO1 - - - Sub3-LFO2 - Sub3-LFO2 - - - Sine wave - Onda Sinusoidal - - - Bandlimited Triangle wave - Onda triangular de BandaLimitada - - - Bandlimited Saw wave - Onda de sierra de bandaLimitada - - - Bandlimited Ramp wave - Onda de rampa de bandaLimitada - - - Bandlimited Square wave - Onda cuadrada de BandaLimitada - - - Bandlimited Moog saw wave - Onda de sierra Moog de banda Limitada - - - Soft square wave - Onda Cuadrada suave - - - Absolute sine wave - Onda Sinusoidal Absoluta - - - Exponential wave - Onda Exponencial - - - White noise - Ruido blanco - - - Digital Triangle wave - Onda triangular digital - - - Digital Saw wave - Onda de sierra digital - - - Digital Ramp wave - Onda de Rampa digital - - - Digital Square wave - Onda Cuadrada digital - - - Digital Moog saw wave - Onda de sierra Moog digital - - - Triangle wave - Onda triangular - - - Saw wave - Onda de sierra - - - Ramp wave - Onda de rampa - - - Square wave - Onda Cuadrada - - - Moog saw wave - Onda de sierra Moog - - - Abs. sine wave - Onda sinus. abs - - - Random - Aleatorio - - - Random smooth - Aleatoria suave - - - - MonstroView - - Operators view - Vista de Operadores - - - 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 - - - cents - cents - - - Finetune right - Desafinación fina derecha - - - 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 - - - Modulation amount - Cantidad de modulación - - - - MultitapEchoControlDialog - - Length - Duración - - - Step length: - Longitud del paso: - - - Dry - Limpio - - - Dry Gain: - Ganancia limpia: - - - Stages - Etapas - - - Lowpass stages: - Etapas de pasoBajo: - - - Swap inputs - Intercambiar entradas - - - Swap left and right input channel for reflections - Intercambiar los canales de entrada izquierdo y derecho para reflexiones - - - - NesInstrument - - Channel 1 Coarse detune - Canal 1 desafinación gruesa - - - Channel 1 Volume - Canal 1 Volumen - - - Channel 1 Envelope length - Canal 1 Longitud de la Envolvente - - - Channel 1 Duty cycle - Canal 1 Ciclo de trabajo - - - Channel 1 Sweep amount - Canal 1 Cantidad de Barrido - - - Channel 1 Sweep rate - Canal 1 Tasa de Barrido - - - 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 Duty cycle - Canal 2 Ciclo de trabajo - - - Channel 2 Sweep amount - Canal 2 Cantidad de Barrido - - - Channel 2 Sweep rate - Canal 2 Tasa de Barrido - - - Channel 3 Coarse detune - Canal 3 desafinación gruesa - - - Channel 3 Volume - Canal 3 Volumen - - - Channel 4 Volume - Canal 4 Volumen - - - Channel 4 Envelope length - Canal 4 Longitud de la Envolvente - - - Channel 4 Noise frequency - Canal 4 Frecuencia de Ruido - - - Channel 4 Noise frequency sweep - Canal 4 Barrido de la frecuencia de ruido - - - Master volume - Volumen maestro - - - Vibrato - Vibrato - - - - NesInstrumentView - - Volume - Volumen - - - Coarse detune - Desafinación gruesa - - - Envelope length - Longitud de la Envolvente - - - Enable channel 1 - Habilitar el canal 1 - - - Enable envelope 1 - Habilitar la envolvente 1 - - - Enable envelope 1 loop - Habilitar el bucle de la envolvente 1 - - - Enable sweep 1 - Habilitar barrido 1 - - - Sweep amount - Cantidad de barrido - - - Sweep rate - Tasa de barrido - - - 12.5% Duty cycle - Ciclo de trabajo 12.5% - - - 25% Duty cycle - Ciclo de trabajo 25% - - - 50% Duty cycle - Ciclo de trabajo 50% - - - 75% Duty cycle - Ciclo de trabajo 75% - - - Enable channel 2 - Habilitar el canal 2 - - - Enable envelope 2 - Habilitar la envolvente 2 - - - Enable envelope 2 loop - Habilitar el bucle de la envolvente 2 - - - Enable sweep 2 - Habilitar barrido 2 - - - Enable channel 3 - Habilitar el canal 3 - - - Noise Frequency - Frecuencia de Ruido - - - Frequency sweep - Barrido de Frecuencia - - - Enable channel 4 - Habilitar el canal 4 - - - Enable envelope 4 - Habilitar la envolvente 4 - - - Enable envelope 4 loop - Habilitar el bucle de la envolvente 4 - - - Quantize noise frequency when using note frequency - Cuantizar la frecuencia de ruido al usar frecuencia de nota - - - Use note frequency for noise - Usar frecuencia de nota para ruido - - - Noise mode - Modo de Ruido - - - Master Volume - Volumen Maestro - - - Vibrato - Vibrato - - - - 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 + + A + PatchesDialog + + Qsynth: Channel Preset Qsynth: Preconfiguración del Canal + + Bank selector Selector de banco + + Bank Banco + + Program selector Selector de programa + + Patch Ajuste + + Name Nombre + + OK De acuerdo + + Cancel Cancelar - - PatmanView - - Open 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. - - - 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 - - Open in piano-roll - Abrir en piano-roll - - - Clear all notes - Borrar todas las notas - - - Reset name - Restaurar nombre - - - Change name - Cambiar nombre - - - Add steps - Agregar pasos - - - Remove steps - Quitar pasos - - - Clone Steps - Clonar Pasos - - - - PeakController - - Peak Controller - Controlador de Picos - - - Peak Controller Bug - Error en el controlador de Picos - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Debido a un error en versiones antiguas de LMMS, el controlador de Picos tal vez no se conecte apropiadamente. Por favor asegúrate que los controladores de picos estén conectados apropiadamente y vuelve a guardar este archivo. Disculpa los inconvenientes. - - - - PeakControllerDialog - - PEAK - PICO - - - LFO Controller - Controlador LFO - - - - PeakControllerEffectControlDialog - - BASE - BASE - - - Base amount: - Cantidad base: - - - Modulation amount: - Cantidad de modulación: - - - Attack: - Ataque: - - - Release: - Disipación: - - - AMNT - CANT - - - MULT - MULT - - - Amount Multiplicator: - Multiplicador de Cantidad: - - - ATCK - ATQ - - - DCAY - CAI - - - Treshold: - Umbral: - - - TRSH - UMBRAL - - - - 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 - - - - 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 - - - Select all notes on this key - Seleccionar todas las notas en este tono - - - - PianoRollWindow - - Play/pause current pattern (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) - 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 - - - Copy paste controls - Controles de copiado y pegado - - - Timeline controls - Controles de la línea de Tiempo - - - Zoom and note controls - Controles de acercamiento y nota - - - Piano-Roll - %1 - Piano-Roll - %1 - - - Piano-Roll - no pattern - Piano-Roll - sin patrón - - - Quantize - Cuantizar - - - - PianoView - - Base note - Nota base - - - - Plugin - - Plugin not found - Complemento no encontrado - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - ¡El complemento "%1" no fue encontrado o no se pudo cargar! -Razón: "%2" - - - Error while loading plugin - Error al cargar el complemento - - - Failed to load plugin "%1"! - Falló la carga del complemento "%1"! - - PluginBrowser - Instrument 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 - Instrumentos - - - - 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! - - - - 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í - - - - ProjectRenderer - - WAV-File (*.wav) - Archivo-WAV (*.wav) - - - Compressed OGG-File (*.ogg) - Archivo OGG comprimido (*.ogg) - - - FLAC-File (*.flac) - Archivo FLAC (*.flac) - - - Compressed MP3-File (*.mp3) - Compresor De Archivos MP3 (*.mp3) - - - - QWidget - - Name: - Nombre: - - - 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: - Archivo: - - - File: %1 - Archivo: %1 - - - - RenameDialog - - Rename... - Renombrar... - - - - ReverbSCControlDialog - - Input - Entrada - - - Input Gain: - Ganancia de Entrada: - - - Size - Tamaño - - - Size: - Tamaño: - - - Color - Color - - - Color: - Color: - - - Output - Salida - - - Output Gain: - Ganancia de Salida: - - - - ReverbSCControls - - Input Gain - Ganancia de entrada - - - Size - Tamaño - - - Color - Color - - - Output Gain - Ganancia de salida - - - - 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 - - - - SampleTCOView - - double-click to select sample - Haz doble click para seleccionar una muestra - - - Delete (middle mousebutton) - Borrar (click del medio) - - - Cut - Cortar - - - Copy - Copiar - - - Paste - Pegar - - - Mute/unmute (<%1> + middle click) - Silenciar/Escuchar (<%1> + click del medio) - - - - SampleTrack - - Sample track - Pista de muestras - - - Volume - Volumen - - - Panning - Paneo - - - - SampleTrackView - - Track volume - Volumen de la pista - - - Channel volume: - Volumen del canal: - - - VOL - VOL - - - Panning - Paneo - - - Panning: - Paneo: - - - PAN - PAN - - - - SetupDialog - - Setup LMMS - Configurar LMMS - - - General settings - Configuración general - - - BUFFER SIZE - TAMAÑO DEL BÚFER - - - Reset to default-value - Restaurar valores por defecto - - - MISC - MISC - - - Enable tooltips - Habilitar Consejos - - - Show restart warning after changing settings - Mostrar advertencia de reinicio luego de cambiar la configuración - - - Compress project files per default - Comprimir archivos de proyecto por defecto - - - One instrument track window mode - Una ventana de instrumento a la vez - - - HQ-mode for output audio-device - modo HQ para el dispositivo de salida de audio - - - Compact track buttons - Botones de pista compactos - - - 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 - - - LANGUAGE - IDIOMA - - - Paths - Lugares - - - LMMS working directory - Directorio de trabajo de LMMS - - - VST-plugin directory - Directorio de complementos VST - - - Background artwork - Imágenes de fondo - - - STK rawwave directory - Directorio para STK rawwave - - - Default Soundfont File - Archivo SoundFont por defecto - - - Performance settings - Configuración de rendimiento - - - UI effects vs. performance - Efectos gráficos vs. rendimiento - - - Smooth scroll in Song Editor - Avance suave en Editor de Canción - - - Show playback cursor in AudioFileProcessor - Mostrar cursor de reproducción en el AudioFileProcessor - - - Audio settings - Configuración de Audio - - - AUDIO INTERFACE - INTERFAZ DE AUDIO - - - MIDI settings - Configuración MIDI - - - MIDI INTERFACE - INTERFAZ MIDI - - - 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 - - - Auto-save interval: %1 - Intervalo de auto-guardado: %1 - - - 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. - - - - Song - - Tempo - Tempo - - - Master volume - Volumen maestro - - - Master pitch - Transporte - - - 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 - - - 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) - - - LMMS Error report - Reporte de errores LMMS - - - Save project - Guardar proyecto - - - - 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. - - - 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. - - - - 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 - - - Edit actions - Acciones de edición - - - Timeline controls - Controles de la línea de Tiempo - - - Zoom controls - Controles de Acercamiento - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - Espectro lineal - - - Linear Y axis - Eje Y lineal - - - - SpectrumAnalyzerControls - - Linear spectrum - Espectro lineal - - - Linear Y axis - Eje Y lineal - - - Channel mode - Modo del canal - - - - SubWindow - - Close - Cerrar - - - Maximize - Maximizar - - - Restore - Restaurar - - - - TabWidget - - Settings for %1 - Configuración para %1 - - - - 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 - - - - TimeDisplayWidget - - click to change time units - Haz click aquí para modificar las unidades de tiempo - - - MIN - MIN - - - SEC - SEG - - - MSEC - MSEG - - - BAR - COMPAS - - - BEAT - PULSO - - - TICK - TICK - - - - TimeLineWidget - - Enable/disable auto-scrolling - Activar/Desactivar avance automático - - - Enable/disable loop-points - Activar/Desactivar blucle - - - After stopping go back to begin - Al detenerse volver al principio - - - 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 - - - - 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 Track %1 (%2/Total %3) - Cargando Pista %1 (%2/Total %3) - - - - TrackContentObject - - Mute - Silencio - - - - TrackContentObjectView - - 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) - - - Delete (middle mousebutton) - Borrar (click del medio ) - - - Cut - Cortar - - - Copy - Copiar - - - Paste - Pegar - - - Mute/unmute (<%1> + middle click) - Silenciar/Escuchar (<%1> + click del medio) - - - - 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'. - - - Actions for this track - Acciones para esta pista - - - Mute - Silencio - - - Solo - Solo - - - Mute this track - Silenciar esta pista - - - Clone this track - Clonar esta pista - - - Remove this track - Eliminar esta pista - - - Clear this track - Limpiar esta pista - - - FX %1: %2 - FX %1: %2 - - - 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 - - - - 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 - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Usar modulación de amplitud para modular el oscilador 1 con el oscilador 2 - - - Mix output of oscillator 1 & 2 - Mezclar la salida de los osciladores 1 y 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 - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Usar modulación de fase para modular el oscilador 2 con el oscilador 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 - - - Mix output of oscillator 2 & 3 - Mezclar la salida de los osciladores 2 y 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 - - - 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. - - - Use a sine-wave for current oscillator. - Usar una onda sinusoidal para el oscilador actual. - - - Use a triangle-wave for current oscillator. - Usar una onda triangular para el oscilador actual. - - - Use a saw-wave for current oscillator. - Usar una onda de sierra para el oscilador actual. - - - Use a square-wave for current oscillator. - Usar una onda cuadrada para el oscilador actual. - - - Use a moog-like saw-wave for current oscillator. - Usar una onda de sierra tipo moog para el oscilador actual. - - - Use an exponential wave for current oscillator. - Usar una onda exponencial para el oscilador actual. - - - Use white-noise for current oscillator. - Usar ruido-blanco para el oscilador actual. - - - Use a user-defined waveform for current oscillator. - Usar una onda definida por el usuario para el oscilador actual. - - - - VersionedSaveDialog - - Increment version number - Incrementar el número de versión - - - Decrement version number - Disminuír el número de versión - - - already exists. Do you want to replace it? - ¡Ya existe! ¿Deseas reemplazarlo? - - - - VestigeInstrumentView - - Open other VST-plugin - Abrir otro complemento 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. - Haz click aquí si deseas abrir otro complemento VST. Se mostrará un diálogo que te permitirá elegir el archivo que desees. - - - 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). - - - 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. - - - 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 - - - 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). - - - 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 /> - - - - VstPlugin - - Loading plugin - Cargando complemento - - - 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... - - - The VST plugin %1 could not be loaded. - El complemento VST %1 no se ha podido cargar. - - - - WatsynInstrument - - Volume A1 - A1 volumen - - - Volume A2 - A2 volumen - - - Volume B1 - B1 volumen - - - Volume B2 - B2 volumen - - - Panning A1 - A1 paneo - - - Panning A2 - A2 paneo - - - Panning B1 - B1 paneo - - - Panning B2 - B2 paneo - - - Freq. multiplier A1 - A1 multiplicador de frec. - - - Freq. multiplier A2 - A2 multiplicador de frec. - - - Freq. multiplier B1 - B1 multiplicador de frec. - - - Freq. multiplier B2 - B2 multiplicador de frec. - - - Left detune A1 - A1 desafin izq - - - Left detune A2 - A2 desafin izq - - - Left detune B1 - B1 desafin izq - - - Left detune B2 - B2 desafin izq - - - Right detune A1 - A1 desafin der - - - Right detune A2 - A2 desafin der - - - Right detune B1 - B1 desafin der - - - Right detune B2 - B2 desafin der - - - A-B Mix - Mezcla A-B - - - A-B Mix envelope amount - Cantidad de envolvente de la Mezcla A-B - - - A-B Mix envelope attack - Ataque de la envolvente de la mezcla A-B - - - A-B Mix envelope hold - Mantenido de la envolvente de la mezcla A-B - - - A-B Mix envelope decay - Caída de la envolvente de la mezcla A-B - - - A1-B2 Crosstalk - Diafonía A1-B2 - - - A2-A1 modulation - Modulación A2-A1 - - - B2-B1 modulation - Modulación B2-B1 - - - Selected graph - Gráfico seleccionado - - - - WatsynView - - 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 - - - Filter Frequency - Frecuencia del Filtro - - - Filter Resonance - Resonancia del Filtro - - - Bandwidth - Ancho De Banda - - - FM Gain - Ganancia FM - - - Resonance Center Frequency - Frecuencia Central de Resonancia - - - Resonance Bandwidth - Ancho de banda de Resonancia - - - Forward MIDI Control Change Events - Enviar Eventos MIDI de Cambio de Control - - - - ZynAddSubFxView - - Show GUI - Mostrar IGU - - - 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. - - - Portamento: - Portamento: - - - PORT - PORT - - - 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 - - - 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. - - - Click here for a triangle-wave. - Haz click aquí para elegir una onda triangular. - - - Click here for a saw-wave. - Haz click aquí para elegir una onda de sierra. - - - Click here for a square-wave. - Haz click aquí para elegir una onda cuadrada. - - - Click here for white-noise. - Haz click aquí para elegir ruido blanco. - - - Click here for a user-defined shape. - Haz click aquí para elegir una onda personalizada. - - - - 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 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 - - - 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. - - - Triangle wave - Onda triangular - - - Click here for a triangle-wave. - Haz click aquí para elegir una onda triangular. - - - Square wave - Onda cuadrada - - - Click here for a square-wave. - Haz click aquí para seleccionar una onda cuadrada. - - - White noise wave - 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 - - Assign to: - Asignar a: - - - New FX Channel - Nuevo Canal FX - - - - graphModel - - Graph - Gráfico - - - - kickerInstrument - - Start frequency - Frecuencia Inicial - - - End frequency - Frecuencia Final - - - Gain - Ganancia - - - Length - Duración - - - Distortion Start - Inicio de la distorsión - - - Distortion End - Final de la distorsión - - - Envelope Slope - Curvatura de la Envolvente - - - Noise - Ruido - - - Click - Chasquido - - - Frequency Slope - Curvatura de la Frecuencia - - - Start from note - Empezar en la nota - - - End to note - Terminar en la nota - - - - kickerInstrumentView - - Start frequency: - Frecuencia Inicial: - - - End frequency: - Frecuencia Final: - - - Gain: - Ganancia: - - - Frequency Slope: - Curvatura de la Frecuencia: - - - Envelope Length: - Longitud de la Envolvente: - - - Envelope Slope: - Curvatura de la Envolvente: - - - Click: - Chasquido: - - - Noise: - Ruido: - - - Distortion Start: - Inicio de la distorsión: - - - Distortion End: - Final de la distorsión: - - - - 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 - - Plugins - Complementos - - - Description - Descripción - - - - ladspaPortDialog - - Ports - Puertos - - - Name - Nombre - - - Rate - Tasa - - - Direction - Dirección - - - Type - Tipo - - - Min < Default < Max - Min < Defecto < Max - - - Logarithmic - Logarítmico - - - SR Dependent - Depende de SR - - - Audio - Audio - - - Control - Control - - - Input - Entrada - - - Output - Salida - - - Toggled - Alternado - - - Integer - Entero - - - Float - Decimal - - - Yes - Si - - - - lb302Synth - - VCF Cutoff Frequency - FCV frecuencia de corte - - - VCF Resonance - FCV Resonancia - - - VCF Envelope Mod - FCV Mod de Envolvente - - - VCF Envelope Decay - FCV Caída de Envolvente - - - Distortion - Distorsión - - - Waveform - Forma de Onda - - - Slide Decay - Duración del Portamento - - - Slide - Portamento - - - Accent - Acento - - - Dead - Sordina - - - 24dB/oct Filter - Filtro 24dB/oct - - - - lb302SynthView - - Cutoff Freq: - Frec.de Corte: - - - Resonance: - Resonancia: - - - Env Mod: - Mod Env: - - - Decay: - Caída: - - - 303-es-que, 24dB/octave, 3 pole filter - Filtro Tipolar de 24dB/octava tipo-303 - - - Slide Decay: - Duración del Portamento: - - - DIST: - DIST: - - - Saw wave - Onda de sierra - - - Click here for a saw-wave. - Haz click aquí para elegir una onda de sierra. - - - Triangle wave - Onda triangular - - - Click here for a triangle-wave. - Haz click aquí para seleccionar una onda triangular. - - - Square wave - Onda Cuadrada - - - Click here for a square-wave. - Haz click aquí para elegir una onda cuadrada. - - - Rounded square wave - Onda Cuadrada-redondeada - - - Click here for a square-wave with a rounded end. - Haz click aquí para elegir una onda cuadrada-redondeada. - - - Moog wave - Onda Moog - - - Click here for a moog-like wave. - Haz click aquí para elegir una onda tipo moog. - - - Sine wave - Onda Sinusoidal - - - Click for a sine-wave. - Haz click aquí para elegir una onda-sinusoidal. - - - White noise wave - Ruido blanco - - - Click here for an exponential wave. - Haz click aquí para elegir una onda exponencial. - - - Click here for white-noise. - Haz click aquí para elegir ruido blanco. - - - Bandlimited saw wave - Onda de sierra de banda limitada - - - Click here for bandlimited saw wave. - Haz click aquí para elegir una onda de sierra de banda limitada. - - - Bandlimited square wave - Onda cuadrada de banda limitada - - - Click here for bandlimited square wave. - Haz click aquí para elegir una onda cuadrada de banda limitada. - - - Bandlimited triangle wave - Onda triangular de banda limitada - - - Click here for bandlimited triangle wave. - Haz click aquí para elegir una onda triangular de banda limitada. - - - Bandlimited moog saw wave - Onda de sierra Moog de banda limitada - - - Click here for bandlimited moog saw wave. - Haz click aquí para elegir una onda de sierra tipo Moog de banda limitada. - - - - malletsInstrument - - Hardness - Dureza - - - Position - Posición - - - Vibrato Gain - Ganancia del Vibrato - - - Vibrato Freq - Frec del Vibrato - - - Stick Mix - Golpe - - - Modulator - Modulador - - - Crossfade - Fundido cruzado - - - LFO Speed - Velocidad del LFO - - - LFO Depth - Profundidad del LFO - - - ADSR - ADSR - - - Pressure - Presión - - - Motion - Movimiento - - - Speed - Velocidad - - - Bowed - Frotado - - - Spread - Propagación - - - Marimba - Marimba - - - Vibraphone - Vibráfono - - - Agogo - Agogo - - - Wood1 - Madera1 - - - Reso - Reso - - - Wood2 - Madera2 - - - Beats - Latidos - - - Two Fixed - Dos-Fijos - - - Clump - Golpe seco - - - Tubular Bells - Campanas tubulares - - - Uniform Bar - Barra uniforme - - - Tuned Bar - Barra afinada - - - Glass - Vidrio - - - Tibetan Bowl - Cuencos Tibetanos - - - - 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. - - - - 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. - - - 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 - - - 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 - - Distortion - Distorsión - - - Volume - Volumen - - - - organicInstrumentView - - Distortion: - Distorsión: - - - Volume: - Volumen: - - - Randomise - Aleatorizar - - - Osc %1 waveform: - Osc %1 forma de onda: - - - Osc %1 volume: - Osc %1 Volumen: - - - Osc %1 panning: - Osc %1 paneo: - - - 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 - - - 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 - - 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 + + A native amplifier plugin + Un complemento de amplificación nativo - Plugin for freely manipulating stereo output - Complemento para manipular libremente la salida estéreo + + 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 controlling knobs with sound peaks - Complemento para controlar perillas a través de los picos de sonido + + Boost your bass the fast and simple way + Realza tus graves de forma rápida y fácil - 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 + + 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 - 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. + + 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 + 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. - Player for SoundFont files - Reproductor de archivos SoundFont + + A graphical spectrum analyzer. + - Emulation of GameBoy (TM) APU - Emulación del APU de GameBoy (TM) + + 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 - Customizable wavetable synthesizer - Sintetizador de tabla de ondas personalizable + + Plugin for freely manipulating stereo output + Complemento para manipular libremente la salida estéreo - 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 + + 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 native amplifier plugin - Un complemento de amplificación nativo + + A stereo field visualizer. + - Carla Rack Instrument - Bandeja de complementos Carla + + VST-host for using VST(i)-plugins within LMMS + Anfitrión VST para usar complementos VST(i) en LMMS - 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 + + Vibrating string modeler + Modelador de cuerdas vibrantes + 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 + + 4-oscillator modulatable wavetable synth + Sintetizador de tabla de ondas de 4 osciladores modulables - 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 + + plugin for waveshaping + complemento para modelado de ondas + Mathematical expression parser Analizador de Expresión Matemática - - - sf2Instrument - Bank - Banco + + Embedded ZynAddSubFX + ZynAddSubFX integrado - Patch - Ajuste + + An all-pass filter allowing for extremely high orders. + - Gain - Ganancia + + Granular pitch shifter + - Reverb - Reverberancia + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + - Reverb Roomsize - Tamaño del recinto + + Basic Slicer + - Reverb Damping - Absorción - - - Reverb Width - Amplitud de la reverberancia - - - Reverb Level - Nivel de reverberancia - - - Chorus - Coro - - - Chorus Lines - Líneas de coro - - - Chorus Level - Nivel de coro - - - Chorus Speed - Velocidad de coro - - - Chorus Depth - Profundidad de coro - - - A soundfont %1 could not be loaded. - Una soundfont %1 no se pudo cargar. + + Tap to the beat + - sf2InstrumentView + PluginEdit - Open other SoundFont file - Abrir otro archivo SoundFont + + Plugin Editor + - Click here to open another SF2 file - Haz click aquí para abrir otro archivo SF2 + + Edit + - Choose the patch - Elige el lote + + Control + Control - Gain - Ganancia + + MIDI Control Channel: + - Apply reverb (if supported) - Aplicar reverberancia (si es posible) + + N + - 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. + + Output dry/wet (100%) + - Reverb Roomsize: - Tamaño del recinto: + + Output volume (100%) + - Reverb Damping: - Absorción: + + Balance Left (0%) + - Reverb Width: - Amplitud de la reverberancia: + + + Balance Right (0%) + - Reverb Level: - Nivel de reverberancia: + + Use Balance + - Apply chorus (if supported) - Aplicar coro (si es posible) + + Use Panning + - 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. + + Settings + Configuración - Chorus Lines: - Líneas de coro: + + Use Chunks + - Chorus Level: - Nivel de coro: + + Audio: + - Chorus Speed: - Velocidad de coro: + + Fixed-Size Buffer + - Chorus Depth: - Profundidad de coro: + + Force Stereo (needs reload) + - Open SoundFont file - Abrir archivo SoundFont + + MIDI: + - SoundFont2 Files (*.sf2) - Archivos SoundFont2 (*.sf2) + + Map Program Changes + + + + + Send Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + + + + + Save State + + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + Tipo: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + - sfxrInstrument + PluginFactory - Wave Form - Forma de Onda + + 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! - sidInstrument + PluginListDialog - Cutoff - Corte + + Carla - Add New + - Resonance - Resonancia + + Requirements + - Filter type - Tipo de filtro + + With Custom GUI + - Voice 3 off - Voz 3 apagada + + With CV Ports + - Volume - Volumen + + Real-time safe only + - Chip model - Modelo del chip + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + - sidInstrumentView + PluginParameter - Volume: - Volumen: + + Form + - Resonance: - Resonancia: + + Parameter Name + - Cutoff frequency: - Frecuencia de corte: + + TextLabel + - 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 + PluginRefreshDialog - WIDE - ANCHO + + Plugin Refresh + - Width: - Amplitud: + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + - stereoEnhancerControls + PluginWidget - Width - Amplitud + + + + + + Frame + + + + + Enable + + + + + On/Off + Encendido/Apagado + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + - stereoMatrixControlDialog + ProjectRenderer - Left to Left Vol: - Vol izq a izq: + + WAV (*.wav) + WAV (*.wav) - Left to Right Vol: - Vol izq a der: + + FLAC (*.flac) + FLAC (*.flac) - Right to Left Vol: - Vol der a izq: + + OGG (*.ogg) + OGG (*.ogg) - Right to Right Vol: - Vol der a der: + + MP3 (*.mp3) + MP3 (*.mp3) - stereoMatrixControls + QGroupBox - Left to Left - izq a izq - - - Left to Right - izq a der - - - Right to Left - der a izq - - - Right to Right - der a der + + + Settings for %1 + - vestigeInstrument + QObject - Loading plugin - Cargando complemento + + Reload Plugin + - Please wait while loading VST-plugin... - Por favor espera mientras se carga el complemento VST... + + Show GUI + Mostrar IGU + + + + Help + Ayuda + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + - vibed + QWidget - String %1 volume - Volumen Cuerda %1 + + + Name: + Nombre: - String %1 stiffness - Rigidez Cuerda %1 + + Maker: + Creador: - Pick %1 position - Posición del plectro %1 + + Copyright: + Derechos de autor: - Pickup %1 position - Posición de micrófono %1 + + Requires Real Time: + Requiere Tiempo Real: - Pan %1 - Pan %1 + + + + Yes + Si - Detune %1 - Desafinación %1 + + + + No + No - Fuzziness %1 - Borrosidad %1 + + Real Time Capable: + Ejecutable en Tiempo Real: - Length %1 - Longitud %1 + + In Place Broken: + Conflicto de puertos: - Impulse %1 - Impulso %1 + + Channels In: + Canales entrantes: - Octave %1 - Octava %1 + + Channels Out: + Canales salientes: + + + + File: %1 + Archivo: %1 + + + + File: + Archivo: - vibedView + XYControllerW - Volume: - Volumen: + + XY Controller + - The 'V' knob sets the volume of the selected string. - La perilla 'V' define el volumen de la cuerda seleccionada. + + X Controls: + - 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. - - - Pan: - Paneo: - - - 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. - - - Detune: - Desafinación: - - - 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. - - - 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. - - - 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 - Ruido blanco - - - User defined wave - Onda definida por el usuario + + Y Controls: + + Smooth - Suavizar + - Click here to smooth waveform. - Haz click aquí para suavizar la onda. + + &Settings + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + + + + + lmms::AudioFileProcessor + + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + 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. + - voiceObject - - Voice %1 pulse width - Voz %1 amplitud de pulso - - - Voice %1 attack - Voz %1 ataque - - - Voice %1 decay - Voz %1 caída - - - Voice %1 sustain - Voz %1 sostén - - - Voice %1 release - Voz %1 disipación - - - Voice %1 coarse detuning - Voz %1 desafinación gruesa - - - Voice %1 wave shape - Voz %1 forma de onda - - - Voice %1 sync - Voz %1 sinc - - - Voice %1 ring modulate - Voz %1 modulación en anillo - - - Voice %1 filtered - Voz %1 filtrada - - - Voice %1 test - Voz %1 prueba - - - - waveShaperControlDialog - - INPUT - ENTRADA - - - Input gain: - Ganancia de Entrada: - - - OUTPUT - SALIDA - - - Output gain: - Ganancia de Salida: - - - Reset waveform - Restaurar 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 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 - - - Clip input - Recortar entrada - - - Clip input signal to 0dB - Recortar señal de entrada a 0dB - - - - waveShaperControls + lmms::BitcrushControls + Input gain - ganancia de entrada + + + Input noise + + + + Output gain - ganancia de salida + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + \ No newline at end of file diff --git a/data/locale/eu.ts b/data/locale/eu.ts new file mode 100644 index 000000000..f23c8682a --- /dev/null +++ b/data/locale/eu.ts @@ -0,0 +1,19034 @@ + + + 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 + + + + AboutJuceDialog + + + About JUCE + + + + + <b>About JUCE</b> + + + + + This program uses JUCE version 3.x.x. + + + + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + + + + + This program uses JUCE version + + + + + AudioDeviceSetupWidget + + + [System Default] + + + + + CarlaAboutW + + + About Carla + Carlari buruz + + + + About + Honi buruz + + + + About text here + Honi buruzko testua hemen + + + + Extended licensing here + Lizentzia hedatua hemen + + + + Artwork + Artelana + + + + Using KDE Oxygen icon set, designed by Oxygen Team. + Osygen taldeak sortutako KDE Oxygen ikono multzoa erabiltzen. + + + + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. + Calf Studio Gear, OpenAV eta OpenOctave proiektuetako zenbait botoi, atzeko plano eta beste artelan txiki batzuk ditu. + + + + VST is a trademark of Steinberg Media Technologies GmbH. + VST marka Steinberg Media Technologies GmbH enpresaren marka erregistratua da. + + + + Special thanks to António Saraiva for a few extra icons and artwork! + Mila esker António Saraivari ikono gehigarriak eta artelana eskaintzeagatik! + + + + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. + LV2 logoa Thorsten Wilmsek diseinatu du, Peter Shorthosen kontzeptu batean oinarrituta. + + + + MIDI Keyboard designed by Thorsten Wilms. + MIDI teklatuaren diseinua: Thorsten Wilms. + + + + Carla, Carla-Control and Patchbay icons designed by DoosC. + Carla, Carla-Control eta Patchbay ikonoen diseinua: DoosC. + + + + Features + Eginbideak + + + + AU/AudioUnit: + AU/AudioUnitatea: + + + + LADSPA: + LADSPA: + + + + + + + + + + + TextLabel + TestuEtiketa + + + + VST2: + VST2: + + + + DSSI: + DSSI: + + + + LV2: + LV2: + + + + VST3: + VST3: + + + + OSC + OSC + + + + Host URLs: + URL ostalariak: + + + + Valid commands: + Baliozko komandoak: + + + + valid osc commands here + baliozko osc komandoa hemen + + + + Example: + Adibidea: + + + + License + Lizentzia + + + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + 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 + Juce ostalaria erabiltzen + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + LeihoNagusia + + + + Rack + + + + + Patchbay + + + + + Logs + Egunkariak + + + + Loading... + Kargatzen... + + + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + + Buffer Size: + Buffer-tamaina: + + + + Sample Rate: + + + + + ? Xruns + ? Xruns + + + + DSP Load: %p% + DSP karga: %p% + + + + &File + &Fitxategia + + + + &Engine + &Motorra + + + + &Plugin + &Plugina + + + + Macros (all plugins) + Makroak (plugin guztiak) + + + + &Canvas + &Oihala + + + + Zoom + Zoom + + + + &Settings + E&zarpenak + + + + &Help + &Laguntza + + + + Tool Bar + + + + + Disk + Diskoa + + + + + Home + Etxea + + + + Transport + Garraioa + + + + Playback Controls + Erreprodukzio-kontrolak + + + + Time Information + Denbora-informazioa + + + + Frame: + Fotograma: + + + + 000'000'000 + 000'000'000 + + + + Time: + Denbora: + + + + 00:00:00 + 00:00:00 + + + + BBT: + BBT: + + + + 000|00|0000 + 000|00|0000 + + + + Settings + Ezarpenak + + + + BPM + BPM + + + + Use JACK Transport + Erabili JACK garraioa + + + + Use Ableton Link + Erabili Ableton esteka + + + + &New + &Berria + + + + Ctrl+N + Ctrl+N + + + + &Open... + &Ireki... + + + + + Open... + Ireki... + + + + Ctrl+O + Ctrl+O + + + + &Save + &Gorde + + + + Ctrl+S + Ctrl+S + + + + Save &As... + Gorde &honela... + + + + + Save As... + Gorde honela... + + + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Quit + I&rten + + + + Ctrl+Q + Ctrl+Q + + + + &Start + &Hasi + + + + F5 + F5 + + + + St&op + &Gelditu + + + + F6 + F6 + + + + &Add Plugin... + Ge&hitu plugina... + + + + Ctrl+A + Ctrl+A + + + + &Remove All + &Kendu dena + + + + Enable + Gaitu + + + + Disable + Desgaitu + + + + 0% Wet (Bypass) + + + + + 100% Wet + %100 heze + + + + 0% Volume (Mute) + %0 bolumena (mutu) + + + + 100% Volume + %100 bolumena + + + + Center Balance + + + + + &Play + &Erreproduzitu + + + + Ctrl+Shift+P + Ctrl+Shift+P + + + + &Stop + &Gelditu + + + + Ctrl+Shift+X + Ctrl+Shift+X + + + + &Backwards + A&tzerantz + + + + Ctrl+Shift+B + Ctrl+Shift+B + + + + &Forwards + A&urrerantz + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + &Ordenatu + + + + Ctrl+G + Ctrl+G + + + + + &Refresh + &Freskatu + + + + Ctrl+R + Ctrl+R + + + + Save &Image... + Gorde &irudia... + + + + Auto-Fit + Automatikoki doitu + + + + Zoom In + Handiagotu + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + Txikiagotu + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + %100eko zooma + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + Erakutsi &tresna-barra + + + + &Configure Carla + &Konfiguratu Carla + + + + &About + &Honi buruz + + + + About &JUCE + &JUCE aplikazioari buruz + + + + About &Qt + &Qt aplikazioari buruz + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + Erakutsi barnekoa + + + + Show External + Erakutsi kanpokoa + + + + Show Time Panel + Erakutsi denbora-panela + + + + Show &Side Panel + Erakutsi &alboko panela + + + + Ctrl+P + + + + + &Connect... + &Konektatu... + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + + + + + &Configure driver... + &Konfiguratu kontrolagailua... + + + + Panic + + + + + Open custom driver panel... + + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + + + + CarlaHostWindow + + + Export as... + Esportatu honela... + + + + + + + Error + Errorea + + + + Failed to load project + Proiektuaren kargak huts egin du + + + + Failed to save project + Proiektua gordetzeak huts egin du + + + + Quit + Irten + + + + Are you sure you want to quit Carla? + Ziur zaude Carla aplikaziotik irten nahi duzula? + + + + Could not connect to Audio backend '%1', possible reasons: +%2 + + + + + Could not connect to Audio backend '%1' + + + + + Warning + Abisua + + + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + + + + + CarlaSettingsW + + + Settings + Ezarpenak + + + + main + nagusia + + + + canvas + oihala + + + + engine + motorra + + + + osc + osc + + + + file-paths + fitxategi-bideak + + + + plugin-paths + plugin-bideak + + + + wine + wine + + + + experimental + esperimentala + + + + Widget + + + + + + Main + Nagusia + + + + + Canvas + Oihala + + + + + Engine + Motorra + + + + File Paths + Fitxategien bide-izenak + + + + Plugin Paths + Pluginen bide-izenak + + + + Wine + Wine + + + + + Experimental + Esperimentala + + + + <b>Main</b> + <b>Nagusia</b> + + + + Paths + Bideak + + + + Default project folder: + Proiektuaren karpeta lehenetsia: + + + + Interface + Interfazea + + + + Use "Classic" as default rack skin + + + + + Interface refresh interval: + Interfazearen freskatze-tartea: + + + + + ms + ms + + + + Show console output in Logs tab (needs engine restart) + + + + + Show a confirmation dialog before quitting + + + + + + Theme + Gaia + + + + Use Carla "PRO" theme (needs restart) + Erabili Carla "PRO" gaia (berrabiarazi behar da) + + + + Color scheme: + Kolore-eskema: + + + + Black + Beltza + + + + System + Sistema + + + + Enable experimental features + Gaitu eginbide esperimentalak + + + + <b>Canvas</b> + <b>Oihala</b> + + + + Bezier Lines + Bezier lerroak + + + + Theme: + Gaia: + + + + Size: + Tamaina: + + + + 775x600 + 775x600 + + + + 1550x1200 + 1550x1200 + + + + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 + + + + + Options + Aukerak + + + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + + + + + Anti-Aliasing + + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + + + + + + Core + Nukleoa + + + + Single Client + Bezero bakarra + + + + Multiple Clients + Bezero anitz + + + + + Continuous Rack + + + + + + Patchbay + + + + + Audio driver: + + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + + + + + Reset Xrun counter after project load + + + + + Plugin UIs + + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + + + + + <b>OSC</b> + + + + + Enable OSC + + + + + Enable TCP port + Gaitu TCP ataka + + + + + Use specific port: + Erabili ataka espezifikoa: + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + Erabili ausaz esleitutako ataka + + + + Enable UDP port + Gaitu UDP ataka + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + + + + + Audio + Audioa + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + Gehitu... + + + + + Remove + Kendu + + + + + Change... + Aldatu... + + + + <b>Plugin Paths</b> + <b>Pluginen bide-izenak</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + Berrabiarazi Carla plugin berriak aurkitzeko + + + + <b>Wine</b> + <b>Wine</b> + + + + Executable + Exekutagarria + + + + Path to 'wine' binary: + 'wine' bitarraren bide-izena: + + + + Prefix + Aurrizkia + + + + Auto-detect Wine prefix based on plugin filename + Detektatu automatikoki Wine aurrizkia pluginaren fitxategi-izenean oinarrituta + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + + + + + High Quality Anti-Aliasing (OpenGL only) + + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + + + + + Force mono plugins as stereo + + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path + + + + + Dialog + + + Carla Control - Connect + Carla kontrola - Konektatu + + + + Remote setup + Urruneko konfigurazioa + + + + UDP Port: + UDP ataka: + + + + Remote host: + Urruneko ostalaria: + + + + TCP Port: + TCP ataka: + + + + Set value + Ezarri balioa + + + + TextLabel + + + + + Scale Points + + + + + DriverSettingsW + + + Driver Settings + + + + + Device: + Gailua: + + + + Buffer size: + Buffer-tamaina: + + + + Sample rate: + + + + + Triple buffer + Buffer hirukoitza + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + + + + + ExportProjectDialog + + + Export project + Esportatu proiektua + + + + Export as loop (remove extra bar) + + + + + Export between loop markers + + + + + Render Looped Section: + + + + + time(s) + + + + + File format settings + Fitxategi-formatuen ezarpenak + + + + File format: + Fitxategi-formatua: + + + + 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: + Bit-sakonera: + + + + 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) + + + + + Start + Hasiera + + + + Cancel + Utzi + + + + 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 + + + + + InstrumentSoundShaping + + + VOLUME + + + + + Volume + Bolumena + + + + CUTOFF + + + + + Cutoff frequency + + + + + RESO + + + + + Resonance + + + + + JackAppDialog + + + Add JACK Application + + + + + Note: Features not implemented yet are greyed out + + + + + Application + + + + + Name: + + + + + Application: + + + + + From template + + + + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + + + + + JuceAboutW + + + This program uses JUCE version %1. + + + + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 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 + + + + Esc + + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + + + + + Select All + + + + + A + + + + + PatchesDialog + + + + Qsynth: Channel Preset + + + + + + Bank selector + + + + + + Bank + + + + + + Program selector + + + + + + Patch + + + + + + Name + Izena + + + + + OK + Ados + + + + + Cancel + Utzi + + + + PluginBrowser + + + no description + + + + + A native amplifier plugin + + + + + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + + + + + Boost your bass the fast and simple way + + + + + Customizable wavetable synthesizer + + + + + An oversampling bitcrusher + + + + + Carla Patchbay Instrument + + + + + Carla Rack Instrument + + + + + A dynamic range compressor. + + + + + A 4-band Crossover Equalizer + + + + + A native delay plugin + + + + + A Dual filter plugin + + + + + plugin for processing dynamics in a flexible way + + + + + A native eq plugin + + + + + A native flanger plugin + + + + + Emulation of GameBoy (TM) APU + + + + + Player for GIG files + + + + + Filter for importing Hydrogen files into LMMS + + + + + Versatile drum synthesizer + + + + + List installed LADSPA plugins + + + + + plugin for using arbitrary LADSPA-effects inside LMMS. + + + + + Incomplete monophonic imitation TB-303 + + + + + plugin for using arbitrary LV2-effects inside LMMS. + + + + + plugin for using arbitrary LV2 instruments inside LMMS. + + + + + Filter for exporting MIDI-files from LMMS + + + + + Filter for importing MIDI-files into LMMS + + + + + Monstrous 3-oscillator synth with modulation matrix + + + + + A multitap echo delay plugin + + + + + A NES-like synthesizer + + + + + 2-operator FM Synth + + + + + Additive Synthesizer for organ-like sounds + + + + + GUS-compatible patch instrument + + + + + Plugin for controlling knobs with sound peaks + + + + + Reverb algorithm by Sean Costello + + + + + Player for SoundFont files + + + + + LMMS port of sfxr + + + + + Emulation of the MOS6581 and MOS8580 SID. +This chip was used in the Commodore 64 computer. + + + + + A graphical spectrum analyzer. + + + + + Plugin for enhancing stereo separation of a stereo input file + + + + + Plugin for freely manipulating stereo output + + + + + Tuneful things to bang on + + + + + Three powerful oscillators you can modulate in several ways + + + + + A stereo field visualizer. + + + + + VST-host for using VST(i)-plugins within LMMS + + + + + Vibrating string modeler + + + + + plugin for using arbitrary VST effects inside LMMS. + + + + + 4-oscillator modulatable wavetable synth + + + + + plugin for waveshaping + + + + + Mathematical expression parser + + + + + Embedded ZynAddSubFX + + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + Ezarpenak + + + + Use Chunks + + + + + Audio: + + + + + Fixed-Size Buffer + + + + + Force Stereo (needs reload) + + + + + MIDI: + + + + + Map Program Changes + + + + + Send Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + + + + + Save State + + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + Mota: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + + + + + PluginFactory + + + Plugin not found. + + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + + + + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + + + + + Parameter Name + + + + + TextLabel + + + + + ... + + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + + + + + Enable + Gaitu + + + + On/Off + + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + + + + + Show GUI + Erakutsi erabiltzaile-interfazea + + + + Help + Laguntza + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + Izena: + + + + 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: + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + + + + + lmms::AudioFileProcessor + + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + Sarrerako irabazia + + + + Output gain + Irteerako irabazia + + + + Attack time + + + + + Release time + + + + + Stereo mode + Estereo modua + + + + lmms::Effect + + + Effect enabled + Efektua gaituta + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + Iragazki mota + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + Pasaera baxua + + + + Hi-pass + Pasaera altua + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + Bolumena + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + hutsik + + + + lmms::KickerInstrument + + + Start frequency + Hasierako maiztasuna + + + + End frequency + Amaierako maiztasuna + + + + Length + Luzera + + + + Start distortion + Hasierako distortsioa + + + + End distortion + Amaierako distortsioa + + + + Gain + Irabazia + + + + Envelope slope + + + + + Noise + Zarata + + + + Click + Klika + + + + Frequency slope + Maiztasun-malda + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + Sakonera + + + + Time + Denbora + + + + Input Volume + Sarrerako bolumena + + + + Output Volume + Irteerako bolumena + + + + Upward Depth + Goranzko sakonera + + + + Downward Depth + Beheranzko sakonera + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + Gaitu banda altua + + + + Enable Mid Band + Gaitu tarteko banda + + + + Enable Low Band + Gaitu banda baxua + + + + High Input Volume + Sarrera-bolumen altua + + + + Mid Input Volume + Tarteko sarrera-bolumena + + + + Low Input Volume + Sarrera-bolumen baxua + + + + High Output Volume + Irteera-bolumen altua + + + + Mid Output Volume + Tarteko irteera-bolumena + + + + Low Output Volume + Irteera-bolumen baxua + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + Barrutia + + + + Balance + Balantzea + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + Estekatu kanalak + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + VCF erresonantzia + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + Distortsioa + + + + Waveform + Uhin-forma + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + Ez da lagina aurkitu + + + + lmms::MalletsInstrument + + + Hardness + Gogortasuna + + + + Position + Posizioa + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + Presioa + + + + Motion + + + + + Speed + Abiadura + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + Barra uniformea + + + + Tuned bar + + + + + Glass + Beira + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + Zenbakitzailea + + + + Denominator + Izendatzailea + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + Hautatutako eskala + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + MIDI kontrolatzailea + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + Zenbakitzailea + + + + Denominator + Izendatzailea + + + + + Tempo + + + + + Track + Pista + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + Sarrerako kanala + + + + Output channel + Irteerako kanala + + + + Input controller + Sarrerako kontrolatzailea + + + + Output controller + Irteerako kontrolatzailea + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + Irteerako MIDI programa + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + Maisua + + + + + + Channel %1 + %1 kanala + + + + Volume + Bolumena + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + Eskala logaritmikoa + + + + High quality + Kalitate altua + + + + lmms::VestigeInstrument + + + Loading plugin + Plugina kargatzen + + + + Please wait while loading the VST plugin... + Itxaron VST plugina kargatu arte... + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + Gorde aurrezarpena + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + Plugina kargatzen + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + Sarrerako irabazia + + + + Output gain + Irteerako irabazia + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + Banda-zabalera + + + + FM gain + FM irabazia + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + VOL + + + + Volume: + Bolumena: + + + + PAN + PAN + + + + Panning: + + + + + LEFT + LEFT + + + + Left gain: + + + + + RIGHT + RIGHT + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + Gailua + + + + Channels + Kanalak + + + + lmms::gui::AudioFileProcessorView + + + Open sample + Ireki lagina + + + + Reverse sample + Alderantzikatu lagina + + + + Disable loop + Desgaitu begizta + + + + Enable loop + Gaitu begizta + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + Garbitu + + + + Reset name + Berrezarri izena + + + + Change name + Aldatu izena + + + + Set/clear record + Ezarri/garbitu grabazioa + + + + Flip Vertically (Visible) + Irauli bertikalean (ikusgai) + + + + Flip Horizontally (Visible) + Irauli horizontalean (ikusgai) + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + Editatu balioa + + + + New outValue + Irteerako balio berria + + + + New inValue + Sarrerako balio berria + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + Editatu ekintzak + + + + Draw mode (Shift+D) + Marrazte modua (Shift+D) + + + + Erase mode (Shift+E) + Ezabatze modua (Shift+E) + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + Irauli bertikalean + + + + Flip horizontally + Irauli horizontalean + + + + Interpolation controls + Interpolazio-kontrolak + + + + Discrete progression + Progresio diskretua + + + + Linear progression + Progresio lineala + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + Gehitu efektua + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + Izena + + + + Type + Mota + + + + All + + + + + Search + + + + + Description + Deskribapena + + + + Author + Egilea + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + Ezarri balioa + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + Arakatzailea + + + + Search + Bilatu + + + + Refresh list + Freskatu zerrenda + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + Abestien editorea + + + + Pattern Editor + Ereduen editorea + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + Lagina kargatzen + + + + Please wait, loading sample for preview... + + + + + Error + Errorea + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + Bolumena + + + + Volume: + Bolumena: + + + + VOL + BOL + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + MIDI + + + + Input + Sarrera + + + + Output + Irteera + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + %1: %2 + + + + lmms::gui::InstrumentTrackWindow + + + Volume + Bolumena + + + + Volume: + Bolumena: + + + + VOL + BOL + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + GORDE + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + Efektuak + + + + MIDI + MIDI + + + + Tuning and transposition + + + + + Save preset + Gorde aurrezarpena + + + + XML preset file (*.xpf) + XML aurrezarpen-fitxategia (*.xpf) + + + + Plugin + Plugina + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + Hasierako maiztasuna: + + + + End frequency: + Amaierako maiztasuna: + + + + Frequency slope: + Maiztasun-malda: + + + + Gain: + Irabazia: + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + Klika: + + + + Noise: + Zarata: + + + + Start distortion: + Hasierako distortsioa: + + + + End distortion: + Amaierako distortsioa: + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + Erabilgarri dauden efektuak + + + + + Unavailable Effects + Erabilgarri ez dauden efektuak + + + + + Instruments + Instrumentuak + + + + + Analysis Tools + Analisi-tresnak + + + + + Don't know + Ezezaguna + + + + Type: + Mota: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + Estekatu kanalak + + + + Channel + Kanala + + + + lmms::gui::LadspaControlView + + + Link channels + Estekatu kanalak + + + + Value: + Balioa: + + + + lmms::gui::LadspaDescription + + + Plugins + Pluginak + + + + Description + Deskribapena + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + Atakak + + + + Name + Izena + + + + Rate + Tasa + + + + Direction + Norabidea + + + + Type + Mota + + + + Min < Default < Max + Min > Lehenetsia > Max + + + + Logarithmic + Logaritmikoa + + + + SR Dependent + + + + + Audio + Audioa + + + + Control + Kontrola + + + + Input + Sarrera + + + + Output + Irteera + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + Bai + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + Erresonantzia: + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + Ezarri balioa + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + Ezarri balioa + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + Aurrekoa + + + + + + Next + Hurrengoa + + + + Previous (%1) + Aurrekoa (%1) + + + + Next (%1) + Hurrengoa (%1) + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + OINARRIA + + + + Base: + Oinarria: + + + + FREQ + MAIZT + + + + LFO frequency: + LFO maiztasuna: + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + gradu + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + Zarata zuria + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + Konfigurazio-fitxategia + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + Ezin da fitxategia ireki + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + Baztertu + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + %1 bertsioa + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + Nire proiektuak + + + + My Samples + Nire laginak + + + + My Presets + Nire aurrezarpenak + + + + My Home + Nire karpeta nagusia + + + + Root Directory + + + + + Volumes + Bolumenak + + + + My Computer + Nire ordenagailua + + + + Loading background picture + + + + + &File + &Fitxategia + + + + &New + &Berria + + + + &Open... + &Ireki... + + + + &Save + &Gorde + + + + Save &As... + Gorde &honela... + + + + Save as New &Version + Gorde &bertsio berri gisa + + + + Save as default template + Gorde txantiloi lehenetsi gisa + + + + Import... + Importatu... + + + + E&xport... + E&sportatu... + + + + E&xport Tracks... + Esportatu &pistak... + + + + Export &MIDI... + Esportatu &MIDIa... + + + + &Quit + I&rten + + + + &Edit + &Editatu + + + + Undo + Desegin + + + + Redo + Berregin + + + + Scales and keymaps + + + + + Settings + Ezarpenak + + + + &View + &Ikusi + + + + &Tools + &Tresnak + + + + &Help + &Laguntza + + + + Online Help + Lineako laguntza + + + + Help + Laguntza + + + + About + Honi buruz + + + + Create new project + Sortu proiektu berria + + + + Create new project from template + Sortu proiektu berria txantiloitik + + + + Open existing project + Ireki lehendik dagoen proiektua + + + + Recently opened projects + Azken aldian irekitako proiektuak + + + + Save current project + Gorde uneko proiektua + + + + Export current project + Esportatu uneko proiektua + + + + Metronome + Metronomoa + + + + + Song Editor + Abesti-editorea + + + + + Pattern Editor + Eredu-editorea + + + + + Piano Roll + + + + + + Automation Editor + Automatizazio-editorea + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + LMMS %1 + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + Ireki proiektua + + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + + Save Project + Gorde proiektua + + + + LMMS Project + LMMS proiektua + + + + LMMS Project Template + LMMS proiektu-txantiloia + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + Erakutsi erabiltzaile-interfazea + + + \ No newline at end of file diff --git a/data/locale/fa.ts b/data/locale/fa.ts index fe9d2ca6b..b167716fd 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 + MixerChannelView + + Channel send amount + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + + + + MixerChannelLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + ولوم + + + + 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 + + + + + InstrumentTuningView + + + MASTER PITCH + + + + + Enables the use of master pitch + + + + + InstrumentSoundShaping + + + VOLUME + + + + + Volume + ولوم + + + + CUTOFF + + + + + + Cutoff frequency + + + + + RESO + + + + + Resonance + + + + + Envelopes/LFOs + + + + + Filter type + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 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..8169224f8 100644 --- a/data/locale/fr.ts +++ b/data/locale/fr.ts @@ -1,10318 +1,19040 @@ - + AboutDialog + About LMMS À propos de LMMS - Version %1 (%2/%3, Qt %4, %5) - Version %1 (%2/%3, Qt %4, %5) + + 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 - la production musicale à la portée de tous + + 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 - 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 - - + 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 + AboutJuceDialog - VOL - VOL + + About JUCE + - Volume: - Volume : + + <b>About JUCE</b> + - PAN - PAN + + This program uses JUCE version 3.x.x. + - Panning: - Panoramisation : + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + - LEFT - GAUCHE - - - Left gain: - Gain de gauche : - - - RIGHT - DROITE - - - Right gain: - Gain de droite : + + This program uses JUCE version + - AmplifierControls + AudioDeviceSetupWidget - Volume - Volume - - - Panning - Panoramisation - - - Left gain - Gain de gauche - - - Right gain - Gain de droite + + [System Default] + - AudioAlsaSetupWidget + CarlaAboutW - DEVICE - PÉRIPHÉRIQUE + + About Carla + À propos de Carla - CHANNELS - CANAUX + + 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) - AudioFileProcessorView + CarlaHostW - Open other sample - Ouvrir un autre échantillon + + MainWindow + Fenêtre principale - 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. + + Rack + Rack - Reverse sample - Inverser l'échantillon + + Patchbay + Baie de connexions - 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. + + Logs + Journaux - Amplify: - Amplifier : + + Loading... + Chargement... - 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é !) + + Save + - Startpoint: - Marqueur de début : + + Clear + - Endpoint: - Marqueur de fin : + + Ctrl+L + - Continue sample playback across notes - Continuer de jouer l'échantillon à traver les notes + + Auto-Scroll + - 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) + + Buffer Size: + Taille du tampon : - 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. - - - 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. - - - 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. - - - 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. - - - 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 : - - - - AudioJack - - JACK client restarted - Le client JACK a redémarré - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS a été jeté dehors par JACK pour une raison quelconque. Par conséquent le serveur de JACK a été redémarré. Vous devrez refaire les connexions manuellement. - - - JACK server down - Le serveur JACK est arrêté - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Le serveur JACK semble avoir été arrêté et le démarrage d'une nouvelle instance a échoué. Par conséquent, LMMS ne peut pas continuer. Vous devriez enregistrer votre projet puis redémarrer JACK et LMMS. - - - CLIENT-NAME - NOM DU CLIENT - - - CHANNELS - CANAUX - - - - AudioOss::setupWidget - - DEVICE - PÉRIPHÉRIQUE - - - CHANNELS - CANAUX - - - - AudioPortAudio::setupWidget - - BACKEND - SERVEUR - - - DEVICE - PÉRIPHÉRIQUE - - - - AudioPulseAudio::setupWidget - - DEVICE - PÉRIPHÉRIQUE - - - CHANNELS - CANAUX - - - - AudioSdl::setupWidget - - DEVICE - PÉRIPHÉRIQUE - - - - AudioSndio::setupWidget - - DEVICE - PÉRIPHÉRIQUE - - - CHANNELS - CANAUX - - - - AudioSoundIo::setupWidget - - BACKEND - SERVEUR - - - 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) - - - 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 - - - - AutomationEditor - - Please open an automation pattern 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) - 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) - 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 - - - Interpolation controls - Contrôles d'interpolation - - - Timeline controls - Contrôles de la ligne de temps - - - Zoom controls - Contrôles du zoom - - - 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. - - - - AutomationPattern - - Drag a control while pressing <%1> - Déplacer un contrôle en appuyant sur <%1> - - - - AutomationPatternView - - 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. - Ce modèle est déjà connecté à ce motif. - - - - AutomationTrack - - Automation track - Piste d'automation - - - - BBEditor - - 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 sample-track - Ajouter une piste d'échantillon - - - - BBTCOView - - 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 - - Beat/Bassline %1 - Rythme ou ligne de basse %1 - - - Clone of %1 - Clone de %1 - - - - BassBoosterControlDialog - - FREQ - FRÉQ - - - Frequency: - Fréquence : - - - GAIN - GAIN - - - Gain: - Gain : - - - RATIO - RATIO - - - Ratio: - Ratio : - - - - BassBoosterControls - - Frequency - Fréquence - - - Gain - Gain - - - Ratio - Ratio - - - - BitcrushControlDialog - - IN - IN - - - OUT - OUT - - - GAIN - 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: + + Sample Rate: Taux d'échantillonnage : - Stereo difference: - Différence stéréo : + + ? Xruns + ? Xruns - Levels: - Niveaux : + + DSP Load: %p% + Chargement du DSP : %p% - NOISE - BRUIT + + &File + &Fichier - FREQ - FRÉQ + + &Engine + &Moteur - STEREO - STÉRÉO + + &Plugin + &Plugin - QUANT - quant + + Macros (all plugins) + Macros (tous les plugins) - - - CaptionMenu + + &Canvas + &Canvas + + + + Zoom + Zoom + + + + &Settings + &Paramètres + + + &Help &Aide - Help (not available) - Aide (non disponible) + + Tool Bar + - - - CarlaInstrumentView - Show GUI - Montrer l'interface graphique + + Disk + Disque - 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. + + + Home + Accueil - - - Controller - Controller %1 - Contrôleur %1 + + Transport + Transport - - - ControllerConnectionDialog - Connection Settings - Configuration de la connexion + + Playback Controls + Contrôles de lecture - MIDI CONTROLLER - CONTRÔLEUR MIDI + + Time Information + Information sur la durée - Input channel - Canal d'entrée + + Frame: + Structure : - CHANNEL - CANAL - - - Input controller - Contrôleur d'entrée - - - CONTROLLER - CONTRÔLEUR - - - Auto Detect - Auto-détection - - - MIDI-devices to receive MIDI-events from - Périphériques MIDI desquels recevoir des événements MIDI - - - USER CONTROLLER - CONTRÔLEUR UTILISATEUR - - - MAPPING FUNCTION - FONCTION DE MAPPAGE - - - OK - OK - - - Cancel - Annuler - - - LMMS - LMMS - - - Cycle Detected. - Un cycle a été détecté. - - - - ControllerRackView - - Controller Rack - Rack de contrôleurs - - - Add - Ajouter - - - Confirm Delete - Confirmer la suppression - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Confirmer la suppression ? Il existe des connection(s) associée(s) avec ce contrôleur. Il n'est pas possible d'annuler cette action. - - - - ControllerView - - Controls - Contrôles - - - 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 - - - &Remove this controller - Supp&rimer ce contrôleur - - - Re&name this controller - Re&nommer ce contrôleur - - - LFO - LFO - - - - CrossoverEQControlDialog - - Band 1/2 Crossover: - Fréquence de croisement des bandes 1/2 : - - - Band 2/3 Crossover: - Fréquence de croisement des bandes 2/3 : - - - Band 3/4 Crossover: - Fréquence de croisement des bandes 3/4 : - - - Band 1 Gain: - Gain bande 1 : - - - Band 2 Gain: - Gain bande 2 : - - - Band 3 Gain: - Gain bande 3 : - - - Band 4 Gain: - Gain bande 4 : - - - Band 1 Mute - Bande 1 en sourdine - - - Mute Band 1 - Mettre la bande 1 en sourdine - - - Band 2 Mute - Bande 2 en sourdine - - - Mute Band 2 - Mettre la bande 2 en sourdine - - - Band 3 Mute - Bande 3 en sourdine - - - Mute Band 3 - Mettre la bande 3 en sourdine - - - Band 4 Mute - Bande 4 en sourdine - - - Mute Band 4 - Mettre la bande 4 en sourdine - - - - DelayControls - - Delay Samples - Délai d'échantillonnage - - - Feedback - Réinjection - - - Lfo Frequency - Fréquence LFO - - - Lfo Amount - Niveau LFO - - - Output gain - Gain en sortie - - - - 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 - - - FDBK - FDBK - - - RATE - TAUX - - - AMNT - AMNT - - - - 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 - - - - DualFilterControls - - Filter 1 enabled - Filtre 1 activé - - - Filter 1 type - Type du filtre 1 - - - Cutoff 1 frequency - Fréquence de coupure 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 - - - Q/Resonance 2 - Q/Résonance 2 - - - Gain 2 - Gain 2 - - - LowPass - Passe-bas - - - HiPass - Passe-haut - - - BandPass csg - Passe-bande "csg" - - - BandPass czpg - Passe-bande "czpg" - - - Notch - Coupe-bande - - - Allpass - Passe-tout - - - Moog - Moog - - - 2x LowPass - Passe-bas x2 - - - RC LowPass 12dB - RC passe-bas 12dB - - - RC BandPass 12dB - RC passe-bande 12dB - - - RC HighPass 12dB - RC passe-haut 12dB - - - RC LowPass 24dB - RC passe-bas 24dB - - - RC BandPass 24dB - RC passe-bande 24dB - - - RC HighPass 24dB - RC Passe-haut 24dB - - - Vocal Formant Filter - Filtre Formant Vocal - - - 2x Moog - 2x Moog - - - SV LowPass - SV passe-bas - - - SV BandPass - SV passe-bande - - - SV HighPass - SV passe-haut - - - SV Notch - SV coupe-bande - - - Fast Formant - Formant rapide - - - Tripole - Tripôle - - - - Editor - - 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 - - - - Effect - - Effect enabled - Effet activé - - - Wet/Dry mix - Mélange originel/traité - - - Gate - Seuil - - - Decay - Affaiblissement (decay) - - - - EffectChain - - Effects enabled - Effets activés - - - - EffectRackView - - EFFECTS CHAIN - CHAÎNE D'EFFETS - - - Add effect - Ajouter un effet - - - - EffectSelectDialog - - Add effect - Ajouter un effet - - - Name - Nom - - - Type - Type - - - Description - Description - - - Author - Auteur - - - - EffectView - - 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 + + 000'000'000 + 000'000'000 + 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. + + 00:00:00 + 00:00:00 - GATE - GATE + + BBT: + - Gate: - Gate : + + 000|00|0000 + 000|00|0000 - 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. + + Settings + Configuration - Controls - Contrôles + + BPM + BPM - 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. + + Use JACK Transport + Utiliser le transport JACK - Move &up - Déplacer vers le &haut + + Use Ableton Link + Utiliser un lien Ableton - Move &down - Déplacer vers le &bas + + &New + &Nouveau - &Remove this plugin - &Supprimer cet effet + + Ctrl+N + Ctrl + N + + + + &Open... + &Ouvrir... + + + + + Open... + Ouvrir... + + + + Ctrl+O + Ctrl + O + + + + &Save + &Enregistrer + + + + Ctrl+S + Ctrl + S + + + + Save &As... + Enregistrer &sous... + + + + + Save As... + Enregistrer sous... + + + + Ctrl+Shift+S + Ctrl + Maj + S + + + + &Quit + &Quitter + + + + Ctrl+Q + Ctrl + Q + + + + &Start + &Démarrer + + + + F5 + F5 + + + + St&op + Arr&êter + + + + F6 + F6 + + + + &Add Plugin... + &Ajouter un plugin... + + + + Ctrl+A + Ctrl + A + + + + &Remove All + &Tout effacer + + + + Enable + Activer + + + + Disable + Désactiver + + + + 0% Wet (Bypass) + Niveau 0% (Contourner) + + + + 100% Wet + Niveau 100% + + + + 0% Volume (Mute) + Volume à 0% (Muet) + + + + 100% Volume + Volume à 100% + + + + Center Balance + Équilibre central + + + + &Play + &Jouer + + + + Ctrl+Shift+P + Ctrl + Maj + P + + + + &Stop + &Arrêter + + + + Ctrl+Shift+X + Ctrl + Maj + X + + + + &Backwards + &Retour + + + + Ctrl+Shift+B + Ctrl + Maj + B + + + + &Forwards + &En avant + + + + Ctrl+Shift+F + Ctrl + Maj + F + + + + &Arrange + &Arranger + + + + Ctrl+G + Ctrl + G + + + + + &Refresh + &Actualiser + + + + Ctrl+R + Ctrl + R + + + + Save &Image... + Enregistrer &l'image... + + + + Auto-Fit + Ajustement automatique + + + + Zoom In + Zoom avant + + + + Ctrl++ + Ctrl + + + + + + Zoom Out + Zoom arrière + + + + Ctrl+- + Ctrl + - + + + + Zoom 100% + Zoom 100% + + + + Ctrl+1 + Ctrl + 1 + + + + Show &Toolbar + Afficher la &barre d'outils + + + + &Configure Carla + &Configurer Carla + + + + &About + &À propos + + + + About &JUCE + À propos de &JUCE + + + + About &Qt + À propos de &Qt + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + Afficher l'intérieur + + + + Show External + Afficher l'extérieur + + + + Show Time Panel + Afficher le panneau horaire + + + + Show &Side Panel + Afficher le &panneau latéral + + + + Ctrl+P + + + + + &Connect... + &Connecter... + + + + Compact Slots + Compacter les emplacements + + + + Expand Slots + Élargir les emplacements + + + + Perform secret 1 + Effectuer le secret 1 + + + + Perform secret 2 + Effectuer le secret 2 + + + + Perform secret 3 + Effectuer le secret 3 + + + + Perform secret 4 + Effectuer le secret 4 + + + + Perform secret 5 + Effectuer le secret 5 + + + + Add &JACK Application... + Ajouter l'application &JACK... + + + + &Configure driver... + &Configurer le pilote... + + + + Panic + + + + + Open custom driver panel... + Ouvrir le panneau personnalisé du pilote... + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + - EnvelopeAndLfoParameters + CarlaHostWindow - Predelay - Pré-délai + + Export as... + Exporter sous... - Attack - Attaque + + + + + Error + Erreur - Hold - Maintien + + Failed to load project + Échec du chargement du projet - Decay - Affaiblissement (decay) + + Failed to save project + Échec de l'enregistrement du projet - Sustain - Soutien + + Quit + Quitter - Release - Relâchement + + Are you sure you want to quit Carla? + Êtes-vous sûr de vouloir quitter Carla ? - Modulation - Modulation + + Could not connect to Audio backend '%1', possible reasons: +%2 + Impossible de se connecter au backend audio "%1", raisons possibles : +%2 - LFO Predelay - Pré-délai du LFO + + Could not connect to Audio backend '%1' + Impossible de se connecter au backend audio "%1" - LFO Attack - Attaque du LFO + + Warning + Avertissement - LFO speed - Vitesse du LFO - - - LFO Modulation - Modulation du LFO - - - LFO Wave Shape - Forme d'onde du LFO - - - Freq x 100 - Fréq x 100 - - - Modulate Env-Amount - Moduler le niveau de l'enveloppe + + 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 ? - EnvelopeAndLfoView + CarlaSettingsW - DEL - DEL + + Settings + Configuration - Predelay: - Pré-délai : + + main + principal - 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. + + canvas + - ATT - ATT + + engine + moteur - Attack: - Attaque : + + osc + osc - 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. + + file-paths + chemins d'accès des fichiers - HOLD - HOLD + + plugin-paths + chemins d'accès des plugins - Hold: - Maintien : + + wine + wine - 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. + + experimental + expérimental - DEC - DEC + + Widget + Widget - Decay: - Affaiblissement (decay) : + + + Main + Principal - 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. + + + Canvas + - SUST - SUST + + + Engine + Moteur - Sustain: - Soutien : + + File Paths + Chemins d'accès des fichiers - 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. + + Plugin Paths + chemins d'accès des plugins - REL - REL + + Wine + Wine - Release: - Relâchement : + + + Experimental + Expérimental - 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. + + <b>Main</b> + <b>Principal</b> - AMT - AMT + + Paths + Chemins d'accès - Modulation amount: - Niveau de modulation : + + Default project folder: + Dossier de projet par défaut : - 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. + + Interface + Interface - LFO predelay: - Pré-délai du LFO : + + Use "Classic" as default rack skin + - 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. + + Interface refresh interval: + Intervalle de rafraîchissement de l'interface : - LFO- attack: - Attaque du LFO : + + + ms + ms - 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. + + 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) - SPD - SPD + + Show a confirmation dialog before quitting + Afficher un dialogue de confirmation avant de quitter - LFO speed: - Vitesse du LFO : + + + Theme + Thème - 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 Carla "PRO" theme (needs restart) + Utiliser le thème "PRO" de Carla (nécessite un redémarrage) - 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. + + Color scheme: + Schéma de couleurs : - Click here for a sine-wave. - Cliquez ici pour une onde sinusoïdale. + + Black + Noir - Click here for a triangle-wave. - Cliquez ici pour une onde triangulaire. + + System + Système - Click here for a saw-wave for current. - Cliquez ici pour une onde en dents-de-scie. + + Enable experimental features + Activer les fonctions expérimentales - Click here for a square-wave. - Cliquez ici pour une onde carrée. + + <b>Canvas</b> + - 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. + + Bezier Lines + Lignes de Bézier - FREQ x 100 - FRÉQ x 100 + + Theme: + Thème : - 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. + + Size: + Taille : - multiply LFO-frequency by 100 - multiplier la fréquence du LFO par 100 + + 775x600 + 775x600 - MODULATE ENV-AMOUNT - MODULER LA QUANTITÉ D'ENVELOPPE + + 1550x1200 + 1550x1200 - 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. + + 3100x2400 + 3100x2400 - control envelope-amount by this LFO - Contrôler le niveau de l'enveloppe avec ce LFO + + 4650x3600 + 4650x3600 - ms/LFO: - ms/LFO : + + 6200x4800 + 6200x4800 - Hint - Astuce + + 12400x9600 + - Drag a sample from somewhere and drop it in this window. - Faites glisser un échantillon et déposez-le dans cette fenêtre. + + Options + Options - Click here for random wave. - Cliquez ici pour une onde aléatoire. + + Auto-hide groups with no ports + Masquer automatiquement les groupes sans ports + + + + Auto-select items on hover + Sélection automatique des éléments au passage de la souris + + + + Basic eye-candy (group shadows) + + + + + Render Hints + Indications de rendu + + + + Anti-Aliasing + Anticrénelage + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + <b>Moteur</b> + + + + + Core + Noyau + + + + Single Client + Client unique + + + + Multiple Clients + Clients multiples + + + + + Continuous Rack + Rack permanent + + + + + Patchbay + Patchbay + + + + Audio driver: + Pilote audio : + + + + Process mode: + Mode de traitement : + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + Nombre maximum de paramètres à autoriser dans la boîte de dialogue intégrée "Éditer" + + + + Max Parameters: + Paramètres maximum : + + + + ... + ... + + + + Reset Xrun counter after project load + Réinitialiser le compteur Xrun après le chargement du projet + + + + Plugin UIs + Interface utilisateur des plugins + + + + + How much time to wait for OSC GUIs to ping back the host + Temps d'attente pour que les interfaces graphiques de l'oscillateur renvoient l'hôte + + + + UI Bridge Timeout: + Délai d'attente du pont de I'interface utilisateur : + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + Utilisez les ponts OSC-GUI lorsque cela est possible, de manière à séparer l'interface utilisateur du code DSP + + + + Use UI bridges instead of direct handling when possible + Utiliser les ponts de l'interface utilisateur au lieu de la gestion directe lorsque cela est possible + + + + Make plugin UIs always-on-top + Afficher les interfaces utilisateur des plugins au premier plan + + + + Make plugin UIs appear on top of Carla (needs restart) + Afficher les interfaces utilisateur des plugins au-dessus de Carla (redémarrage nécessaire) + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + NOTE : les ponts des interfaces utilisateur des plugins ne peuvent pas être gérées par Carla sous MacOS + + + + + Restart the engine to load the new settings + Redémarrez le moteur pour charger les nouveaux paramètres + + + + <b>OSC</b> + <b>OSC</b> + + + + Enable OSC + Activer l'oscillateur + + + + Enable TCP port + Activer le port TCP + + + + + Use specific port: + Utiliser un port spécifique : + + + + Overridden by CARLA_OSC_TCP_PORT env var + Remplacé par la variable d'environnement CARLA_OSC_TCP_PORT + + + + + Use randomly assigned port + Utiliser un port attribué de manière aléatoire + + + + Enable UDP port + Activer le port UDP + + + + Overridden by CARLA_OSC_UDP_PORT env var + Remplacé par la variable d'environnement CARLA_OSC_UDP_PORT + + + + DSSI UIs require OSC UDP port enabled + Les interfaces utilisateur de DSSI nécessitent que le port UDP de l’oscillateur soit activé + + + + <b>File Paths</b> + <b>Chemins d'accès des fichiers</b> + + + + Audio + Audio + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + Utilisé pour le plugin "audiofile" + + + + Used for the "midifile" plugin + Utilisé pour le plugin "midifile" + + + + + Add... + Ajouter... + + + + + Remove + Supprimer + + + + + Change... + Modifier... + + + + <b>Plugin Paths</b> + <b>Chemin d'accès des plugins</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + Redémarrez Carla pour trouver de nouveaux plugins + + + + <b>Wine</b> + <b>Wine</b> + + + + Executable + Exécutable + + + + Path to 'wine' binary: + Chemin d'accès de "Wine" binaire : + + + + Prefix + Préfixe + + + + Auto-detect Wine prefix based on plugin filename + Détection automatique du préfixe Wine basé sur le nom de fichier d'un plugin + + + + Fallback: + Option de secours : + + + + Note: WINEPREFIX env var is preferred over this fallback + Note : La variable d'environnement WINEPREFIX est préférable à cette option de secours + + + + Realtime Priority + Priorité en temps réel + + + + Base priority: + Priorité de base : + + + + WineServer priority: + Priorité du serveur Wine : + + + + These options are not available for Carla as plugin + Ces options ne sont pas disponibles sous forme de plugin pour Carla + + + + <b>Experimental</b> + <b>Expérimental</b> + + + + Experimental options! Likely to be unstable! + Ces options sont expérimentales et sont probablement instables. + + + + Enable plugin bridges + Activer les ponts des plugins + + + + Enable Wine bridges + Activer les ponts de Wine + + + + Enable jack applications + Activer les applications jack + + + + Export single plugins to LV2 + Exporter les plugins simples vers LV2 + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + Charger l'arrière-plan de Carla dans l'espace de noms global (NON RECOMMANDÉ) + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + Utiliser OpenGL pour le rendu (nécessite un redémarrage) + + + + High Quality Anti-Aliasing (OpenGL only) + Anticrénelage de haute qualité (OpenGL uniquement) + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + Forcer les plugins mono à fonctionner en stéréo en exécutant simultanément 2 instances. +Ce mode n'est pas disponible pour les plugins VST. + + + + Force mono plugins as stereo + Forcer les plugins mono à fonctionner en stéréo + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + Exécutez les plugins en mode bridge si cela est possible. + + + + + + + Add Path + Ajouter un chemin d'accès - EqControls + Dialog - Input gain - Gain en entrée + + Carla Control - Connect + Contrôle Carla - Connexion - Output gain - Gain en sortie + + Remote setup + Configuration à distance - Low shelf gain - Gain du low-shelf + + UDP Port: + Port UDP: - Peak 1 gain - Gain de crête 1 + + Remote host: + Hôte distant: - Peak 2 gain - Gain de crête 2 + + TCP Port: + Port TCP: - Peak 3 gain - Gain de crête 3 + + Set value + Mode valeur - Peak 4 gain - Gain de crête 4 + + TextLabel + TextLabel - High Shelf gain - Gain du high-shelf - - - HP res - PH rés - - - Low Shelf res - Rés du low-shelf - - - Peak 1 BW - Bande-passante du pic 1 - - - Peak 2 BW - Bande-passante du pic 2 - - - Peak 3 BW - Bande-passante du pic 3 - - - Peak 4 BW - Bande-passante du pic 4 - - - High Shelf res - Rés du high-shelf - - - LP res - Rés. du passe-base - - - HP freq - Fréquence du passe-haut - - - Low Shelf freq - Fréquence du low-shelf - - - Peak 1 freq - Fréquence de crête 1 - - - Peak 2 freq - Fréquence de crête 2 - - - Peak 3 freq - Fréquence de crête 3 - - - Peak 4 freq - Fréquence de crête 4 - - - High shelf freq - Fréquence du high-shelf - - - LP freq - Fréq. passe-base - - - HP active - Passe-haut actif - - - Low shelf active - Low-shelf actif - - - Peak 1 active - Crête 1 active - - - Peak 2 active - Crête 2 active - - - Peak 3 active - Crête 3 active - - - Peak 4 active - Crête 4 active - - - High shelf active - High-shelf actif - - - LP active - Passe-bas actif - - - LP 12 - Passe-bas 12 - - - LP 24 - Passe-bas 24 - - - LP 48 - Passe-bas 48 - - - HP 12 - Passe-haut 12 - - - HP 24 - Passe-haut 24 - - - HP 48 - Passe-haut 48 - - - low pass type - type de passe-bas - - - high pass type - type de passe-haut - - - Analyse IN - Analyse d'entrée - - - Analyse OUT - Analyse de sortie + + Scale Points + - EqControlsDialog + DriverSettingsW - HP - PH + + Driver Settings + Paramètres du driver - Low Shelf - Low-shelf + + Device: + Périphérique: - Peak 1 - Crête 1 + + Buffer size: + Taille du tampon: - Peak 2 - Crête 2 + + Sample rate: + Taux d'échantillonnage : - Peak 3 - Crête 3 + + Triple buffer + - Peak 4 - Crête 4 + + Show Driver Control Panel + Afficher le panneau de contrôle du driver - High Shelf - High-shelf - - - LP - Passe-bas - - - In Gain - Gain d'entrée - - - Gain - Gain - - - Out Gain - Gain en sortie - - - Bandwidth: - Largeur de bande : - - - Resonance : - Résonance : - - - Frequency: - Fréquence : - - - lp grp - passe-bas grp - - - hp grp - passe-haut grp - - - Octave - Octave - - - - EqHandle - - Reso: - Réso : - - - BW: - Bande-passante : - - - Freq: - Fréquence : + + Restart the engine to load the new settings + Redémarrez le moteur pour charger les nouveaux paramètres 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 - Could not open file - Le fichier n'a pas pu être ouvert + + Render Looped Section: + Faire le rendu de la section bouclée: - Export project to %1 - Exporter le projet vers %1 + + time(s) + - Error - Erreur + + File format settings + Configuration du format de fichier - 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. + + File format: + Format de fichier : - Rendering: %1% - Encodage : %1% + + Sampling rate: + Taux d'échantillonnage : - 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 ! + + 44100 Hz + 44100 Hz - 24 Bit Integer + + 48000 Hz + 48000 Hz + + + + 88200 Hz + 88200 Hz + + + + 96000 Hz + 96000 Hz + + + + 192000 Hz + 192000 Hz + + + + Bit depth: + Profondeur de bit: + + + + 16 Bit integer + Entier 16 bits + + + + 24 Bit integer Entier 24 bits - Use variable bitrate - Utiliser un taux variable + + 32 Bit float + Flottants 32 bits + Stereo mode: Mode stéréo : - Stereo - Stéréo - - - Joint Stereo - Stéréo conjointe - - + Mono Mono + + Stereo + Stéréo + + + + Joint stereo + + + + Compression level: Niveau de compression : - (fastest) - (le plus rapide) + + Bitrate: + Débit : - (default) - (par défaut) + + 64 KBit/s + 64 kbit/s - (smallest) - (le plus petit) + + 128 KBit/s + 128 kbit/s - - - Expressive - Selected graph - Graphique sélectionné + + 160 KBit/s + 160 kbit/s - A1 - A1 + + 192 KBit/s + 192 kbit/s - A2 - A2 + + 256 KBit/s + 256 kbit/s - A3 - A3 + + 320 KBit/s + 320 kbit/s - W1 smoothing - Adoucissement W1 + + Use variable bitrate + Utiliser un taux variable - W2 smoothing - Adoucissement W2 + + Quality settings + Réglages de qualité - W3 smoothing - Adoucissement W3 + + Interpolation: + Interpolation : - PAN1 - PAN1 + + Zero order hold + - PAN2 - PAN2 + + Sinc worst (fastest) + - REL TRANS - TRANS REL + + Sinc medium (recommended) + - - - Fader - Please enter a new value between %1 and %2: - Veuillez entrer une valeur entre %1 et %2 : + + Sinc best (slowest) + - - - FileBrowser - Browser - Explorateur + + Start + Démarrer - Search - Chercher - - - Refresh list - Rafraîchir la liste - - - - 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 - - - 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 - - - file - fichier - - - - FlangerControls - - Delay Samples - Délai d'échantillonnage - - - Lfo Frequency - Fréquence LFO - - - Seconds - Secondes - - - Regen - Régén - - - Noise - Bruit - - - Invert - Inverser - - - - FlangerControlsDialog - - Delay Time: - Temps de délai : - - - Feedback Amount: - Niveau de réinjection : - - - White Noise Amount: - Niveau de bruit blanc : - - - DELAY - DELAY - - - RATE - TAUX - - - AMNT - AMNT - - - Amount: - Montant : - - - FDBK - FDBK - - - NOISE - BRUIT - - - Invert - Inverser - - - Period: - Période : - - - - FxLine - - 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 - - - - FxMixer - - Master - Général - - - FX %1 - Effet %1 - - - Volume - Volume - - - Mute - Mettre en sourdine - - - Solo - Solo - - - - FxMixerView - - FX-Mixer - Mélangeur d'effets - - - FX Fader %1 - Chariot d'effet %1 - - - Mute - Mettre en sourdine - - - Mute this FX channel - Mettre ce canal d'effet en sourdine - - - Solo - Solo - - - Solo FX channel - Mettre ce canal d'effet en solo - - - - FxRoute - - Amount to send from channel %1 to channel %2 - Quantité à envoyer du canal %1 au canal %2 - - - - GigInstrument - - Bank - Banque - - - Patch - Son - - - Gain - Gain - - - - GigInstrumentView - - Open 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 - - - GIG Files (*.gig) - Fichiers GIG (*.gig) - - - - GuiApplication - - Working directory - Répertoire de travail - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Le répertoire de travail %1 n'existe pas. Le créer maintenant ? Vous pouvez modifier le répertoire plus tard avec Éditer -> Configurations. - - - Preparing UI - Préparation de l'interface utilisateur - - - Preparing song editor - Préparation de l'éditeur de morceau - - - Preparing mixer - Préparation du mélangeur - - - Preparing controller rack - Préparation du rack de contrôleurs - - - Preparing project notes - Préparation des notes de projet - - - Preparing beat/bassline editor - Préparation de l'éditeur de rythme et de ligne de basse - - - Preparing piano roll - Préparation du piano virtuel - - - Preparing automation editor - Préparation de l'éditeur d'automation - - - - InstrumentFunctionArpeggio - - Arpeggio - Arpège - - - Arpeggio type - Type d'arpège - - - Arpeggio range - Plage d'arpège - - - 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 - - - Random - Aléatoire - - - Free - Libre - - - Sort - Tri - - - Sync - Sync - - - Down and up - Descendant et ascendant - - - Skip rate - Taux de saut - - - Miss rate - Taux de manqué - - - Cycle steps - Pas de cycle - - - - 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. - - - TIME - TEMPS - - - 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. - - - 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. + + Cancel + Annuler 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 - - 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 : - - - - InstrumentMidiIOView - - ENABLE MIDI INPUT - ACTIVER L'ENTRÉE MIDI - - - CHANNEL - CANAL - - - VELOCITY - VÉLOCITÉ - - - ENABLE MIDI OUTPUT - ACTIVER LA SORTIE MIDI - - - PROGRAM - PROGRAMME - - - 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% - - - BASE VELOCITY - VÉLOCITÉ DE BASE - - - - InstrumentMiscView - - MASTER PITCH - TONALITÉ GÉNÉRALE - - - Enables the use of Master Pitch - Active 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 + + + JackAppDialog - Envelopes/LFOs - Enveloppes/LFOs + + Add JACK Application + - Filter type - Type de filtre + + Note: Features not implemented yet are greyed out + - Q/Resonance - Q/Résonance + + Application + - LowPass - Passe-bas + + Name: + - HiPass - Passe-haut + + Application: + - BandPass csg - Passe-bande "csg" + + From template + - BandPass czpg - Passe-bande "czpg" + + Custom + - Notch - Coupe-bande + + Template: + - Allpass - Passe-tout + + Command: + - Moog - Moog + + Setup + - 2x LowPass - Passe-bas x2 + + Session Manager: + - RC LowPass 12dB - RC passe-bas 12dB + + None + - RC BandPass 12dB - RC passe-bande 12dB + + Audio inputs: + - RC HighPass 12dB - RC passe-haut 12dB + + MIDI inputs: + - RC LowPass 24dB - RC Passe Bas 24dB + + Audio outputs: + - RC BandPass 24dB - RC Passe Bande 24dB + + MIDI outputs: + - RC HighPass 24dB - RC Passe Haut 24dB + + Take control of main application window + - Vocal Formant Filter - Filtre formant vocal + + Workarounds + - 2x Moog - 2x Moog + + Wait for external application start (Advanced, for Debug only) + - SV LowPass - SV passe-bas + + Capture only the first X11 Window + - SV BandPass - SV passe-bande + + Use previous client output buffer as input for the next client + - SV HighPass - SV passe-haut + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - SV Notch - SV coupe-bande + + Error here + - Fast Formant - Formant rapide + + NSM applications cannot use abstract or absolute paths + - Tripole - Tripôle + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + - InstrumentSoundShapingView + JuceAboutW - 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: - Fréquence de coupure : - - - 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. + + This program uses JUCE version %1. + Ce programme utilise la version %1 de JUCE. - InstrumentTrack + MidiPatternW - unnamed_track - piste_sans_nom + + MIDI Pattern + Modèle MIDI - Volume - Volume + + Time Signature: + Signature rythmique: - Panning - Panoramisation + + + + 1/4 + 1/4 - Pitch - Tonalité + + 2/4 + 2/4 - FX channel - Canal d'effet + + 3/4 + 3/4 - Default preset - Pré-réglage par défaut + + 4/4 + 4/4 - With this knob you can set the volume of the opened channel. - Avec ce bouton vous pouvez régler le volume du canal ouvert. + + 5/4 + 5/4 - Base note - Note de base + + 6/4 + 6/4 - Pitch range - Plage de hauteur + + Measures: + Mesures : - Master Pitch - Tonalité générale + + + + 1 + 1 - - - InstrumentTrackView - Volume - Volume + + 2 + 2 - Volume: - Volume : + + 3 + 3 - VOL - VOL + + 4 + 4 - Panning - Panoramisation + + 5 + 5 - Panning: - Panoramisation : + + 6 + 6 - PAN - PAN + + 7 + 7 - MIDI - MIDI + + 8 + 8 - Input - Entrée + + 9 + 9 - Output - Sortie + + 10 + 10 - FX %1: %2 - Effet %1 : %2 + + 11 + 11 - - - InstrumentTrackWindow - GENERAL SETTINGS - CONFIGURATION GÉNÉRALE + + 12 + 12 - Instrument volume - Volume de l'instrument + + 13 + 13 - Volume: - Volume : + + 14 + 14 - VOL - VOL + + 15 + 15 - Panning - Panoramisation + + 16 + 16 - Panning: - Panoramisation : + + Default Length: + Longueur par défaut: - PAN - PAN + + + 1/16 + 1/16 - Pitch - Tonalité + + + 1/15 + 1/15 - Pitch: - Tonalité : + + + 1/12 + 1/12 - cents - centièmes + + + 1/9 + 1/9 - PITCH - PITCH + + + 1/8 + 1/8 - FX channel - Canal d'effet + + + 1/6 + 1/6 - FX - EFFETS + + + 1/3 + 1/3 - Save preset - Enregistrer le pré-réglage + + + 1/2 + 1/2 - XML preset file (*.xpf) - Fichier XML de pré-réglage (*.xpf) - - - Pitch range (semitones) - Plage de hauteur (demi-tons) - - - RANGE - PLAGE - - - 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 - - - Miscellaneous - Divers - - - Plugin - Greffon - - - - 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 : - - - 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: - - - - LadspaControl - - Link channels - Relier les canaux - - - - LadspaControlDialog - - Link Channels - Lier les canaux - - - Channel - Canal - - - - 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. - - - - LcdSpinBox - - Please enter a new value between %1 and %2: - Veuillez entrer une valeur entre %1 et %2 : - - - - LeftRightNav - - Previous - Précédent - - - Next - Suivant - - - Previous (%1) - Précédent (%1) - - - Next (%1) - Suivant (%1) - - - - LfoController - - LFO Controller - Contrôleur du LFO - - - Base value - Valeur de base - - - Oscillator speed - Vitesse de l'oscillateur - - - Oscillator amount - Niveau de l'oscillateur - - - Oscillator phase - Phase de l'oscillateur - - - Oscillator waveform - Forme d'onde de l'oscillateur - - - Frequency Multiplier - Multiplicateur de fréquence - - - - LfoControllerDialog - - LFO - LFO - - - LFO Controller - Contrôleur du LFO - - - BASE - BASE - - - Base amount: - Niveau de base : - - - todo - à faire - - - SPD - SPD - - - 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. - - - 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 - - - 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. - - - 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. - 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 an exponential wave. - Cliquez ici pour une onde exponentielle. - - - Click here for white-noise. - Cliquez ici pour un bruit blanc. - - - Click here for a user-defined shape. -Double click to pick a file. - Cliquez ici pour une 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. - - - AMNT - AMNT - - - - LmmsCore - - Generating wavetables - Génération des tables d'ondes - - - Initializing data structures - Initialisation des structures de données - - - Opening audio and midi devices - Ouverture des périphériques audio et MIDI - - - Launching mixer threads - Lancement du mélangeur de threads - - - - MainWindow - - &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 + + Quantize: + Quantifier + &File &Fichier - &Recently Opened Projects - Projets ouverts &Récemment + + &Edit + &Éditer - Save as New &Version - Enregistrer en tant que nouvelle &version + + &Quit + &Quitter - E&xport Tracks... - E&xporter les pistes... + + Esc + - Online Help - Aide en ligne + + &Insert Mode + - What's This? - Qu'est-ce que c'est? + + F + - Open Project - Ouvrir le projet + + &Velocity Mode + - Save Project - Enregistrer le projet + + D + D - Project recovery - Récupération de projet + + Select All + Tout sélectionner - 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 ! - - - Export &MIDI... - Exporter en &MIDI... - - - - MeterDialog - - Meter Numerator - Numérateur de la mesure - - - Meter Denominator - Dénominateur de la mesure - - - TIME SIG - SIGN RYTHM - - - - MeterModel - - Numerator - Numérateur - - - Denominator - Dénominateur - - - - MidiController - - MIDI Controller - Contrôleur MIDI - - - unnamed_midi_controller - contrôleur_midi_sans_nom - - - - 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 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. - - - Track - Piste - - - - MidiJack - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - Le serveur JACK est arrêté - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Le serveur JACK semble avoir été coupé - - - - 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 - - - Base velocity - Vélocité de base - - - - MidiSetupWidget - - DEVICE - PERIPHERIQUES - - - - MonstroInstrument - - Osc 1 Volume - Volume de l'oscillateur 1 - - - Osc 1 Panning - Panoramisation de l'oscillateur 1 - - - Osc 1 Coarse detune - Désaccordage grossier de l'oscillateur 1 - - - Osc 1 Fine detune left - Désaccordage fin de gauche de l'oscillateur 1 - - - Osc 1 Fine detune right - Désaccordage fin de droite de l'oscillateur 1 - - - Osc 1 Stereo phase offset - Décalage de phase stéréo de l'oscillateur 1 - - - Osc 1 Pulse width - Largeur de la pulsation de l'oscillateur 1 - - - Osc 1 Sync send on rise - Synchronisation envoyée lors de la montée de l'oscillateur 1 - - - Osc 1 Sync send on fall - Synchronisation envoyée lors de la descente de l'oscillateur 1 - - - Osc 2 Volume - Volume de l'oscillateur 2 - - - Osc 2 Panning - Panoramisation de l'oscillateur 2 - - - Osc 2 Coarse detune - Désaccordage grossier de l'oscillateur 2 - - - Osc 2 Fine detune left - Désaccordage fin de gauche de l'oscillateur 2 - - - Osc 2 Fine detune right - Désaccordage fin de droite de l'oscillateur 2 - - - Osc 2 Stereo phase offset - Décalage de phase stéréo de l'oscillateur 2 - - - Osc 2 Waveform - Forme d'onde de l'oscillateur 2 - - - Osc 2 Sync Hard - Synchronisation dure de l'oscillateur 2 - - - Osc 2 Sync Reverse - Synchronisation inverse de l'oscillateur 2 - - - Osc 3 Volume - Volume de l'oscillateur 3 - - - Osc 3 Panning - Panoramisation de l'oscillateur 3 - - - Osc 3 Coarse detune - Désaccordage grossier de l'oscillateur 3 - - - Osc 3 Stereo phase offset - Décalage de phase stéréo de l'oscillateur 3 - - - Osc 3 Sub-oscillator mix - Mélange du sous-oscillateur de l'oscillateur 3 - - - Osc 3 Waveform 1 - Forme d'onde 1 de l'oscillateur 3 - - - Osc 3 Waveform 2 - Forme d'onde 2 de l'oscillateur 3 - - - Osc 3 Sync Hard - Synchronisation dure de l'oscillateur 3 - - - Osc 3 Sync Reverse - Synchronisation inverse de l'oscillateur 3 - - - LFO 1 Waveform - Forme d'onde du LFO 1 - - - LFO 1 Attack - Attaque du LFO 1 - - - LFO 1 Rate - Taux du LFO 1 - - - LFO 1 Phase - Phase du LFO 1 - - - LFO 2 Waveform - Forme d'onde du LFO 2 - - - LFO 2 Attack - Attaque du LFO 2 - - - LFO 2 Rate - Taux du LFO 2 - - - LFO 2 Phase - Phase du LFO2 - - - Env 1 Pre-delay - Pré-délai de l'enveloppe 1 - - - Env 1 Attack - Attaque de l'enveloppe 1 - - - Env 1 Hold - Tenue de l'enveloppe 1 - - - Env 1 Decay - Affaiblissement (decay) de l'enveloppe 1 - - - Env 1 Sustain - Soutien (sustain) de l'enveloppe 1 - - - Env 1 Release - Relâche (release) de l'enveloppe 1 - - - Env 1 Slope - Pente de l'enveloppe 1 - - - Env 2 Pre-delay - Pré-délai de l'enveloppe 2 - - - Env 2 Attack - Attaque de l'enveloppe 2 - - - Env 2 Hold - Tenue de l'enveloppe 2 - - - Env 2 Decay - Affaiblissement (decay) de l'enveloppe 2 - - - Env 2 Sustain - Soutien (sustain) de l'enveloppe 2 - - - Env 2 Release - Relâche (release) de l'enveloppe 2 - - - Env 2 Slope - Pente de l'enveloppe 2 - - - Osc2-3 modulation - Modulation des oscillateurs 2 et 3 - - - Selected view - Affichage sélectionné - - - 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 - Phase1-Env1 - - - Phs1-Env2 - Phase1-Env2 - - - Phs1-LFO1 - Phase1-LFO1 - - - Phs1-LFO2 - Phase1-LFO2 - - - Phs2-Env1 - Phase2-Env1 - - - Phs2-Env2 - Phase2-Env2 - - - Phs2-LFO1 - Phase2-LFO1 - - - Phs2-LFO2 - Phase2-LFO2 - - - Phs3-Env1 - Phase3-Env1 - - - Phs3-Env2 - Phase3-Env2 - - - Phs3-LFO1 - Phase3-LFO1 - - - Phs3-LFO2 - Phase3-LFO2 - - - Pit1-Env1 - Ton1-Env1 - - - Pit1-Env2 - Ton1-Env2 - - - Pit1-LFO1 - Ton1-LFO1 - - - Pit1-LFO2 - Ton1-LFO2 - - - Pit2-Env1 - Ton2-Env1 - - - Pit2-Env2 - Ton2-Env2 - - - Pit2-LFO1 - Ton2-LFO1 - - - Pit2-LFO2 - Ton2-LFO2 - - - Pit3-Env1 - Ton3-Env1 - - - Pit3-Env2 - Ton3-Env2 - - - Pit3-LFO1 - Ton3-LFO1 - - - Pit3-LFO2 - Ton3-LFO2 - - - PW1-Env1 - PW1-Env1 - - - PW1-Env2 - PW1-Env2 - - - PW1-LFO1 - PW1-LFO1 - - - PW1-LFO2 - PW1-LFO2 - - - Sub3-Env1 - Sub3-Env1 - - - Sub3-Env2 - Sub3-Env2 - - - Sub3-LFO1 - Sub3-LFO1 - - - Sub3-LFO2 - Sub3-LFO2 - - - Sine wave - Onde sinusoïdale - - - Bandlimited Triangle wave - Onde triangulaire à bande limitée - - - Bandlimited Saw wave - Onde en dents-de-scie à bande limitée - - - Bandlimited Ramp wave - Onde en rampe à bande limitée - - - Bandlimited Square wave - Onde carrée à bande limitée - - - Bandlimited Moog saw wave - Onde en dents-de-scie Moog à bande limitée - - - Soft square wave - Onde carrée douce - - - Absolute sine wave - Onde sinusoïdale absolue - - - Exponential wave - Onde exponentielle - - - White noise - Bruit blanc - - - Digital Triangle wave - Onde triangulaire digitale - - - Digital Saw wave - Onde en dents-de-scie digitale - - - Digital Ramp wave - Onde en rampe digitale - - - Digital Square wave - Onde carrée digitale - - - Digital Moog saw wave - Onde en dents-de-scie Moog digitale - - - Triangle wave - Onde triangulaire - - - Saw wave - Onde en dents-de-scie - - - Ramp wave - Onde en rampe - - - Square wave - Onde carrée - - - Moog saw wave - Onde en dents-de-scie Moog - - - Abs. sine wave - Onde sinusoïdale absolue - - - Random - Aléatoire - - - Random smooth - Aléatoire adoucie - - - - MonstroView - - Operators view - Vue des opérateurs - - - 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) - - - cents - centièmes - - - Finetune right - Désaccordage fin (droite) - - - 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 - - - Modulation amount - Niveau de modulation - - - - MultitapEchoControlDialog - - Length - Longueur - - - Step length: - Longueur de pas : - - - Dry - Sec - - - Dry Gain: - Gain sec : - - - Stages - Niveaux - - - Lowpass stages: - Niveaux passe-bas : - - - 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 - - - - NesInstrument - - Channel 1 Coarse detune - Dé-réglage grossier du canal 1 - - - Channel 1 Volume - Volume du canal 1 - - - Channel 1 Envelope length - Longueur d'enveloppe du canal 1 - - - Channel 1 Duty cycle - Cycle de service du canal 1 - - - Channel 1 Sweep amount - Quantité de balayage du canal 1 - - - Channel 1 Sweep rate - Taux de balayage du canal 1 - - - 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 Duty cycle - Cycle de service du canal 2 - - - Channel 2 Sweep amount - Quantité de balayage du canal 2 - - - Channel 2 Sweep rate - Taux de balayage du canal 2 - - - Channel 3 Coarse detune - Dé-réglage grossier du canal 3 - - - Channel 3 Volume - Volume du canal 3 - - - Channel 4 Volume - Volume du canal 4 - - - Channel 4 Envelope length - Longueur d'enveloppe du canal 4 - - - Channel 4 Noise frequency - Fréquence de bruit du canal 4 - - - Channel 4 Noise frequency sweep - Balayage de fréquence de bruit de canal 4 - - - Master volume - Volume général - - - Vibrato - Vibrato - - - - NesInstrumentView - - Volume - Volume - - - Coarse detune - Désaccordage grossier - - - Envelope length - Longueur de l'enveloppe - - - Enable channel 1 - Activer le canal 1 - - - Enable envelope 1 - Activer l'enveloppe 1 - - - Enable envelope 1 loop - Activer la boucle d'enveloppe 1 - - - Enable sweep 1 - Activer le balayage 1 - - - Sweep amount - Temps de balayage - - - Sweep rate - Vitesse de balayage - - - 12.5% Duty cycle - 12.5% du cycle - - - 25% Duty cycle - 25% du cycle - - - 50% Duty cycle - 50% du cycle - - - 75% Duty cycle - 75% du cycle - - - Enable channel 2 - Activer le canal 2 - - - Enable envelope 2 - Activer l'enveloppe 2 - - - Enable envelope 2 loop - Activer la boucle d'enveloppe 2 - - - Enable sweep 2 - Activer le balayage 2 - - - Enable channel 3 - Activer le canal 3 - - - Noise Frequency - Fréquence du bruit - - - Frequency sweep - Fréquence de balayage - - - Enable channel 4 - Activer le canal 4 - - - Enable envelope 4 - Activer l'enveloppe 4 - - - Enable envelope 4 loop - Activer la boucle d'enveloppe 4 - - - Quantize noise frequency when using note frequency - Quantifier la fréquence du bruit lorsque la fréquence de la note est utilisée - - - Use note frequency for noise - Utiliser la fréquence de note pour le bruit - - - Noise mode - Mode de bruit - - - Master Volume - Volume général - - - Vibrato - Vibrato - - - - 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 + + A + A PatchesDialog + + Qsynth: Channel Preset Qsynth : pré-réglage de canal + + Bank selector Sélecteur de banque + + Bank Banque + + Program selector Sélecteur de programme + + Patch Instrument + + Name Nom + + OK OK + + Cancel Annuler - - PatmanView - - Open 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. - - - 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 - - Open in piano-roll - Ouvrir dans le piano virtuel - - - Clear all notes - Effacer toutes les notes - - - Reset name - Réinitialiser le nom - - - Change name - Modifier le nom - - - Add steps - Ajouter des pas - - - Remove steps - Supprimer des pas - - - Clone Steps - Cloner les pas - - - - PeakController - - Peak Controller - Contrôleur de crêtes - - - Peak Controller Bug - Bug du contrôleur de crêtes - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - A cause d'un bug dans les anciennes versions de LMMS, les contrôleurs de crêtes peuvent ne pas s'être connectés correctement. Verifiez que les contrôleurs de crêtes sont connectés correctement et re-sauvegardez ce fichier. Désolé pour la gène occasionnée. - - - - PeakControllerDialog - - PEAK - CRÊTE - - - LFO Controller - Contrôleur du LFO - - - - PeakControllerEffectControlDialog - - BASE - BASE - - - Base amount: - Niveau de base : - - - Modulation amount: - Niveau de modulation : - - - Attack: - Attaque : - - - Release: - Relâchement : - - - AMNT - AMNT - - - MULT - MULT - - - Amount Multiplicator: - Multiplicateur de quantité : - - - ATCK - ATCK - - - DCAY - DCAY - - - Treshold: - Seuil : - - - TRSH - TRSH - - - - 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 - - - - 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 - - - Select all notes on this key - Sélectionner toutes les notes de cet clef - - - - PianoRollWindow - - Play/pause current pattern (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) - 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 - - - Copy paste controls - Contrôles de copier/coller - - - Timeline controls - Contrôles de la ligne de temps - - - Zoom and note controls - Contrôles de zoom et de notes - - - Piano-Roll - %1 - Piano virtuel - %1 - - - Piano-Roll - no pattern - Piano virtuel - pas de motif - - - Quantize - Quantifier - - - - PianoView - - Base note - Note de base - - - - Plugin - - Plugin not found - Le greffon n'a pas été trouvé - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Le greffon "%1" n'a pas été trouvé ou n'a pas pu être chargé ! -Raison : "%2" - - - Error while loading plugin - Une erreur est survenue pendant le chargement du greffon - - - Failed to load plugin "%1"! - Le chargement du greffon "%1" a échoué ! - - PluginBrowser - Instrument 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 - - - - 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 ! - - - - 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 - - - - ProjectRenderer - - WAV-File (*.wav) - Fichier WAV (*.wav) - - - Compressed OGG-File (*.ogg) - Fichier OGG compressé (*.ogg) - - - FLAC-File (*.flac) - Fichier FLAC (*.flac) - - - Compressed MP3-File (*.mp3) - Fichier MP3 compressé (*.mp3) - - - - QWidget - - Name: - Nom : - - - 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: - Fichier : - - - File: %1 - Fichier : %1 - - - - RenameDialog - - Rename... - Renommer... - - - - ReverbSCControlDialog - - Input - Entrée - - - Input Gain: - Gain en entrée : - - - Size - Taille - - - Size: - Taille : - - - Color - Couleur - - - Color: - Couleur : - - - Output - Sortie - - - Output Gain: - Gain en sortie : - - - - ReverbSCControls - - Input Gain - Gain en entrée - - - Size - Taille - - - Color - Couleur - - - Output Gain - Gain en sortie - - - - 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 - - - Delete (middle mousebutton) - Supprimer (bouton du milieu de la souris) - - - Cut - Couper - - - Copy - Copier - - - Paste - Coller - - - Mute/unmute (<%1> + middle click) - Sourdine (ou non) (<%1> + clic-milieu) - - - - SampleTrack - - Sample track - Piste d'échantillon - - - Volume - Volume - - - Panning - Panoramisation - - - - SampleTrackView - - Track volume - Volume de la piste - - - Channel volume: - Volume du canal : - - - VOL - VOL - - - Panning - Panoramisation - - - Panning: - Panoramisation : - - - PAN - PAN - - - - SetupDialog - - Setup LMMS - Configuration de LMMS - - - General settings - Configuration générale - - - BUFFER SIZE - TAILLE DE LA MÉMOIRE TAMPON - - - Reset to default-value - Réinitialiser à la valeur par défaut - - - MISC - DIVERS - - - Enable tooltips - Activer les info-bulles - - - Show restart warning after changing settings - Invitation à redémarrer après modification de la configuration - - - Compress project files per default - Compresser les fichiers de projet par défaut - - - One instrument track window mode - Mode une piste d'instrument par fenêtre - - - HQ-mode for output audio-device - Périphérique de sortie audio en mode HQ - - - Compact track buttons - Boutons compacts de piste - - - 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 - - - LANGUAGE - LANGAGE - - - Paths - Chemins d'accès - - - LMMS working directory - Répertoire de travail de LMMS - - - VST-plugin directory - Répertoire des greffons VST - - - Background artwork - Thème graphique d'arrière-plan - - - STK rawwave directory - Répertoire de STK - - - Default Soundfont File - Fichier SoundFont par défaut - - - Performance settings - Configuration des performances - - - UI effects vs. performance - Effets graphiques versus perfomances - - - Smooth scroll in Song Editor - Déplacement fluide dans l'éditeur de morceau - - - Show playback cursor in AudioFileProcessor - Afficher le curseur de lecture dans AudioFileProcessor - - - Audio settings - Configurations audio - - - AUDIO INTERFACE - INTERFACE AUDIO - - - MIDI settings - Configurations MIDI - - - MIDI INTERFACE - INTERFACE MIDI - - - 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é - - - Auto-save interval: %1 - Intervalle de sauvegarde automatique : %1 - - - 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. - - - - Song - - Tempo - Tempo - - - Master volume - Volume général - - - Master pitch - Tonalité générale - - - 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 - - - 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) - - - LMMS Error report - Rapport d'erreur LMMS - - - Save project - Sauvegarder le projet - - - - 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. - - - 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. - - - - 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 - - - Edit actions - Actions d'édition - - - Timeline controls - Contrôles de la ligne de temps - - - Zoom controls - Contrôle du zoom - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - Spectre linéaire - - - Linear Y axis - Axe Y linéaire - - - - SpectrumAnalyzerControls - - Linear spectrum - Spectre linéaire - - - Linear Y axis - Axe Y linéaire - - - Channel mode - Mode du canal - - - - SubWindow - - Close - Fermer - - - Maximize - Maximiser - - - Restore - Restorer - - - - TabWidget - - Settings for %1 - Réglages pour %1 - - - - 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 - - - - TimeDisplayWidget - - click to change time units - cliquez pour modifier les unités de temps - - - MIN - MIN - - - SEC - DEC - - - MSEC - MSEC - - - BAR - BAR - - - BEAT - BATT - - - TICK - TICK - - - - TimeLineWidget - - Enable/disable auto-scrolling - Activer/désactiver l'auto-défilement - - - Enable/disable loop-points - Activer/désactiver les marqueurs de jeu en boucle - - - After stopping go back to begin - Revenir au début après l'arrêt - - - 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 - - - - 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 Track %1 (%2/Total %3) - Chargement de la piste %1 (%2/Total %3) - - - - TrackContentObject - - Mute - Mettre en sourdine - - - - TrackContentObjectView - - 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) - - - Delete (middle mousebutton) - Supprimer (bouton du milieu de la souris) - - - Cut - Couper - - - Copy - Copier - - - Paste - Coller - - - Mute/unmute (<%1> + middle click) - Mettre en sourdine (ou pas) (<%1> + clic-milieu) - - - - 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. - - - Actions for this track - Actions pour cette piste - - - Mute - Mode sourdine - - - Solo - Mode solo - - - Mute this track - Mettre cette piste en sourdine - - - Clone this track - Cloner cette piste - - - Remove this track - Supprimer cette piste - - - Clear this track - Vider cette piste - - - FX %1: %2 - Effet %1 : %2 - - - 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 - - - - 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 - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Utiliser la modulation d'amplitude pour moduler l'oscillateur 1 avec l'oscillateur 2 - - - Mix output of oscillator 1 & 2 - Mélanger la sortie des oscillateurs 1 et 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 - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Utiliser la modulation de phase pour moduler l'oscillateur 2 avec l'oscillateur 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 - - - Mix output of oscillator 2 & 3 - Mélanger la sortie des oscillateurs 2 et 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 - - - 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. - - - 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 a moog-like saw-wave for current oscillator. - Utiliser une onde en dents-de-scie de type Moog pour cet oscillateur. - - - Use an exponential wave for current oscillator. - Utiliser une onde exponentielle 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. - - - - VersionedSaveDialog - - Increment version number - Incrémenter le numéro de version - - - Decrement version number - Décrémenter le numéro de version - - - already exists. Do you want to replace it? - existe déjà. Souhaitez-vous le remplacer ? - - - - VestigeInstrumentView - - Open other VST-plugin - Ouvrir un autre greffon 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. - - - 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. - - - 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. - - - 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 - - - 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. - - - 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 /> - - - - VstPlugin - - Loading plugin - Chargement du greffon - - - Open Preset - Ouvrir le Pré-réglage - - - Vst Plugin Preset (*.fxp *.fxb) - Pré-réglage de Greffon VST (*.fxp *.fxb) - - - : default - : défaut - - - " - " - - - ' - ' - - - Save Preset - Enregistrer le pré-réglage - - - .fxp - .fxp - - - .FXP - .FXP - - - .FXB - .FXB - - - .fxb - .fxb - - - Please wait while loading VST plugin... - Veuillez patienter pendant le chargement du greffon VST... - - - The VST plugin %1 could not be loaded. - Le greffon "%1" n'a pas pu être chargé. - - - - WatsynInstrument - - Volume A1 - Volume A1 - - - Volume A2 - Volume A2 - - - Volume B1 - Volume B1 - - - Volume B2 - Volume B2 - - - Panning A1 - Panoramisation A1 - - - Panning A2 - Panoramisation A2 - - - Panning B1 - Panoramisation B1 - - - Panning B2 - Panoramisation B2 - - - Freq. multiplier A1 - Multiplicateur de fréquence A1 - - - Freq. multiplier A2 - Multiplicateur de fréquence A2 - - - Freq. multiplier B1 - Multiplicateur de fréquence B1 - - - Freq. multiplier B2 - Multiplicateur de fréquence B2 - - - Left detune A1 - Dé-réglage gauche A1 - - - Left detune A2 - Dé-réglage gauche A2 - - - Left detune B1 - Dé-réglage gauche B1 - - - Left detune B2 - Dé-réglage gauche B2 - - - Right detune A1 - Dé-réglage droit A1 - - - Right detune A2 - Dé-réglage droit A2 - - - Right detune B1 - Dé-réglage droit B1 - - - Right detune B2 - Dé-réglage droit B2 - - - A-B Mix - Mélange A-B - - - A-B Mix envelope amount - Niveau de mélange d'enveloppe A-B - - - A-B Mix envelope attack - Niveau de mélange d'attaque d'enveloppe A-B - - - A-B Mix envelope hold - Niveau de mélange du maintien d'enveloppe A-B - - - A-B Mix envelope decay - Niveau de mélange de l'affaiblissement (decay) d'enveloppe A-B - - - A1-B2 Crosstalk - Diaphonie A1-B2 - - - A2-A1 modulation - Modulation A2-A1 - - - B2-B1 modulation - Modulation B2-B1 - - - Selected graph - Graphique sélectionné - - - - WatsynView - - 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 - - - Filter Frequency - Fréquence du filtre - - - Filter Resonance - Résonance du filtre - - - Bandwidth - Largeur de bande - - - FM Gain - Gain FM - - - Resonance Center Frequency - Fréquence Centrale de la Résonance - - - Resonance Bandwidth - Largeur de Bande de la Résonance - - - Forward MIDI Control Change Events - Transmet les événements MIDI Control Change - - - - ZynAddSubFxView - - Show GUI - Montrer l'interface utilisateur graphique - - - 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. - - - Portamento: - Portamento : - - - PORT - PORT - - - 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 - - - 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. - - - Click here for a triangle-wave. - Cliquez ici pour une onde triangulaire. - - - Click here for a saw-wave. - 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 white-noise. - Cliquez ici pour un bruit blanc. - - - Click here for a user-defined shape. - Cliquez ici pour une onde définie par l'utilisateur. - - - - 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 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 - - - 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. - - - Square wave - Onde carrée - - - Click here for a square-wave. - Cliquez ici pour une onde carrée. - - - White noise wave - 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 - - Assign to: - Assigner à : - - - New FX Channel - Nouveau canal d'effet - - - - graphModel - - Graph - Graphique - - - - kickerInstrument - - Start frequency - Fréquence de début - - - End frequency - Fréquence de fin - - - Gain - Gain - - - Length - Longueur - - - Distortion Start - Début de distorsion - - - Distortion End - Fin de distorsion - - - Envelope Slope - Pente d'enveloppe - - - Noise - Bruit - - - Click - Clic - - - Frequency Slope - Pente de fréquence - - - Start from note - Commencer à la note - - - End to note - Finir à la note - - - - kickerInstrumentView - - Start frequency: - Fréquence de début : - - - End frequency: - Fréquence de fin : - - - Gain: - Gain : - - - Frequency Slope: - Pente de fréquence : - - - Envelope Length: - Longueur de l'enveloppe : - - - Envelope Slope: - Pente de l'enveloppe : - - - Click: - Clic : - - - Noise: - Bruit : - - - Distortion Start: - Début de distorsion : - - - Distortion End: - Fin de distorsion : - - - - 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 - - Plugins - Greffons - - - Description - Description - - - - ladspaPortDialog - - Ports - Ports - - - Name - Nom - - - Rate - Vitesse - - - Direction - Sens - - - Type - Type - - - Min < Default < Max - Min < par défaut < Max - - - Logarithmic - Logarithmique - - - SR Dependent - Dépendant du taux d'échantillonnage - - - Audio - Audio - - - Control - Contrôle - - - Input - Entrée - - - Output - Sortie - - - Toggled - Permuté - - - Integer - Entier - - - Float - Flottant - - - Yes - Oui - - - - lb302Synth - - VCF Cutoff Frequency - Fréquence de coupure du VCF - - - VCF Resonance - Résonance du VCF - - - VCF Envelope Mod - Modulation de l'enveloppe du VCF - - - VCF Envelope Decay - Affaiblissement (decay) de l'enveloppe du VCF - - - Distortion - Distorsion - - - Waveform - Forme d'onde - - - Slide Decay - Affaiblissement (decay) glissant - - - Slide - Liaison - - - Accent - Accent - - - Dead - Éteint - - - 24dB/oct Filter - Filtre 24 dB/oct - - - - lb302SynthView - - Cutoff Freq: - Fréquence de coupure : - - - Resonance: - Résonance : - - - Env Mod: - Modulation de l'enveloppe : - - - Decay: - Affaiblissement : - - - 303-es-que, 24dB/octave, 3 pole filter - 303-esque, 24 dB/octave, filtre à 3 pôles - - - Slide Decay: - Affaiblissement glissant : - - - DIST: - DIST : - - - Saw wave - Onde en dents-de-scie - - - Click here for a saw-wave. - Cliquez ici pour une onde en dents-de-scie. - - - Triangle wave - Onde triangulaire - - - Click here for a triangle-wave. - Cliquez ici pour une onde triangulaire. - - - Square wave - Onde carrée - - - Click here for a square-wave. - Cliquez ici pour une onde carrée. - - - Rounded square wave - Onde carrée arrondie - - - Click here for a square-wave with a rounded end. - Cliquez ici pour une onde carrée avec une fin arrondie. - - - Moog wave - Onde Moog - - - Click here for a moog-like wave. - Cliquez ici pour une onde de type Moog. - - - Sine wave - Onde sinusoïdale - - - Click for a sine-wave. - Cliquez ici pour une onde sinusoïdale. - - - White noise wave - Bruit blanc - - - Click here for an exponential wave. - Cliquez ici pour une onde exponentielle. - - - Click here for white-noise. - Cliquez ici pour un bruit blanc. - - - Bandlimited saw wave - Onde en dents-de-scie à bande limitée - - - Click here for bandlimited saw wave. - Cliquez ici pour une onde en dents-de-scie à bande limitée. - - - Bandlimited square wave - Onde carrée à bande limitée - - - Click here for bandlimited square wave. - Cliquez ici pour une onde carrée à bande limitée. - - - Bandlimited triangle wave - Onde triangulaire à bande limitée - - - Click here for bandlimited triangle wave. - Cliquez ici pour une onde triangulaire à bande limitée. - - - Bandlimited moog saw wave - Onde en dents-de-scie Moog à bande limitée - - - Click here for bandlimited moog saw wave. - Cliquez ici pour une onde en dents-de-scie de type Moog à bande limitée. - - - - malletsInstrument - - Hardness - Dureté - - - Position - Position - - - Vibrato Gain - Gain du vibrato - - - Vibrato Freq - Fréquence du vibrato - - - Stick Mix - Stick Mix - - - Modulator - Modulateur - - - Crossfade - Fondu enchainé - - - LFO Speed - Vitesse du LFO - - - LFO Depth - Profondeur du LFO - - - ADSR - ADSR - - - Pressure - Pression - - - Motion - Mouvement - - - Speed - Vitesse - - - Bowed - Courbé - - - Spread - Diffusion - - - Marimba - Marimba - - - Vibraphone - Vibraphone - - - Agogo - Agogo - - - Wood1 - Bois1 - - - Reso - Réso - - - Wood2 - Bois2 - - - Beats - Battements - - - Two Fixed - Deux fixes - - - Clump - Bruit lourd - - - Tubular Bells - Cloches tubulaires - - - Uniform Bar - Barre uniforme - - - Tuned Bar - Barre accordée - - - Glass - Verre - - - Tibetan Bowl - Bol tibétain - - - - 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é ! - - - - 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. - - - 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 - - - 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 - - Distortion - Distorsion - - - Volume - Volume - - - - organicInstrumentView - - Distortion: - Distorsion : - - - Volume: - Volume : - - - Randomise - Randomiser - - - Osc %1 waveform: - Form d'onde de l'oscillateur %1 : - - - Osc %1 volume: - Volume de l'oscillateur %1 : - - - Osc %1 panning: - Panoramisation de l'oscillateur %1 : - - - 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 - - - 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 - - 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 + + A native amplifier plugin + Un greffon d'amplification natif - Plugin for freely manipulating stereo output - Greffon pour la manipulation de la sortie stéréo + + 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 controlling knobs with sound peaks - Greffon pour des boutons de contrôles avec des crêtes de son + + Boost your bass the fast and simple way + Renforcer vos basses de la manière la plus simple et la plus rapide - 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 + + Customizable wavetable synthesizer + Synthétiseur de table d'ondes personnalisable + + An oversampling bitcrusher + Un bitcrusher sur-échantillonneur + + + + Carla Patchbay Instrument + Baie d'instruments Carla + + + + Carla Rack Instrument + Rack d'instruments Carla + + + + A dynamic range compressor. + Un compresseur de plage dynamique. + + + + A 4-band Crossover Equalizer + Un égaliseur crossover à 4 bandes + + + + A native delay plugin + Greffon délai natif + + + + A Dual filter plugin + Un greffon de filtre double + + + + plugin for processing dynamics in a flexible way + Greffon pour transformer la dynamique sonore de façon flexible + + + + A native eq plugin + Un greffon égaliseur natif + + + + A native flanger plugin + Un greffon flanger natif + + + + Emulation of GameBoy (TM) APU + Émulateur de l'APU de la GameBoy (TM) + + + + Player for GIG files + Lecteur de fichiers GIG + + + + Filter for importing Hydrogen files into LMMS + Filtre pour importer des fichiers Hydrogen dans LMMS + + + + Versatile drum synthesizer + Synthétiseur de batterie polyvalent + + + List installed LADSPA plugins Liste des greffons LADSPA installés - 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. + + Incomplete monophonic imitation TB-303 + Une imitation monophonique incomplète de la TB-303 + + + + plugin for using arbitrary LV2-effects inside LMMS. + Greffon pour l'utilisation de tout effet LV2 dans LMMS. + + + + plugin for using arbitrary LV2 instruments inside LMMS. + Greffon pour l'utilisation de tout instrument LV2 dans LMMS. + + + + Filter for exporting MIDI-files from LMMS + Filtre pour l'exportation de fichiers MIDI depuis LMMS + + + Filter for importing MIDI-files into LMMS Filtre pour importer des fichiers MIDI dans LMMS + + Monstrous 3-oscillator synth with modulation matrix + Synthétiseur à 3 oscillateurs monstrueux avec matrice de modulation + + + + A multitap echo delay plugin + Un greffon d'écho et délai multitap + + + + A NES-like synthesizer + Un synthétiseur genre 'NES' + + + + 2-operator FM Synth + Synthé FM à 2 opérateurs + + + + Additive Synthesizer for organ-like sounds + Synthétiseur additif pour sons d'orgue + + + + GUS-compatible patch instrument + Sons d'instruments compatibles avec la carte Gravis UltraSound (GUS) + + + + Plugin for controlling knobs with sound peaks + Greffon pour des boutons de contrôles avec des crêtes de son + + + + Reverb algorithm by Sean Costello + Algorithme de réverbération par Sean Costello + + + + Player for SoundFont files + Lecteur de fichiers SoundFont + + + + LMMS port of sfxr + Port LMMS de sfxr + + + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Émulateur des SID MOS6581 et MOS8580. Cette puce était utilisée dans l'ordinateur Commodore 64. - Player for SoundFont files - Lecteur de fichiers SoundFont + + A graphical spectrum analyzer. + Un analyseur de spectre graphique - Emulation of GameBoy (TM) APU - Émulateur de l'APU de la GameBoy (TM) + + 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 - Customizable wavetable synthesizer - Synthétiseur de table d'ondes personnalisable + + Plugin for freely manipulating stereo output + Greffon pour la manipulation de la sortie stéréo - 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 + + 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 native amplifier plugin - Un greffon d'amplification natif + + A stereo field visualizer. + Un visualiseur de champ stéréo. - Carla Rack Instrument - Rack d'instruments Carla + + VST-host for using VST(i)-plugins within LMMS + Hôte VST pour l'utilisation de greffons VST(i) 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 - - - 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 + + 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. - Graphical spectrum analyzer plugin - Greffon analyseur graphique de spectre + + 4-oscillator modulatable wavetable synth + Synthétiseur de table d'ondes modulables à 4 oscillateurs - 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 + + plugin for waveshaping + Greffon pour du modelage d'onde + Mathematical expression parser Analyseur d'expression mathématique - - - sf2Instrument - Bank - Banque + + Embedded ZynAddSubFX + ZynAddSubFX intégré - Patch - Son + + An all-pass filter allowing for extremely high orders. + - Gain - Gain + + Granular pitch shifter + - Reverb - Réverbération + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + - Reverb Roomsize - Réverbération (taille de la salle) + + Basic Slicer + - Reverb Damping - Amortissement de la réverbération - - - Reverb Width - Largeur de la réverbération - - - Reverb Level - Niveau de la réverbération - - - Chorus - Chorus - - - Chorus Lines - Lignes de chorus - - - Chorus Level - Niveau de chorus - - - Chorus Speed - Vitesse de chorus - - - Chorus Depth - Profondeur de chorus - - - A soundfont %1 could not be loaded. - La banque de sons %1 n'a pu être chargée. + + Tap to the beat + - sf2InstrumentView + PluginEdit - Open other SoundFont file - Ouvrir un fichier SoundFont + + Plugin Editor + Éditeur de plugin - Click here to open another SF2 file - Cliquez ici pour ouvrir un autre fichier SF2 + + Edit + Éditer - Choose the patch - Choisir un son + + Control + Contrôle - Gain - Gain + + MIDI Control Channel: + - Apply reverb (if supported) - Appliquer la réverbération (si prise en charge) + + N + - 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. + + Output dry/wet (100%) + Sortie dry/wet(100%) - Reverb Roomsize: - Réverbération (taille de la salle) : + + Output volume (100%) + Volume de sorte (100%) - Reverb Damping: - Amortissement de la réverbération : + + Balance Left (0%) + Balance gauche (0%) - Reverb Width: - Largeur de la réverbération : + + + Balance Right (0%) + Balance droite (0%) - Reverb Level: - Niveau de la réverbération : + + Use Balance + Utiliser la balance - Apply chorus (if supported) - Appliquer le chorus (si pris en charge) + + Use Panning + Utiliser le panoramique - 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. + + Settings + Configuration - Chorus Lines: - Lignes de chorus : + + Use Chunks + - Chorus Level: - Niveau de chorus : + + Audio: + Audio: - Chorus Speed: - Vitesse de chorus : + + Fixed-Size Buffer + Tampon à taille fixe - Chorus Depth: - Profondeur de chorus : + + Force Stereo (needs reload) + - Open SoundFont file - Ouvrir un fichier SoundFont + + MIDI: + MIDI: - SoundFont2 Files (*.sf2) - Fichiers SoundFont2 (*.sf2) + + Map Program Changes + + + + + Send Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + +Nom du plugin + + + + + Program: + Programme: + + + + MIDI Program: + Programme MIDI: + + + + Save State + Enregistrer l'état + + + + Load State + Charger l'état + + + + Information + Information + + + + Label/URI: + Étiquette/URI: + + + + Name: + Nom : + + + + Type: + Type : + + + + Maker: + Créateur: + + + + Copyright: + Copyright : + + + + Unique ID: + - sfxrInstrument + PluginFactory - Wave Form - Forme d'onde + + 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 ! - sidInstrument + PluginListDialog - Cutoff - Coupure + + Carla - Add New + - Resonance - Résonance + + Requirements + - Filter type - Type de filtre + + With Custom GUI + - Voice 3 off - Voix 3 coupée + + With CV Ports + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + + + + + Parameter Name + Nom du paramètre + + + + TextLabel + + + + + ... + ... + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + + + + + Enable + Activer + + + + On/Off + On/Off + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + ENTRÉE AUDIO + + + + AUDIO OUT + SORTIE AUDIO + + + + GUI + GUI + + + + Edit + Éditer + + + + Remove + Supprimer + + + + Plugin Name + Nom du plugin + + + + Preset: + Préréglage: + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + Recharger le plugin + + + + Show GUI + Montrer l'interface graphique + + + + Help + Aide + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + Nom : + + + + 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 : + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + Volume Volume - Chip model - Modèle de circuit + + Panning + Panoramisation + + + + Left gain + Gain de gauche + + + + Right gain + Gain de droite - sidInstrumentView + lmms::AudioFileProcessor - Volume: - Volume : + + Amplify + Amplifier - Resonance: - Résonance : + + Start of sample + Début de l'échantillon - Cutoff frequency: - Fréquence de coupure : + + End of sample + Fin de l'échantillon - High-Pass filter - Filtre passe-haut + + Loopback point + Point de bouclage - Band-Pass filter - Filtre passe-bande + + Reverse sample + Inverser l'échantillon - Low-Pass filter - Filtre passe-bas + + Loop mode + Mode de bouclage - Voice3 Off - Voix 3 coupée + + Stutter + - MOS6581 SID - SID MOS6581 + + Interpolation mode + Mode d'interpolation - MOS8580 SID - SID MOS8580 + + None + Aucun - Attack: - Attaque : + + Linear + Linéaire - 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 + + Sinc 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é. + + Sample not found + - stereoEnhancerControlDialog + lmms::AudioJack - WIDE - AMPL + + JACK client restarted + Le client JACK a redémarré - Width: - Ampleur : + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + Le serveur JACK est arrêté + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + Le serveur JACK semble avoir été arrêté et le démarrage d'une nouvelle instance a échoué. Par conséquent, LMMS ne peut pas continuer. Vous devriez enregistrer votre projet puis redémarrer JACK et LMMS. + + + + Client name + Nom du client + + + + Channels + Canaux - stereoEnhancerControls + lmms::AudioOss - Width - Ampleur + + Device + Périphérique + + + + Channels + Canaux - stereoMatrixControlDialog + lmms::AudioPortAudio::setupWidget - Left to Left Vol: - Volume de gauche à gauche : + + Backend + - Left to Right Vol: - Volume de gauche à droite : - - - Right to Left Vol: - Volume de droite à gauche : - - - Right to Right Vol: - Volume de droite à droite : + + Device + Périphérique - stereoMatrixControls + lmms::AudioPulseAudio - Left to Left - Gauche à gauche + + Device + Périphérique - Left to Right - Gauche à droite - - - Right to Left - Droite à gauche - - - Right to Right - Droite à droite + + Channels + Canaux - vestigeInstrument + lmms::AudioSdl::setupWidget - Loading plugin - Chargement du greffon + + Playback device + - Please wait while loading VST-plugin... - Veuillez patienter pendant le chargement du greffon VST... + + Input device + - vibed + lmms::AudioSndio - String %1 volume - Volume de la corde %1 + + Device + Périphérique - 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 - - - Detune %1 - Désaccordage %1 - - - Fuzziness %1 - Flou %1 - - - Length %1 - Longueur %1 - - - Impulse %1 - Pulsation %1 - - - Octave %1 - Octave %1 + + Channels + Canaux - vibedView + lmms::AudioSoundIo::setupWidget - Volume: - Volume : + + Backend + - The 'V' knob sets the volume of the selected string. - Le bouton « V » règle le volume de la corde choisie. + + Device + Périphérique + + + + lmms::AutomatableModel + + + &Reset (%1%2) + &Réinitialiser (%1%2) - String stiffness: - Rigidité de la corde : + + &Copy value (%1%2) + &Copier la valeur (%1%2) - 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. + + &Paste value (%1%2) + &Coller la valeur (%1%2) - Pick position: - Point de contact : + + &Paste value + &Coller la valeur - 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. + + Edit song-global automation + Éditer l'automation globale du morceau - Pickup position: - Point d'écoute : + + Remove song-global automation + Supprimer l'automation globale du morceau - 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. + + Remove all linked controls + Supprimer tous les contrôles liés - Pan: - Panoramisation : + + Connected to %1 + Connecté à %1 - 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. + + Connected to controller + Connecté au contrôleur - Detune: - Detune : + + Edit connection... + Éditer la connexion... - 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. + + Remove connection + Supprimer la connexion - Fuzziness: - Flou : + + Connect to controller... + Connecter le contrôleur... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + Déplacer un contrôle en appuyant sur <%1> + + + + lmms::AutomationTrack + + + Automation track + Piste d'automation + + + + lmms::BassBoosterControls + + + Frequency + Fréquence - 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'. + + Gain + Gain - Length: - Longueur : + + Ratio + Ratio + + + + lmms::BitInvader + + + Sample length + Longueur de l'échantillon - 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. - - - 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. - - - 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 - 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 + + 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. + - voiceObject - - Voice %1 pulse width - Largeur de pulsation de la voix %1 - - - Voice %1 attack - Attaque de la voix %1 - - - Voice %1 decay - Affaiblissement de la voix %1 - - - Voice %1 sustain - Soutien de la voix %1 - - - Voice %1 release - Relâchement de la voix %1 - - - Voice %1 coarse detuning - Désaccordage grossier de la voix %1 - - - Voice %1 wave shape - Forme d'onde de la voix %1 - - - Voice %1 sync - Synchronisation de la voix %1 - - - Voice %1 ring modulate - Modulation en anneaux de la voix %1 - - - Voice %1 filtered - Voix %1 filtrée - - - Voice %1 test - Test de la voix %1 - - - - waveShaperControlDialog - - INPUT - ENTRÉE - - - Input gain: - Gain en entrée : - - - OUTPUT - SORTIE - - - Output gain: - Gain en sortie : - - - Reset waveform - Réinitialiser la forme d'onde - - - Click here to reset the wavegraph back to default - Cliquez 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 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 - - - Clip input - Couper le signal d'entrée - - - Clip input signal to 0dB - Couper le signal d'entrée à 0dB - - - - waveShaperControls + lmms::BitcrushControls + Input gain Gain en entrée + + Input noise + Bruit en 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 + + + + lmms::Clip + + + Mute + Mettre en sourdine + + + + lmms::CompressorControls + + + Threshold + Seuil : + + + + Ratio + Ratio + + + + Attack + Attaque + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + Taille RMS + + + + Mid/Side + + + + + Peak Mode + Mode crête + + + + Lookahead Length + + + + + Input Balance + Balance d'entrée + + + + Output Balance + Balance de sortie + + + + Limiter + Limiteur + + + + Output Gain + Gain en sortie + + + + Input Gain + Gain en entrée + + + + Blend + Mélange + + + + Stereo Balance + Balance stéréo : + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + Lien stéréo + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + Fréquence du LFO : + + + + LFO amount + Niveau du LFO + + + Output gain Gain en sortie + + lmms::DispersionControls + + + Amount + Niveau + + + + Frequency + Fréquence + + + + Resonance + Résonance + + + + Feedback + + + + + DC Offset Removal + Suppression de la composante continue + + + + lmms::DualFilterControls + + + Filter 1 enabled + Filtre 1 activé + + + + Filter 1 type + Type du filtre 1 + + + + Cutoff frequency 1 + Fréquence de coupure 1 + + + + Q/Resonance 1 + Q/Résonance 1 + + + + Gain 1 + Gain 1 + + + + Mix + Mix + + + + Filter 2 enabled + Filtre 2 activé + + + + Filter 2 type + Type du filtre 2 + + + + Cutoff frequency 2 + Fréquence de coupure 2 + + + + Q/Resonance 2 + Q/Résonance 2 + + + + Gain 2 + Gain 2 + + + + + Low-pass + Passe-bas + + + + + Hi-pass + Passe-haut + + + + + Band-pass csg + Passe-bande CSG + + + + + Band-pass czpg + Passe-bande CZPG + + + + + Notch + Coupe-bande + + + + + All-pass + Passe-tout + + + + + Moog + Moog + + + + + 2x Low-pass + 2x Passe-bas + + + + + RC Low-pass 12 dB/oct + RC Passe-bas 12 dB/octave + + + + + RC Band-pass 12 dB/oct + RC Passe-bande 12 dB/octave + + + + + RC High-pass 12 dB/oct + RC Passe-haut 12 dB/octave + + + + + RC Low-pass 24 dB/oct + RC Passe-bas 24 dB/octave + + + + + RC Band-pass 24 dB/oct + RC Passe-bande 24 dB/octave + + + + + RC High-pass 24 dB/oct + RC Passe-haut 24 dB/octave + + + + + Vocal Formant + + + + + + 2x Moog + 2x Moog + + + + + SV Low-pass + SV Passe-bas + + + + + SV Band-pass + SV Passe-bande + + + + + SV High-pass + SV Passe-haut + + + + + SV Notch + SV coupe-bande + + + + + Fast Formant + + + + + + Tripole + Tripôle + + + + lmms::DynProcControls + + + Input gain + Gain en entrée + + + + Output gain + Gain en sortie + + + + Attack time + Temps d'attaque + + + + Release time + + + + + Stereo mode + Mode stéréo + + + + lmms::Effect + + + Effect enabled + Effet activé + + + + Wet/Dry mix + Mélange originel/traité + + + + Gate + Seuil + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + Effets activés + + + + lmms::Engine + + + Generating wavetables + Génération des tables d'ondes + + + + Initializing data structures + Initialisation des structures de données + + + + Opening audio and midi devices + Ouverture des périphériques audio et MIDI + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Pré-délai de l'enveloppe + + + + Env attack + Attaque de l'enveloppe + + + + Env hold + Maintien de enveloppe + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + Niveau de modulation de enveloppe + + + + LFO pre-delay + Pré-délai du LFO + + + + LFO attack + Attaque du LFO + + + + LFO frequency + Fréquence du LFO + + + + LFO mod amount + Niveau de modulation du LFO + + + + LFO wave shape + Forme d'onde du LFO + + + + LFO frequency x 100 + Fréquence du LFO x 100 + + + + Modulate env amount + Moduler le niveau de l'enveloppe + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + Gain en entrée + + + + Output gain + Gain en sortie + + + + Low-shelf gain + Gain du low-shelf + + + + Peak 1 gain + Gain de crête 1 + + + + Peak 2 gain + Gain de crête 2 + + + + Peak 3 gain + Gain de crête 3 + + + + Peak 4 gain + Gain de crête 4 + + + + High-shelf gain + Gain du high-shelf + + + + HP res + Résolution du passe-haut + + + + Low-shelf res + Résolution du low-shelf + + + + Peak 1 BW + Bande-passante du pic 1 + + + + Peak 2 BW + Bande-passante du pic 2 + + + + Peak 3 BW + Bande-passante du pic 3 + + + + Peak 4 BW + Bande-passante du pic 4 + + + + High-shelf res + Résolution du high-shelf + + + + LP res + Résolution du passe-bas + + + + HP freq + Fréquence du passe-haut + + + + Low-shelf freq + Fréquence du low-shelf + + + + Peak 1 freq + Fréquence de crête 1 + + + + Peak 2 freq + Fréquence de crête 2 + + + + Peak 3 freq + Fréquence de crête 3 + + + + Peak 4 freq + Fréquence de crête 4 + + + + High-shelf freq + Fréquence du high-shelf + + + + LP freq + Fréquence du passe-bas + + + + HP active + Passe-haut actif + + + + Low-shelf active + Low-shelf actif + + + + Peak 1 active + Crête 1 active + + + + Peak 2 active + Crête 2 active + + + + Peak 3 active + Crête 3 active + + + + Peak 4 active + Crête 4 active + + + + High-shelf active + High-shelf actif + + + + LP active + Passe-bas actif + + + + LP 12 + Passe-bas 12 + + + + LP 24 + Passe-bas 24 + + + + LP 48 + Passe-bas 48 + + + + HP 12 + Passe-haut 12 + + + + HP 24 + Passe-haut 24 + + + + HP 48 + Passe-haut 48 + + + + Low-pass type + type de passe-bas + + + + High-pass type + type de passe-haut + + + + Analyse IN + Analyse de l'entrée + + + + Analyse OUT + Analyse de la sortie + + + + lmms::FlangerControls + + + Delay samples + Délai d'échantillonnage + + + + LFO frequency + Fréquence du LFO + + + + Amount + + + + + Stereo phase + Phase stéréo + + + + Feedback + + + + + Noise + Bruit + + + + Invert + Inverser + + + + lmms::FreeBoyInstrument + + + Sweep time + Temps de balayage + + + + Sweep direction + Sens de balayage + + + + Sweep rate shift amount + Niveau de décalage du taux de balayage + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + Volume du canal 1 + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + Volume du canal 2 + + + + Channel 3 volume + Volume du canal 3 + + + + Channel 4 volume + Volume du canal 4 + + + + Shift Register width + Largeur du registre de décalage + + + + Right output level + Niveau de sortie droite + + + + Left output level + Niveau de sortie gauche + + + + Channel 1 to SO2 (Left) + Canal 1 vers SO2 (gauche) + + + + Channel 2 to SO2 (Left) + Canal 2 vers SO2 (gauche) + + + + Channel 3 to SO2 (Left) + Canal 3 vers SO2 (gauche) + + + + Channel 4 to SO2 (Left) + Canal 4 vers SO2 (gauche) + + + + Channel 1 to SO1 (Right) + Canal 1 vers SO1 (droite) + + + + Channel 2 to SO1 (Right) + Canal 2 vers SO1 (droite) + + + + Channel 3 to SO1 (Right) + Canal 3 vers SO1 (droite) + + + + Channel 4 to SO1 (Right) + Canal 4 vers SO1 (droite) + + + + Treble + Aigus + + + + Bass + Graves + + + + lmms::GigInstrument + + + Bank + Banque + + + + Patch + + + + + Gain + Gain + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + Arpège + + + + Arpeggio type + Type d'arpège + + + + Arpeggio range + Plage d'arpège + + + + Note repeats + Répétition de note + + + + Cycle steps + + + + + Skip rate + Taux de saut + + + + Miss rate + Taux de manqué + + + + Arpeggio time + Temps d'arpège + + + + Arpeggio gate + Durée d'arpège + + + + Arpeggio direction + Direction de l'arpège + + + + Arpeggio mode + Mode d'arpège + + + + Up + Ascendant + + + + Down + Descendant + + + + Up and down + Ascendant et descendant + + + + Down and up + Descendant et ascendant + + + + Random + Aléatoire + + + + Free + Libre + + + + Sort + Tri + + + + Sync + Sync + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + Accords + + + + Chord type + Type d'accord + + + + Chord range + Gamme d'accord + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + Enveloppes/LFOs + + + + Filter type + Type de filtre + + + + Cutoff frequency + Fréquence de coupure + + + + Q/Resonance + Q/Résonance + + + + Low-pass + Passe-bas + + + + Hi-pass + Passe-haut + + + + Band-pass csg + Passe-bande CSG + + + + Band-pass czpg + Passe-bande czpg + + + + Notch + Coupe-bande + + + + All-pass + Passe-tout + + + + Moog + Moog + + + + 2x Low-pass + 2x Passe-bas + + + + RC Low-pass 12 dB/oct + RC Passe-bas 12 dB/octave + + + + RC Band-pass 12 dB/oct + RC Passe-bande 12 dB/octave + + + + RC High-pass 12 dB/oct + RC Passe-haut 12 dB/octave + + + + RC Low-pass 24 dB/oct + RC Passe-bas 24 dB/octave + + + + RC Band-pass 24 dB/oct + RC Passe-bande 24 dB/octave + + + + RC High-pass 24 dB/oct + RC Passe-haut 24 dB/octave + + + + Vocal Formant + + + + + 2x Moog + 2x Moog + + + + SV Low-pass + SV Passe-bas + + + + SV Band-pass + SV Passe-bande + + + + SV High-pass + SV Passe-haut + + + + SV Notch + SV coupe-bande + + + + Fast Formant + + + + + Tripole + Tripôle + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + Note de base + + + + First note + Première note + + + + Last note + Dernière note + + + + Volume + Volume + + + + Panning + Panoramisation + + + + Pitch + Tonalité + + + + Pitch range + Plage de tonalité + + + + Mixer channel + Canal du mixeur + + + + Master pitch + Tonalité générale + + + + Enable/Disable MIDI CC + Activer/désactiver MIDI CC + + + + CC Controller %1 + + + + + + Default preset + Pré-réglage par défaut + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + Fréquence de début + + + + End frequency + Fréquence de fin + + + + Length + Longueur + + + + Start distortion + Début de la distorsion + + + + End distortion + Fin de la distorsion + + + + Gain + Gain + + + + Envelope slope + Pente de l'enveloppe + + + + Noise + Bruit + + + + Click + Clic + + + + Frequency slope + Pente de fréquence + + + + Start from note + Commencer à la note + + + + End to note + Finir à la note + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + Lier les canaux + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + Le greffon LADSPA %1 demandé est inconnu. + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + Fréquence de coupure du VCF + + + + VCF Resonance + Résonance du VCF + + + + VCF Envelope Mod + Modulation de l'enveloppe du VCF + + + + VCF Envelope Decay + Decay de l'enveloppe du VCF + + + + Distortion + Distorsion + + + + Waveform + Forme d'onde + + + + Slide Decay + + + + + Slide + + + + + Accent + Accent + + + + Dead + + + + + 24dB/oct Filter + Filtre 24 dB/octave + + + + lmms::LfoController + + + LFO Controller + Contrôleur du LFO + + + + Base value + Valeur de base + + + + Oscillator speed + Vitesse de l'oscillateur + + + + Oscillator amount + Niveau de l'oscillateur + + + + Oscillator phase + Phase de l'oscillateur + + + + Oscillator waveform + Forme d'onde de l'oscillateur + + + + Frequency Multiplier + Multiplicateur de fréquence + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + Dureté + + + + Position + Position + + + + Vibrato gain + Gain du vibrato + + + + Vibrato frequency + Fréquence du vibrato + + + + Stick mix + + + + + Modulator + Modulateur + + + + Crossfade + + + + + LFO speed + Vitesse du LFO + + + + LFO depth + Profondeur du LFO + + + + ADSR + ADSR + + + + Pressure + Pression + + + + Motion + Mouvement + + + + Speed + Vitesse + + + + Bowed + + + + + Instrument + + + + + Spread + Diffusion + + + + Randomness + + + + + Marimba + Marimba + + + + Vibraphone + Vibraphone + + + + Agogo + Agogo + + + + Wood 1 + Bois 1 + + + + Reso + Résonance + + + + Wood 2 + Bois 2 + + + + Beats + Temps + + + + Two fixed + + + + + Clump + + + + + Tubular bells + Cloches tubulaires + + + + Uniform bar + Mesure uniforme + + + + Tuned bar + Mesure accordée + + + + Glass + Verre + + + + Tibetan bowl + Bol tibétain + + + + lmms::MeterModel + + + Numerator + Numérateur + + + + Denominator + Dénominateur + + + + lmms::Microtuner + + + Microtuner + Micro-tuner + + + + Microtuner on / off + Micro-tuner marche/arrêt + + + + Selected scale + Gamme sélectionné + + + + Selected keyboard mapping + Configuration du clavier sélectionné + + + + lmms::MidiController + + + MIDI Controller + Contrôleur MIDI + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + Paramétrage incomplet + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + Vous n'avez pas choisi de SoundFont par défaut dans la boîte de dialogue de configuration (Éditer -> Configuration). Par conséquent aucun son ne sera joué lorsque vous aurez importé ce fichier MIDI. Vous devriez télécharger une Soundfont General MIDI, la référencer dans la configuration et réessayer. + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + Vous n'avez pas compilé LMMS avec la prise en charge du lecteur SoundFont2, qui est utilisé pour ajouter un son par défaut aux fichiers MIDI importés. Par conséquent aucun son ne sera joué après l'importation de ce fichier MIDI. + + + + MIDI Time Signature Numerator + Numérateur de la signature rythmique MIDI + + + + MIDI Time Signature Denominator + Dénominateur de la signature rythmique MIDI + + + + Numerator + Numérateur + + + + Denominator + Dénominateur + + + + + Tempo + Tempo + + + + Track + Piste + + + + lmms::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é + + + + lmms::MidiPort + + + Input channel + Canal d'entrée + + + + Output channel + Canal de sortie + + + + Input controller + Contrôleur d'entrée + + + + Output controller + Contrôleur de sortie + + + + Fixed input velocity + Vélocité d'entrée fixe + + + + Fixed output velocity + Vélocité de sortie fixe + + + + Fixed output note + Note de sortie fixe + + + + Output MIDI program + Programme MIDI de sortie + + + + Base velocity + Vélocité de base + + + + Receive MIDI-events + Recevoir des événements MIDI + + + + Send MIDI-events + Envoyer des événements MIDI + + + + lmms::Mixer + + + Master + Général + + + + + + Channel %1 + Canal %1 + + + + Volume + Volume + + + + Mute + Mettre en sourdine + + + + Solo + Solo + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + Quantité à envoyer du canal %1 au canal %2 + + + + lmms::MonstroInstrument + + + Osc 1 volume + Volume de l'oscillateur 1 + + + + Osc 1 panning + Panoramisation de l'oscillateur 1 + + + + Osc 1 coarse detune + Désaccordage grossier de l'oscillateur 1 + + + + Osc 1 fine detune left + Désaccordage fin de gauche de l'oscillateur 1 + + + + Osc 1 fine detune right + Désaccordage fin de droite de l'oscillateur 1 + + + + Osc 1 stereo phase offset + Décalage de phase stéréo de l'oscillateur 1 + + + + Osc 1 pulse width + Largeur de la pulsation de l'oscillateur 1 + + + + Osc 1 sync send on rise + Synchronisation envoyée lors de la montée de l'oscillateur 1 + + + + Osc 1 sync send on fall + Synchronisation envoyée lors de la descente de l'oscillateur 1 + + + + Osc 2 volume + Volume de l'oscillateur 2 + + + + Osc 2 panning + Panoramisation de l'oscillateur 2 + + + + Osc 2 coarse detune + Désaccordage grossier de l'oscillateur 2 + + + + Osc 2 fine detune left + Désaccordage fin de gauche de l'oscillateur 2 + + + + Osc 2 fine detune right + Désaccordage fin de droite de l'oscillateur 2 + + + + Osc 2 stereo phase offset + Décalage de phase stéréo de l'oscillateur 2 + + + + Osc 2 waveform + Forme d'onde de l'oscillateur 2 + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + Volume de l'oscillateur 3 + + + + Osc 3 panning + Panoramisation de l'oscillateur 3 + + + + Osc 3 coarse detune + Désaccordage grossier de l'oscillateur 3 + + + + Osc 3 Stereo phase offset + Décalage de phase stéréo de l'oscillateur 3 + + + + Osc 3 sub-oscillator mix + Mélange du sous-oscillateur de l'oscillateur 3 + + + + Osc 3 waveform 1 + Forme d'onde 1 de l'oscillateur 3 + + + + Osc 3 waveform 2 + Forme d'onde 2 de l'oscillateur 3 + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + Forme d'onde du LFO 1 + + + + LFO 1 attack + Attaque du LFO 1 + + + + LFO 1 rate + Taux du LFO 1 + + + + LFO 1 phase + Phase du LFO 1 + + + + LFO 2 waveform + Forme d'onde du LFO 2 + + + + LFO 2 attack + Attaque du LFO 2 + + + + LFO 2 rate + Taux du LFO 2 + + + + LFO 2 phase + Phase du LFO2 + + + + Env 1 pre-delay + Pré-délai de l'enveloppe 1 + + + + Env 1 attack + Attaque de l'enveloppe 1 + + + + Env 1 hold + Maintien de enveloppe 1 + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + Pente de l'enveloppe 1 + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + Onde triangulaire à bande limitée + + + + Bandlimited Saw wave + Onde en dents-de-scie à bande limitée + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + Onde carrée à bande limitée + + + + Bandlimited Moog saw wave + Onde en dents-de-scie Moog à bande limitée + + + + + Soft square wave + + + + + Absolute sine wave + Onde sinusoïdale absolue + + + + + Exponential wave + + + + + White noise + Bruit blanc + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + Onde en dents-de-scie + + + + Ramp wave + + + + + Square wave + Onde carrée + + + + Moog saw wave + + + + + Abs. sine wave + Onde sinusoïdale absolue + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + Portamento : + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + Bande passante : + + + + BW + + + + + FM gain: + Gain FM : + + + + FM GAIN + GAIN FM + + + + Resonance center frequency: + Fréquence centrale de la résonance : + + + + RES CF + + + + + Resonance bandwidth: + Largeur de bande de la résonance : + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + Montrer l'interface graphique + + \ No newline at end of file diff --git a/data/locale/gl.ts b/data/locale/gl.ts index 657ed1291..01cd54322 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 + + + + + MixerChannelView + + 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 + MixerChannelLcdSpinBox + + 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,788 +5563,970 @@ 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 - InstrumentMiscView + InstrumentTuningView + 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..2789aa3d7 --- /dev/null +++ b/data/locale/he.ts @@ -0,0 +1,18755 @@ + + + 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! + אין תרגום לשפה הנוכחית (או שהתוכנה בשפה האנגלית). +אם יש לך עניין בתרגום LMMS לשפה אחרת או בשיפור התרגומים הקיימים, נשמח לקבל ממך עזרה! כל מה שצריך לעשות הוא פשוט לפנות למתחזק! + + + + License + רישיון + + + + AboutJuceDialog + + + About JUCE + + + + + <b>About JUCE</b> + + + + + This program uses JUCE version 3.x.x. + + + + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + + + + + This program uses JUCE version + + + + + AudioDeviceSetupWidget + + + [System Default] + + + + + CarlaAboutW + + + About Carla + על אודות Carla + + + + About + על אודות + + + + About text here + על אודות "טקסט כאן" + + + + Extended licensing here + פרטי רישיון מורחבים כאן + + + + Artwork + עבודות אומנות + + + + Using KDE Oxygen icon set, designed by Oxygen Team. + נעשה שימוש בערכת הסמלים Oxygen של KDE, שעוצבה על ידי צוות Oxygen. + + + + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. + + + + + VST is a trademark of Steinberg Media Technologies GmbH. + + + + + Special thanks to António Saraiva for a few extra icons and artwork! + תודותינו המיוחדות נתונות לאנטוניו סראיבה (António Saraiva) על מעט סמלים נוספים ועבודות אומנות שהכין! + + + + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. + + + + + MIDI Keyboard designed by Thorsten Wilms. + + + + + Carla, Carla-Control and Patchbay icons designed by DoosC. + + + + + Features + תכונות + + + + AU/AudioUnit: + + + + + LADSPA: + LADSPA: + + + + + + + + + + + TextLabel + + + + + VST2: + VST2: + + + + DSSI: + + + + + LV2: + + + + + VST3: + + + + + OSC + + + + + Host URLs: + כתובות מארחים: + + + + Valid commands: + + + + + valid osc commands here + + + + + Example: + דוגמה: + + + + License + רישיון + + + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + 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... + מתבצעת טעינה... + + + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + + &Help + ע&זרה + + + + Tool Bar + + + + + Disk + כונן + + + + + Home + בית + + + + Transport + + + + + Playback Controls + + + + + Time Information + + + + + Frame: + + + + + 000'000'000 + 000'000'000 + + + + Time: + + + + + 00:00:00 + 00:00:00 + + + + BBT: + + + + + 000|00|0000 + 000|00|0000 + + + + Settings + הגדרות + + + + BPM + + + + + Use JACK Transport + + + + + Use Ableton Link + + + + + &New + + + + + Ctrl+N + Ctrl+N + + + + &Open... + &פתיחה... + + + + + Open... + פתיחה... + + + + Ctrl+O + Ctrl+O + + + + &Save + &שמירה + + + + Ctrl+S + Ctrl+S + + + + Save &As... + ש&מירה בשם... + + + + + Save As... + שמירה בשם... + + + + Ctrl+Shift+S + + + + + &Quit + י&ציאה + + + + Ctrl+Q + Ctrl+Q + + + + &Start + + + + + F5 + F5 + + + + St&op + + + + + F6 + F6 + + + + &Add Plugin... + + + + + Ctrl+A + Ctrl+A + + + + &Remove All + לה&סיר הכול + + + + Enable + הפעלה + + + + Disable + השבתה + + + + 0% Wet (Bypass) + + + + + 100% Wet + + + + + 0% Volume (Mute) + + + + + 100% Volume + + + + + Center Balance + + + + + &Play + ני&גון + + + + Ctrl+Shift+P + + + + + &Stop + + + + + Ctrl+Shift+X + Ctrl+Shift+X + + + + &Backwards + + + + + Ctrl+Shift+B + + + + + &Forwards + + + + + Ctrl+Shift+F + + + + + &Arrange + + + + + Ctrl+G + + + + + + &Refresh + + + + + Ctrl+R + Ctrl+R + + + + Save &Image... + + + + + Auto-Fit + + + + + Zoom In + התקרבות + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + התרחקות + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + תקריב של 100% + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + + + + + &Configure Carla + + + + + &About + על &אודות + + + + About &JUCE + על או&דות JUCE + + + + About &Qt + על אודו&ת Qt + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + Ctrl+P + + + + + &Connect... + + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + + + + + &Configure driver... + + + + + Panic + + + + + Open custom driver panel... + + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + + + + CarlaHostWindow + + + Export as... + ייצוא בשם... + + + + + + + Error + שגיאה + + + + Failed to load project + טעינת המיזם נכשלה + + + + Failed to save project + שמירת המיזם נכשלה + + + + Quit + יציאה + + + + Are you sure you want to quit Carla? + לצאת מ־Carla? + + + + Could not connect to Audio backend '%1', possible reasons: +%2 + + + + + Could not connect to Audio backend '%1' + + + + + Warning + אזהרה + + + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + חלק מהתוספים עדיין פועלים, יש להסירם כדי לכבות את המנוע. +לעשות זאת כעת? + + + + 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 + ממשק + + + + Use "Classic" as default rack skin + + + + + Interface refresh interval: + + + + + + ms + מ״ש + + + + Show console output in Logs tab (needs engine restart) + + + + + Show a confirmation dialog before quitting + + + + + + Theme + ערכת נושא + + + + Use Carla "PRO" theme (needs restart) + + + + + Color scheme: + ערכת צבעים: + + + + Black + צבע שחור + + + + System + מערכת + + + + Enable experimental features + + + + + <b>Canvas</b> + + + + + Bezier Lines + + + + + Theme: + ערכת נושא: + + + + Size: + גודל: + + + + 775x600 + 775x600 + + + + 1550x1200 + 1550x1200 + + + + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 + + + + + Options + אפשרויות + + + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + + + + + Anti-Aliasing + החלקת עקומות + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + <b>מנוע</b> + + + + + Core + + + + + Single Client + לקוח יחיד + + + + Multiple Clients + לקוחות מרובים + + + + + Continuous Rack + + + + + + Patchbay + + + + + Audio driver: + + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + ... + + + + Reset Xrun counter after project load + + + + + Plugin UIs + + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + + + + + <b>OSC</b> + + + + + Enable OSC + + + + + Enable TCP port + + + + + + Use specific port: + + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + + + + + Audio + שמע + + + + MIDI + + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + הוספה... + + + + + Remove + הסרה + + + + + Change... + שינוי... + + + + <b>Plugin Paths</b> + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + SF2/3 + + + + + SFZ + + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + + + + + <b>Wine</b> + + + + + Executable + + + + + Path to 'wine' binary: + + + + + Prefix + + + + + Auto-detect Wine prefix based on plugin filename + + + + + Fallback: + נסיגה: + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + + + + + High Quality Anti-Aliasing (OpenGL only) + + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + + + + + Force mono plugins as stereo + + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path + הוספת נתיב + + + + Dialog + + + Carla Control - Connect + + + + + Remote setup + + + + + UDP Port: + + + + + Remote host: + + + + + TCP Port: + + + + + Set value + + + + + TextLabel + + + + + Scale Points + + + + + DriverSettingsW + + + Driver Settings + + + + + Device: + + + + + Buffer size: + + + + + Sample rate: + + + + + Triple buffer + + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + יש להפעיל את המנוע מחדש לטעינת ההגדרות החדשות + + + + 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) + + + + + Start + התחלה + + + + Cancel + ביטול + + + + InstrumentFunctionNoteStacking + + + octave + + + + + + Major + + + + + Majb5 + + + + + minor + + + + + minb5 + + + + + sus2 + + + + + sus4 + + + + + aug + + + + + augsus4 + + + + + tri + + + + + 6 + + + + + 6sus4 + + + + + 6add9 + + + + + m6 + + + + + m6add9 + + + + + 7 + + + + + 7sus4 + + + + + 7#5 + 7#5 + + + + 7b5 + + + + + 7#9 + 7#9 + + + + 7b9 + + + + + 7#5#9 + 7#5#9 + + + + 7#5b9 + 7#5b9 + + + + 7b5b9 + + + + + 7add11 + + + + + 7add13 + + + + + 7#11 + 7#11 + + + + Maj7 + + + + + Maj7b5 + + + + + Maj7#5 + Maj7#5 + + + + Maj7#11 + Maj7#11 + + + + Maj7add13 + + + + + m7 + m7 + + + + m7b5 + m7b5 + + + + m7b9 + m7b9 + + + + m7add11 + m7add11 + + + + m7add13 + m7add13 + + + + m-Maj7 + m-Maj7 + + + + m-Maj7add11 + m-Maj7add11 + + + + m-Maj7add13 + m-Maj7add13 + + + + 9 + 9 + + + + 9sus4 + 9sus4 + + + + add9 + add9 + + + + 9#5 + 9#5 + + + + 9b5 + 9b5 + + + + 9#11 + 9#11 + + + + 9b13 + 9b13 + + + + Maj9 + Maj9 + + + + Maj9sus4 + Maj9sus4 + + + + Maj9#5 + Maj9#5 + + + + Maj9#11 + Maj9#11 + + + + m9 + m9 + + + + madd9 + madd9 + + + + m9b5 + m9b5 + + + + m9-Maj7 + m9-Maj7 + + + + 11 + 11 + + + + 11b9 + 11b9 + + + + Maj11 + Maj11 + + + + m11 + m11 + + + + m-Maj11 + m-Maj11 + + + + 13 + 13 + + + + 13#9 + 13#9 + + + + 13b9 + 13b9 + + + + 13b5b9 + 13b5b9 + + + + Maj13 + + + + + m13 + m13 + + + + m-Maj13 + m-Maj13 + + + + Harmonic minor + + + + + Melodic minor + + + + + Whole tone + + + + + Diminished + + + + + Major pentatonic + + + + + Minor pentatonic + + + + + Jap in sen + + + + + Major bebop + + + + + Dominant bebop + + + + + Blues + + + + + Arabic + + + + + Enigmatic + + + + + Neopolitan + + + + + Neopolitan minor + + + + + Hungarian minor + + + + + Dorian + + + + + Phrygian + + + + + Lydian + + + + + Mixolydian + + + + + Aeolian + + + + + Locrian + + + + + Minor + + + + + Chromatic + + + + + Half-Whole Diminished + + + + + 5 + 5 + + + + Phrygian dominant + + + + + Persian + + + + + InstrumentSoundShaping + + + VOLUME + + + + + Volume + עוצמת שמע + + + + CUTOFF + + + + + Cutoff frequency + + + + + RESO + + + + + Resonance + + + + + JackAppDialog + + + Add JACK Application + + + + + Note: Features not implemented yet are greyed out + + + + + Application + + + + + Name: + + + + + Application: + + + + + From template + + + + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + + + + + JuceAboutW + + + This program uses JUCE version %1. + + + + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + 1/4 + + + + 2/4 + 2/4 + + + + 3/4 + 3/4 + + + + 4/4 + 4/4 + + + + 5/4 + 5/4 + + + + 6/4 + 6/4 + + + + Measures: + + + + + + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + 8 + + + + 9 + 9 + + + + 10 + 10 + + + + 11 + 11 + + + + 12 + 12 + + + + 13 + 13 + + + + 14 + 14 + + + + 15 + 15 + + + + 16 + 16 + + + + Default Length: + אורך ברירת מחדל: + + + + + 1/16 + 1/16 + + + + + 1/15 + 1/15 + + + + + 1/12 + 1/12 + + + + + 1/9 + 1/9 + + + + + 1/8 + 1/8 + + + + + 1/6 + 1/6 + + + + + 1/3 + 1/3 + + + + + 1/2 + 1/2 + + + + Quantize: + + + + + &File + &קובץ + + + + &Edit + ע&ריכה + + + + &Quit + י&ציאה + + + + Esc + + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + + + + + Select All + לבחור הכול + + + + A + + + + + PatchesDialog + + + + Qsynth: Channel Preset + + + + + + Bank selector + + + + + + Bank + + + + + + Program selector + + + + + + Patch + + + + + + Name + + + + + + OK + אישור + + + + + Cancel + ביטול + + + + PluginBrowser + + + no description + + + + + A native amplifier plugin + + + + + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + + + + + Boost your bass the fast and simple way + + + + + Customizable wavetable synthesizer + + + + + An oversampling bitcrusher + + + + + Carla Patchbay Instrument + + + + + Carla Rack Instrument + + + + + A dynamic range compressor. + + + + + A 4-band Crossover Equalizer + + + + + A native delay plugin + + + + + A Dual filter plugin + + + + + plugin for processing dynamics in a flexible way + + + + + A native eq plugin + + + + + A native flanger plugin + + + + + Emulation of GameBoy (TM) APU + + + + + Player for GIG files + + + + + Filter for importing Hydrogen files into LMMS + + + + + Versatile drum synthesizer + + + + + List installed LADSPA plugins + + + + + plugin for using arbitrary LADSPA-effects inside LMMS. + + + + + Incomplete monophonic imitation TB-303 + + + + + plugin for using arbitrary LV2-effects inside LMMS. + + + + + plugin for using arbitrary LV2 instruments inside LMMS. + + + + + Filter for exporting MIDI-files from LMMS + + + + + Filter for importing MIDI-files into LMMS + + + + + Monstrous 3-oscillator synth with modulation matrix + + + + + A multitap echo delay plugin + + + + + A NES-like synthesizer + + + + + 2-operator FM Synth + + + + + Additive Synthesizer for organ-like sounds + + + + + GUS-compatible patch instrument + + + + + Plugin for controlling knobs with sound peaks + + + + + Reverb algorithm by Sean Costello + + + + + Player for SoundFont files + + + + + LMMS port of sfxr + + + + + Emulation of the MOS6581 and MOS8580 SID. +This chip was used in the Commodore 64 computer. + + + + + A graphical spectrum analyzer. + + + + + Plugin for enhancing stereo separation of a stereo input file + + + + + Plugin for freely manipulating stereo output + + + + + Tuneful things to bang on + + + + + Three powerful oscillators you can modulate in several ways + + + + + A stereo field visualizer. + + + + + VST-host for using VST(i)-plugins within LMMS + + + + + Vibrating string modeler + + + + + plugin for using arbitrary VST effects inside LMMS. + + + + + 4-oscillator modulatable wavetable synth + + + + + plugin for waveshaping + + + + + Mathematical expression parser + + + + + Embedded ZynAddSubFX + + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + + + + + PluginEdit + + + Plugin Editor + עורך התוספים + + + + Edit + + + + + Control + + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + + + + + Use Chunks + + + + + Audio: + + + + + Fixed-Size Buffer + + + + + Force Stereo (needs reload) + + + + + MIDI: + + + + + Map Program Changes + + + + + Send Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + + + + + Save State + שמירת מצב + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + + + + + PluginFactory + + + Plugin not found. + + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + + + + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + + + + + Parameter Name + + + + + TextLabel + + + + + ... + + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + + + + + + + + PluginName + + + + + MIDI + + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + ממשק משתמש + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + מערך: + + + + ProjectRenderer + + + WAV (*.wav) + + + + + FLAC (*.flac) + + + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + + + + + Show GUI + הצגת ממשק המשתמש + + + + Help + + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + כן + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + File: %1 + + + + + File: + + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + + + + + lmms::AudioFileProcessor + + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/hi_IN.ts b/data/locale/hi_IN.ts new file mode 100644 index 000000000..5b2eeebf5 --- /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 + + + + + MixerChannelView + + + Channel send amount + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + + + + MixerChannelLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + वॉल्यूम + + + + 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 + + + + + InstrumentTuningView + + + MASTER PITCH + + + + + Enables the use of master pitch + + + + + InstrumentSoundShaping + + + VOLUME + + + + + Volume + वॉल्यूम + + + + CUTOFF + + + + + + Cutoff frequency + + + + + RESO + + + + + Resonance + + + + + Envelopes/LFOs + + + + + Filter type + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 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..a15c5d42c 100644 --- a/data/locale/hu_HU.ts +++ b/data/locale/hu_HU.ts @@ -1,9948 +1,18759 @@ - + AboutDialog + About LMMS - + Az LMMS-ről - Version %1 (%2/%3, Qt %4, %5) - + + LMMS + LMMS + + Version %1 (%2/%3, Qt %4, %5). + Verzió %1 (%2/%3, Qt %4, %5). + + + About Névjegy - LMMS - easy music production for everyone - LMMS - egyszerű zenekészítés mindenkinek + + 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 - - - - 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 - - - LMMS - LMMS + 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 + + + + AboutJuceDialog + + + About JUCE + + + + + <b>About JUCE</b> + + + + + This program uses JUCE version 3.x.x. + + + + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + + + + + This program uses JUCE version - AmplifierControlDialog + AudioDeviceSetupWidget - VOL - - - - Volume: - Hangerő: - - - PAN - - - - Panning: - - - - LEFT - BAL - - - Left gain: - Bal oldali erősítés: - - - RIGHT - JOBB - - - Right gain: - Jobb oldali erősítés: - - - - AmplifierControls - - Volume - Hangerő - - - Panning - - - - Left gain - Bal oldali erősítés - - - Right gain - Jobb oldali erősítés - - - - AudioAlsaSetupWidget - - DEVICE - ESZKÖZ - - - CHANNELS - CSATORNÁK - - - - AudioFileProcessorView - - Open 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. - - - - 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. - - - - 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. - - - - Loopback point: - - - - With this knob you can set the point where the loop starts. + + [System Default] - AudioFileProcessorWaveView + CarlaAboutW - Sample length: + + 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 + Bővítmény verzió + + + + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> + <br>Verzió: %1<br>A Carla egy teljes értékű audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> + + + + + (Engine not running) + (A motor nem fut) + + + + Everything! (Including LRDF) + Minden! (Az LRDF-et is beleértve) + + + + Everything! (Including CustomData/Chunks) + Minden! (CustomData/Chunks beleértve) + + + + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + Körülbelül 110&#37;-ig teljes (egyedi bővítményekkel)<br/>Elérhető szolgáltatások/bővítmények:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + + + + + + Using Juce host + JUCE host használatával + + + + About 85% complete (missing vst bank/presets and some minor stuff) + Körülbelül 85%-ig teljes (VST bankok/presetek és néhány apróbb dolog hiányzik) + - AudioJack + CarlaHostW - 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 - KLIENS-NÉV - - - CHANNELS - CSATORNÁK - - - - AudioOss::setupWidget - - DEVICE - ESZKÖZ - - - CHANNELS - CSATORNÁK - - - - AudioPortAudio::setupWidget - - BACKEND - - - - DEVICE - ESZKÖZ - - - - AudioPulseAudio::setupWidget - - DEVICE - ESZKÖZ - - - CHANNELS - CSATORNÁK - - - - AudioSdl::setupWidget - - DEVICE - ESZKÖZ - - - - AudioSndio::setupWidget - - DEVICE - ESZKÖZ - - - CHANNELS - CSATORNÁK - - - - AudioSoundIo::setupWidget - - BACKEND - - - - DEVICE - ESZKÖZ - - - - AutomatableModel - - &Reset (%1%2) - - - - &Copy value (%1%2) - - - - &Paste value (%1%2) - - - - Edit song-global automation - - - - 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! - - - - Values copied - - - - All selected values were copied to the clipboard. - - - - - AutomationEditorWindow - - Play/pause current pattern (Space) - + + MainWindow + MainWindow - 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. - + + Rack + Rack - 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. - + + Patchbay + Patchbay - 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. - + + Logs + Naplók - 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. - + + Loading... + Betöltés... - Cut selected values (%1+X) + + Save - Copy selected values (%1+C) + + Clear - Paste values from clipboard (%1+V) + + Ctrl+L - 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. + + Auto-Scroll - 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. - + + Buffer Size: + Pufferméret: - Click here and the values from the clipboard will be pasted at the first visible measure. - + + Sample Rate: + Mintavételi frekvencia: - Tension: - + + ? Xruns + ? Xrun - Automation Editor - no pattern - + + DSP Load: %p% + DSP terhelés: %p% - Automation Editor - %1 - + + &File + &Fájl - Edit actions - + + &Engine + &Motor - Interpolation controls - + + &Plugin + &Plugin - Timeline controls - + + Macros (all plugins) + Makrók (minden bővítmény) - Zoom controls - + + &Canvas + &Vászon - Quantization controls - + + Zoom + Nagyítás - Model is already connected to this pattern. - - - - - AutomationPattern - - Drag a control while pressing <%1> - - - - - AutomationPatternView - - double-click to open this pattern in automation editor - - - - 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. - - - - - AutomationTrack - - Automation track - - - - - BBEditor - - 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 sample-track - - - - - BBTCOView - - Open in Beat+Bassline-Editor - - - - Reset name - - - - Change name - - - - Change color - - - - Reset color to default - - - - - BBTrack - - Beat/Bassline %1 - - - - Clone of %1 - - - - - BassBoosterControlDialog - - FREQ - - - - Frequency: - Frekvencia: - - - GAIN - ERŐSÍTÉS - - - Gain: - Erősítés: - - - RATIO - - - - Ratio: - Arány: - - - - BassBoosterControls - - Frequency - Frekvencia - - - Gain - Erősítés - - - Ratio - Arány - - - - BitcrushControlDialog - - IN - BE - - - OUT - KI - - - GAIN - ERŐSÍTÉS - - - Input Gain: - Bemeneti erősítés: - - - NOIS - - - - Input Noise: - Bemeneti zaj: - - - Output Gain: - Kimeneti erősítés: - - - CLIP - - - - Output Clip: - - - - Rate - - - - Rate Enabled - - - - Enable samplerate-crushing - - - - Depth - - - - Depth Enabled - - - - Enable bitdepth-crushing - - - - Sample rate: - - - - STD - - - - Stereo difference: - - - - Levels - - - - Levels: - + + &Settings + &Beállítások - - - CaptionMenu + &Help &Súgó - Help (not available) + + Tool Bar - - - CarlaInstrumentView - Show GUI - - - - Click here to show or hide the graphical user interface (GUI) of Carla. - - - - - 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 - Mégse - - - 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 - - - - 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 controller - - - - Re&name this controller - - - - LFO - - - - - CrossoverEQControlDialog - - Band 1/2 Crossover: - - - - Band 2/3 Crossover: - - - - Band 3/4 Crossover: - - - - Band 1 Gain: - - - - Band 2 Gain: - - - - Band 3 Gain: - + + Disk + Lemez - Band 4 Gain: - + + + Home + Kezdőlap - Band 1 Mute - + + Transport + Továbbítás - Mute Band 1 - + + Playback Controls + Lejátszás vezérlők - Band 2 Mute - + + Time Information + Idő Információ - 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 - Kimeneti erősítés - - - - DelayControlsDialog - - Lfo Amt - - - - Delay Time - - - - Feedback Amount - - - - Lfo - - - - Out Gain - - - - Gain - Erősítés - - - DELAY - - - - FDBK - - - - RATE - - - - AMNT - - - - - DualFilterControlDialog - - Filter 1 enabled - - - - Filter 2 enabled - - - - Click to enable/disable Filter 1 - - - - Click to enable/disable Filter 2 - - - - FREQ - - - - Cutoff frequency - - - - RESO - + + Frame: + Keret: - Resonance - - - - GAIN - ERŐSÍTÉS - - - Gain - Erősítés - - - MIX - - - - Mix - - - - - DualFilterControls - - Filter 1 enabled - - - - Filter 1 type - - - - Cutoff 1 frequency - - - - Q/Resonance 1 - - - - Gain 1 - - - - Mix - - - - Filter 2 enabled - - - - Filter 2 type - - - - Cutoff 2 frequency - - - - Q/Resonance 2 - - - - Gain 2 - - - - LowPass - - - - HiPass - - - - BandPass csg - - - - BandPass czpg - - - - Notch - - - - Allpass - - - - Moog - - - - 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 - - - - SV LowPass - - - - SV BandPass - - - - SV HighPass - - - - SV Notch - - - - Fast Formant - - - - Tripole - - - - - Editor - - Play (Space) - - - - Stop (Space) - - - - Record - - - - Record while playing - - - - Transport controls - - - - - Effect - - Effect enabled - - - - Wet/Dry mix - - - - Gate - - - - Decay - - - - - EffectChain - - Effects enabled - - - - - EffectRackView - - EFFECTS CHAIN - - - - Add effect - - - - - EffectSelectDialog - - Add effect - - - - Name - Név - - - Type - - - - Description - Leírás - - - 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 - + + 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... + Bővítmény &hozzáadása... + + + + Ctrl+A + Ctrl+A + + + + &Remove All + Összes &eltávolítása + + + + Enable + Engedélyezés + + + + Disable + Tiltás + + + + 0% Wet (Bypass) - 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. + + 100% Wet - GATE + + 0% Volume (Mute) + 0% Hangerő (Némítás) + + + + 100% Volume + 100% Hangerő + + + + Center Balance + Balansz középre állítása + + + + &Play + &Lejátszás + + + + Ctrl+Shift+P + Ctrl+Shift+P + + + + &Stop + &Stop + + + + Ctrl+Shift+X + Ctrl+Shift+X + + + + &Backwards + &Vissza + + + + Ctrl+Shift+B + Ctrl+Shift+B + + + + &Forwards + &Előre + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + &Rendezés + + + + Ctrl+G + Ctrl+G + + + + + &Refresh + &Frissítés + + + + Ctrl+R + Ctrl+R + + + + Save &Image... + &Kép mentése... + + + + Auto-Fit + Automatikus kitöltés + + + + Zoom In + Nagyítás + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + Kicsinyítés + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + Nagyítás 100% + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + &Eszköztár megjelenítése + + + + &Configure Carla + Carla &konfigurálása + + + + &About + &Névjegy + + + + About &JUCE + &JUCE névjegye + + + + About &Qt + &Qt névjegye + + + + Show Canvas &Meters + &Kivezérlésmérő megjelenítése + + + + Show Canvas &Keyboard + &Billentyűzet megjelenítése + + + + Show Internal + Belső + + + + Show External + Külső + + + + Show Time Panel + Idő panel megjelenítése + + + + Show &Side Panel + Oldalsó &panel megjelenítése + + + + Ctrl+P - Gate: + + &Connect... + &Csatlakozás + + + + Compact Slots + Rekeszek összecsukása + + + + Expand Slots + Rekeszek kinyitása + + + + Perform secret 1 - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. + + Perform secret 2 - Controls + + Perform secret 3 - 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. + + Perform secret 4 - Move &up + + Perform secret 5 - Move &down + + Add &JACK Application... + &JACK alkalmazás hozzáadása... + + + + &Configure driver... + &Driver konfigurálása... + + + + Panic + Pánik + + + + Open custom driver panel... + Driver vezérlőpaneljének megnyitása... + + + + Save Image... (2x zoom) - &Remove this plugin + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C - EnvelopeAndLfoParameters + CarlaHostWindow - Predelay - + + Export as... + Exportálás... - Attack - + + + + + Error + Hiba - Hold - + + Failed to load project + Nem sikerült betölteni a projektet - Decay - + + Failed to save project + Nem sikerült menteni a projektet - Sustain - + + Quit + Kilépés - Release - + + Are you sure you want to quit Carla? + Biztosan ki akarsz lépni? - Modulation - + + Could not connect to Audio backend '%1', possible reasons: +%2 + Nem sikerült a(z) '%1' audio backendhez csatlakozni. Lehetséges okok: +%2 - LFO Predelay - + + Could not connect to Audio backend '%1' + Nem sikerült a(z) '%1' audio backendhez csatlakozni. - LFO Attack - + + Warning + Figyelmeztetés - LFO speed - - - - LFO Modulation - - - - LFO Wave Shape - - - - Freq x 100 - - - - Modulate Env-Amount - + + 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 bővítmény még be van töltve, ezeket el kell távolítani a motor leállításához. +Szeretnéd ezt most megtenni? - EnvelopeAndLfoView + CarlaSettingsW - DEL + + 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 + Bővítmény ú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: + + + + Use "Classic" as default rack skin - Predelay: + + Interface refresh interval: + Felület frissítési gyakorisága: + + + + + ms + ms + + + + Show console output in Logs tab (needs engine restart) + Konzol kimenet megjelenítése a Napló lapon (motor újraindítása szükséges) + + + + Show a confirmation dialog before quitting + Megerősítés kilépés előtt + + + + + Theme + Téma + + + + Use Carla "PRO" theme (needs restart) + Carla "PRO" téma használata (újraindítást igényel) + + + + Color scheme: + Színséma: + + + + Black + Sötét + + + + System + Rendszer + + + + Enable experimental features + Kísérleti funkciók engedélyezése + + + + <b>Canvas</b> + <b>Vászon</b> + + + + Bezier Lines + Bezier-vonalak + + + + Theme: + Téma: + + + + Size: + Méret: + + + + 775x600 + 775x600 + + + + 1550x1200 + 1550x1200 + + + + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. + + Options + Opciók + + + + Auto-hide groups with no ports + Port nélküli csoportok automatikus elrejtése + + + + Auto-select items on hover + Elemek kijelölése rámutatáskor + + + + Basic eye-candy (group shadows) + Árnyékok + + + + Render Hints + Megjelenítés + + + + Anti-Aliasing + Anti-Aliasing + + + + Full canvas repaints (slower, but prevents drawing issues) + Teljes vászon újrarajzolása (lassabb, de megelőzheti a grafikai problémákat) + + + + <b>Engine</b> + <b>Motor</b> + + + + + Core + Mag + + + + Single Client + Egy kliens + + + + Multiple Clients + Több kliens + + + + + Continuous Rack + Összefüggő rack + + + + + Patchbay + Patchbay + + + + Audio driver: + Audió driver: + + + + Process mode: + Működési mód: + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + Paraméterek maximális száma a Szerkesztés ablakban + + + + Max Parameters: + Maximális paraméterszám: + + + + ... + ... + + + + Reset Xrun counter after project load + Xrun számláló lenullázása projekt betöltésekor + + + + Plugin UIs + Bővítmények felülete + + + + + How much time to wait for OSC GUIs to ping back the host + Várakozás az OSC GUI válaszára + + + + UI Bridge Timeout: - ATT + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + OSC-GUI hidak használata lehetőség szerint, így elkülönítve a felhasználói felületet a DSP kódtól. + + + + Use UI bridges instead of direct handling when possible + UI hidak kasználata közvetlen kezelés helyett, ha lehetséges + + + + Make plugin UIs always-on-top + A bővítmény-ablakok mindig felül legyenek + + + + Make plugin UIs appear on top of Carla (needs restart) + Bővítmények felületének megjelenítése a Carla felett (újraindítást igényel) + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS - Attack: + + + 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 - 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. + + <b>File Paths</b> + <b>Fájl útvonalak</b> + + + + Audio + Audió + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + Az "audiofile" bővítmény számára + + + + Used for the "midifile" plugin + A "midifile" bővítmény számára + + + + + Add... + Hozzáadás... + + + + + Remove + Eltávolítás + + + + + Change... + Módosít... + + + + <b>Plugin Paths</b> + <b>Bővítmény útvonalak</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + JSFX - HOLD + + CLAP - Hold: + + Restart Carla to find new plugins - 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. + + <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 bővítmény fájlneve alapján + + + + Fallback: + Tartalék: + + + + Note: WINEPREFIX env var is preferred over this fallback + Megjegyzés: A WINEPREFIX környezeti változó ezt a beállítást felülbírálja. + + + + Realtime Priority + Valósidejű prioritás + + + + Base priority: + Alap prioritás: + + + + WineServer priority: + WineServer prioritás: + + + + These options are not available for Carla as plugin + Ezek a beállítások nem elérhetők a Carla bővítményként való használatakor. + + + + <b>Experimental</b> + <b>Kísérleti</b> + + + + Experimental options! Likely to be unstable! + Ezen funkciók használata instabilitáshoz vezethet! + + + + Enable plugin bridges + Plugin hidak engedélyezése + + + + Enable Wine bridges + Wine hidak engedélyezése + + + + Enable jack applications + JACK alkalmazások engedélyezése + + + + Export single plugins to LV2 - DEC + + Use system/desktop-theme icons (needs restart) - Decay: + + Load Carla backend in global namespace (NOT RECOMMENDED) + A Carla backend betöltése globális névtérben (NEM JAVASOLT) + + + + Fancy eye-candy (fade-in/out groups, glow connections) + Vizuális effektusok + + + + Use OpenGL for rendering (needs restart) + OpenGL használata a rendereléshez (újraindítást igényel) + + + + High Quality Anti-Aliasing (OpenGL only) + Magas minőségű anti-aliasing (csak OpenGL) + + + + Render Ardour-style "Inline Displays" + Ardour-féle "Inline kijelzők" megjelenítése + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + Monó bővítmények használata sztereóként 2 példány futtatásával. +Ez a mód nem elérhető VST bővítmények esetén. + + + + Force mono plugins as stereo + Monó bővítmények használata sztereóként + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - 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. + + Prevent unsafe calls from plugins (needs restart) - SUST + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. - Sustain: + + Run plugins in bridge mode when possible - 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. - - - - 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. - - - - Click here for random wave. - + + + + + Add Path + Útvonal hozzáadása - EqControls + Dialog - Input gain - Bemeneti erősítés + + Carla Control - Connect + Carla Control - Kapcsolódás - Output gain - Kimeneti erősítés + + Remote setup + Távoli kapcsolat beállítása - Low shelf gain - + + UDP Port: + UDP Port: - Peak 1 gain - + + Remote host: + Távoli hoszt: - Peak 2 gain - + + TCP Port: + TCP Port: - Peak 3 gain - + + Set value + Érték megadása - Peak 4 gain - + + TextLabel + TextLabel - 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 - + + Scale Points + Beosztás - EqControlsDialog + DriverSettingsW - HP + + Driver Settings + Driver Beállítások + + + + Device: + Eszköz: + + + + Buffer size: + Pufferméret: + + + + Sample rate: + Mintavételi frekvencia: + + + + Triple buffer - Low Shelf - + + Show Driver Control Panel + Driver vezérlőpaneljének megnyitása - Peak 1 - - - - Peak 2 - - - - Peak 3 - - - - Peak 4 - - - - High Shelf - - - - LP - - - - In Gain - - - - Gain - Erősítés - - - Out Gain - - - - Bandwidth: - - - - Resonance : - - - - Frequency: - Frekvencia: - - - lp grp - - - - hp grp - - - - Octave - - - - - EqHandle - - Reso: - - - - BW: - - - - Freq: - + + Restart the engine to load the new settings + Indítsd újra a motort az új beállítások betöltéséhez 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!) - - - - Oversampling (use with care!): - - - - 1x (None) - - - - 2x - - - - 4x - - - - 8x - + + Sinc best (slowest) + Sinc best (leglassabb) + 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% - - - - 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 - - Please enter a new value between %1 and %2: - - - - - FileBrowser - - Browser - - - - - FileBrowserTreeWidget - - Send to active instrument-track - - - - Open in new instrument-track/B+B Editor - - - - 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 - - - - file - - - - - FlangerControls - - Delay Samples - - - - Lfo Frequency - - - - Seconds - - - - Regen - - - - Noise - - - - Invert - - - - - FlangerControlsDialog - - Delay Time: - - - - Feedback Amount: - - - - White Noise Amount: - - - - DELAY - - - - RATE - - - - Rate: - - - - AMNT - - - - Amount: - - - - FDBK - - - - NOISE - - - - Invert - - - - - 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 - - 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 - Erősítés - - - - 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 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 - - - - Arpeggio time - - - - Arpeggio gate - - - - Arpeggio direction - - - - Arpeggio mode - - - - Up - - - - Down - - - - Up and down - - - - Random - - - - Free - - - - Sort - - - - Sync - - - - Down and up - - - - Skip rate - - - - Miss rate - - - - Cycle steps - - - - - 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: - - - - 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. - - - - 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. - - InstrumentFunctionNoteStacking + octave - + oktáv + + Major - + Dúr + Majb5 - + Majb5 + minor - + Moll + minb5 - + minb5 + sus2 - + sus2 + sus4 - + sus4 + aug - + aug + augsus4 - + augsus4 + tri - + tri + 6 - + 6 + 6sus4 - + 6sus4 + 6add9 - + 6add9 + m6 - + m6 + m6add9 - + m6add9 + 7 - + 7 + 7sus4 - + 7sus4 + 7#5 - + 7#5 + 7b5 - + 7b5 + 7#9 - + 7#9 + 7b9 - + 7b9 + 7#5#9 - + 7#5#9 + 7#5b9 - + 7#5b9 + 7b5b9 - + 7b5b9 + 7add11 - + 7add11 + 7add13 - + 7add13 + 7#11 - + 7#11 + Maj7 - + Maj7 + Maj7b5 - + Maj7b5 + Maj7#5 - + Maj7#5 + Maj7#11 - + Maj7#11 + Maj7add13 - + Maj7add13 + m7 - + m7 + m7b5 - + m7b5 + m7b9 - + m7b9 + m7add11 - + m7add11 + m7add13 - + m7add13 + m-Maj7 - + m-Maj7 + m-Maj7add11 - + m-Maj7add11 + m-Maj7add13 - + m-Maj7add13 + 9 - + 9 + 9sus4 - + 9sus4 + add9 - + add9 + 9#5 - + 9#5 + 9b5 - + 9b5 + 9#11 - + 9#11 + 9b13 - + 9b13 + Maj9 - + Maj9 + Maj9sus4 - + Maj9sus4 + Maj9#5 - + Maj9#5 + Maj9#11 - + Maj9#11 + m9 - + m9 + madd9 - + madd9 + m9b5 - + m9b5 + m9-Maj7 - + m9-Maj7 + 11 - + 11 + 11b9 - + 11b9 + Maj11 - + Maj11 + m11 - + m11 + m-Maj11 - + m-Maj11 + 13 - + 13 + 13#9 - + 13#9 + 13b9 - + 13b9 + 13b5b9 - + 13b5b9 + Maj13 - + Maj13 + m13 - + m13 + m-Maj13 - + m-Maj13 + Harmonic minor - + Harmonikus moll + Melodic minor - + Dallamos moll + Whole tone - + Egészhang + Diminished - + Szűkített + Major pentatonic - + Dúr pentaton + Minor pentatonic - + Mól pentaton + Jap in sen - + Jap in sen + Major bebop - + Dúr Bebop + Dominant bebop - + Domináns Bebop + Blues - + Blues + Arabic - + Arab + Enigmatic - + Enigmatikus + Neopolitan - + Nápolyi + Neopolitan minor - + Nápolyi moll + Hungarian minor - + Magyar moll + Dorian - + Dór - 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 - - - - - 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 - + Perzsa InstrumentSoundShaping + VOLUME - + HANGERŐ + Volume Hangerő + CUTOFF - + FREKV + Cutoff frequency - + Vágási frekvencia + RESO - + RESO + Resonance + Rezonancia + + + + JackAppDialog + + + Add JACK Application - Envelopes/LFOs + + Note: Features not implemented yet are greyed out - Filter type + + Application - Q/Resonance + + Name: - LowPass + + Application: - HiPass + + From template - BandPass csg + + Custom - BandPass czpg + + Template: - Notch + + Command: - Allpass + + Setup - Moog + + Session Manager: - 2x LowPass + + None - RC LowPass 12dB + + Audio inputs: - RC BandPass 12dB + + MIDI inputs: - RC HighPass 12dB + + Audio outputs: - RC LowPass 24dB + + MIDI outputs: - RC BandPass 24dB + + Take control of main application window - RC HighPass 24dB + + Workarounds - Vocal Formant Filter + + Wait for external application start (Advanced, for Debug only) - 2x Moog + + Capture only the first X11 Window - SV LowPass + + Use previous client output buffer as input for the next client - SV BandPass + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index - SV HighPass + + Error here - SV Notch + + NSM applications cannot use abstract or absolute paths - Fast Formant + + NSM applications cannot use CLI arguments - Tripole + + You need to save the current Carla project before NSM can be used - InstrumentSoundShapingView + JuceAboutW - 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: - - - - Envelopes, LFOs and filters are not supported by the current instrument. - + + This program uses JUCE version %1. + Ez a program a JUCE %1 verziót használja. - InstrumentTrack + MidiPatternW - unnamed_track - + + MIDI Pattern + MIDI Pattern - Volume - Hangerő + + Time Signature: + Ütemjelzés: - Panning - + + + + 1/4 + 1/4 - Pitch - + + 2/4 + 2/4 - FX channel - + + 3/4 + 3/4 - Default preset - + + 4/4 + 4/4 - With this knob you can set the volume of the opened channel. - + + 5/4 + 5/4 - Base note - + + 6/4 + 6/4 - Pitch range + + Measures: - Master Pitch - + + + + 1 + 1 - - - InstrumentTrackView - Volume - Hangerő + + 2 + 2 - Volume: - Hangerő: + + 3 + 3 - VOL - + + 4 + 4 - Panning - + + 5 + 5 - Panning: - + + 6 + 6 - PAN - + + 7 + 7 - MIDI - + + 8 + 8 - Input - + + 9 + 9 - Output - + + 10 + 10 - FX %1: %2 - + + 11 + 11 - - - InstrumentTrackWindow - GENERAL SETTINGS - + + 12 + 12 - Instrument volume - + + 13 + 13 - Volume: - Hangerő: + + 14 + 14 - VOL - + + 15 + 15 - Panning - + + 16 + 16 - Panning: - + + Default Length: + Alapértelmezett hossz: - PAN - + + + 1/16 + 1/16 - Pitch - + + + 1/15 + 1/15 - Pitch: - + + + 1/12 + 1/12 - cents - + + + 1/9 + 1/9 - PITCH - + + + 1/8 + 1/8 - FX channel - - - - ENV/LFO - - - - FUNC - + + + 1/6 + 1/6 - 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 - - - - Use these controls to view and edit the next/previous track in the song editor. - - - - SAVE - - - - - Knob - - Set linear - - - - Set logarithmic - - - - 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: - - - - Sorry, no help available. - - - - - LadspaEffect - - Unknown LADSPA plugin %1 requested. - - - - - LcdSpinBox - - 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 Controller - - - - BASE - - - - Base amount: - - - - todo - - - - 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. - - - - 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. - - - - AMNT - - - - - LmmsCore - - Generating wavetables - - - - Initializing data structures - - - - Opening audio and midi devices - - - - Launching mixer threads - - - - - MainWindow - - 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 - &Új - - - &Open... - &Megnyitás... - - - &Save - &Mentés - - - Save &As... - Mentés &másként... - - - Import... - Importálás... - - - E&xport... - E&xportálás... - - - &Quit - &Kilépés - - - &Edit - &Szerkesztés - - - Settings - Beállítások - - - &Tools - &Eszközök - - - &Help - &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 - - - 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. - - - - 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 - Névtelen - - - LMMS %1 - LMMS %1 - - - 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? - - - 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) - LMMS (*.mmp *.mmpz) - - - Version %1 - Verzió %1 - - - 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 - + + + 1/3 + 1/3 - My Home - Mappám + + + 1/2 + 1/2 - My Computer - Számítógépem + + Quantize: + Kvantálás: + &File &Fájl - &Recently Opened Projects - &Legutóbbi projektek + + &Edit + &Szerkesztés - Save as New &Version - Mentés új &verzióként + + &Quit + &Kilépés - E&xport Tracks... + + Esc - 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. - - - - Volume as dBFS - - - - Smooth scroll - - - - Enable note labels in piano roll - - - - Save project template - - - - - MeterDialog - - Meter Numerator - - - - Meter Denominator - - - - TIME SIG - - - - - MeterModel - - Numerator - - - - Denominator - - - - - 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. - - - - 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) - - - - - 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 - - - - - MidiSetupWidget - - DEVICE - ESZKÖZ - - - - 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 - Szinuszhullám - - - 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 - Háromszöghullám - - - Saw wave - Fűrészfoghullám - - - Ramp wave - - - - Square wave - Négyszöghullám - - - 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. - - - - Volume - Hangerő - - - Panning - - - - Coarse detune - - - - semitones - - - - Finetune left - + + &Insert Mode + &Beszúrás mód - 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 - - - - Modulation amount - - - - - 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 - - - - - NesInstrumentView - - Volume - Hangerő - - - 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 - + + F + F - 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 - - - - - 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 - + + &Velocity Mode + &Velocity Mód - Modulation type %1 - + + D + D - Osc %1 waveform - + + Select All + Összes kijelölése - Osc %1 harmonic - + + A + A PatchesDialog + + Qsynth: Channel Preset + + Bank selector - + Bank választó + + Bank - + Bank + + Program selector - + Program választó + + Patch - + Patch + + Name Név + + OK OK + + Cancel Mégse - - PatmanView - - Open 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 - - Open 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. - - - - - PeakControllerDialog - - PEAK - - - - LFO Controller - - - - - PeakControllerEffectControlDialog - - BASE - - - - Base amount: - - - - Modulation amount: - - - - Attack: - - - - Release: - - - - AMNT - - - - MULT - - - - Amount Multiplicator: - - - - ATCK - - - - DCAY - - - - Treshold: - - - - TRSH - - - - - PeakControllerEffectControls - - Base value - - - - Modulation amount - - - - Mute output - - - - Attack - - - - Release - - - - Abs Value - - - - Amount Multiplicator - - - - Treshold - - - - - 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 - - - - Select all notes on this key - - - - - 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) - - - - 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 - - - - Timeline controls - - - - Zoom and note controls - - - - Piano-Roll - %1 - - - - Piano-Roll - no pattern - - - - Quantize - - - - - 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"! - - - PluginBrowser - Instrument browser + + no description + nincs leírás + + + + A native amplifier plugin + Natív erősítő + + + + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + Egyszerű sampler különböző beállításokkal a hangminták (pl. dobok) hangszersávon történő használatához + + + + Boost your bass the fast and simple way + Mélytartomány kiemelése gyors és egyszerű módon + + + + Customizable wavetable synthesizer + Testreszabható hullámtábla-szintetizátor + + + + An oversampling bitcrusher - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. + + Carla Patchbay Instrument + Carla Patchbay hangszer + + + + Carla Rack Instrument + Carla Rack hangszer + + + + A dynamic range compressor. + Dinamikakompresszor + + + + A 4-band Crossover Equalizer + 4 sávos crossover equalizer + + + + A native delay plugin + Natív késleltetés + + + + A Dual filter plugin + Kettős szűrő + + + + plugin for processing dynamics in a flexible way + Dinamikatartomány kezelése rugalmas módon + + + + A native eq plugin + Natív equalizer + + + + A native flanger plugin + Natív flanger + + + + Emulation of GameBoy (TM) APU + A GameBoy (TM) APU emulációja + + + + Player for GIG files + Lejátszó GIG fájlokhoz + + + + Filter for importing Hydrogen files into LMMS + Szűrő a Hydrogen fájlok LMMS-be történő importálásához + + + + Versatile drum synthesizer + Sokoldalú dobszintetizátor + + + + List installed LADSPA plugins + Telepített LADSPA bővítmények listája + + + + plugin for using arbitrary LADSPA-effects inside LMMS. + Bővítmény tetszőleges LADSPA effektek LMMS-ben történő használatához + + + + Incomplete monophonic imitation TB-303 + Félkész monofonikus TB-303 imitáció + + + + plugin for using arbitrary LV2-effects inside LMMS. + Bővítmény tetszőleges LV2 effektek LMMS-ben történő használatához + + + + plugin for using arbitrary LV2 instruments inside LMMS. + Bővítmény tetszőleges LV2 hangszerek LMMS-ben történő használatához + + + + Filter for exporting MIDI-files from LMMS + Szűrő a MIDI fájlok LMMS-ből történő exportálásához + + + + Filter for importing MIDI-files into LMMS + Szűrő a MIDI fájlok LMMS-be történő importálásához + + + + Monstrous 3-oscillator synth with modulation matrix + Szörnyűséges 3 oszcillátoros szintetizátor modulációs mátrixszal + + + + A multitap echo delay plugin + Többlépéses késleltetés + + + + A NES-like synthesizer + NES-szerű szintetizátor + + + + 2-operator FM Synth + 2 operátoros FM szintetizátor + + + + Additive Synthesizer for organ-like sounds + Additív szintetizátor orgonaszerű hangokhoz + + + + GUS-compatible patch instrument - Instrument Plugins + + 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 bővítmények használatához + + + + Vibrating string modeler + Rezgő húrok fizikai modellezése + + + + plugin for using arbitrary VST effects inside LMMS. + Bővítmény tetszőleges VST effektek LMMS-ben történő használatához + + + + 4-oscillator modulatable wavetable synth + + + + + plugin for waveshaping + Hullámformálásra használható bővítmény + + + + Mathematical expression parser + Matematikai kifejezés értelmező + + + + Embedded ZynAddSubFX + Beágyazott ZynAddSubFX + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + 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 Notes + + + + + Send Bank/Program Changes + Bank- és programváltás küldése + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + Aftertouch küldése + + + + Send Pitchbend + Hanghajlítás küldése + + + + Send All Sound/Notes Off + Minden hang kikapcsolása + + + + +Plugin Name + + +Bővítmény név + + + + + Program: + Program: + + + + MIDI Program: + MIDI Program: + + + + Save State + Állapot mentése + + + + Load State + Állapot betöltése + + + + Information + Információ + + + + Label/URI: + Címke/URI: + + + + Name: + Név: + + + + Type: + Típus: + + + + Maker: + Készítő: + + + + Copyright: + Copyright: + + + + Unique ID: + Egyedi azonosító: + PluginFactory + Plugin not found. + A bővítmény nem található. + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + A(z) %1 LMMS bővítmény nem rendelkezik %2 nevű plugin-leíróval. + + + + PluginListDialog + + + Carla - Add New - LMMS plugin %1 does not have a plugin descriptor named %2! + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No - ProjectNotes + PluginParameter - Project notes + + Form + Form + + + + Parameter Name + Paraméter név + + + + TextLabel - Put down your project notes here. + + ... + ... + + + + PluginRefreshDialog + + + Plugin Refresh - Edit Actions + + Search for: - &Undo + + All plugins, ignoring cache - %1+Z + + Updated plugins only - &Redo + + Check previously invalid plugins - %1+Y + + Press 'Scan' to begin the search - &Copy + + Scan - %1+C + + >> Skip - Cu&t + + Close + + + + + PluginWidget + + + + + + + Frame - %1+X + + Enable + Engedélyezés + + + + On/Off + Be/Ki + + + + + + + PluginName - &Paste - + + MIDI + MIDI - %1+V - + + AUDIO IN + AUDIÓ BEMENET - Format Actions - + + AUDIO OUT + AUDIÓ KIMENET - &Bold - + + GUI + GUI - %1+B - + + Edit + Szerkesztés - &Italic - + + Remove + Eltávolítás - %1+I - + + Plugin Name + Bővítmény név - &Underline - - - - %1+U - - - - &Left - - - - %1+L - - - - C&enter - - - - %1+E - - - - &Right - - - - %1+R - - - - &Justify - - - - %1+J - - - - &Color... - + + Preset: + Preset: ProjectRenderer - WAV-File (*.wav) + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + Bővítmény újratöltése + + + + Show GUI + GUI megjelenítése + + + + Help + Súgó + + + + LADSPA plugins - Compressed OGG-File (*.ogg) + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) QWidget + + Name: - + Név: + Maker: - + Készítő: + Copyright: - + 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: - RenameDialog + XYControllerW - Rename... + + XY Controller - - - SampleBuffer - Open audio file + + X Controls: - 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 - - double-click to select sample - - - - Delete (middle mousebutton) - - - - Cut - Kivágás - - - Copy - Másolás - - - Paste - Beillesztés - - - Mute/unmute (<%1> + middle click) - - - - - SampleTrack - - Sample track - - - - Volume - Hangerő - - - Panning - - - - - SampleTrackView - - Track volume - - - - Channel volume: - - - - VOL - - - - Panning - - - - Panning: - - - - PAN - - - - - SetupDialog - - Setup LMMS - - - - 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 - - - - 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 - - - - Background artwork - - - - STK rawwave directory - - - - 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 INTERFACE - - - - 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 - - - - Choose your SF2 directory - - - - minutes - - - - minute - - - - Enable auto-save - - - - Allow auto-save while playing - - - - Disabled - - - - Auto-save interval: %1 - - - - 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. - - - - - 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 - - - - 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) - - - - LMMS Error report - - - - Save project - - - - - 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 - - - - 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. - - - - - 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 - - - - Edit actions - - - - Timeline controls - - - - Zoom controls - - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - SpectrumAnalyzerControls - - Linear spectrum - - - - Linear Y axis - - - - Channel mode - - - - - SubWindow - - Close - - - - Maximize - - - - Restore - - - - - 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 - - - - MIN - - - - SEC - - - - MSEC - - - - BAR - - - - BEAT - - - - TICK - - - - - 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 - Mégse - - - Please wait... - - - - Importing MIDI-file... - - - - - TrackContentObject - - Mute - - - - - 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 - Kivágás - - - Copy - Másolás - - - Paste - Beillesztés - - - 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 - - - - Assign to new FX Channel - - - - - 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. - - - - - VersionedSaveDialog - - Increment version number - - - - Decrement version number - - - - already exists. Do you want to replace it? - - - - - 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 - Normalizálás - - - Click to normalize - - - - Invert - - - - Click to invert + + Y Controls: + Smooth - Click to smooth + + &Settings - Sine wave - Szinuszhullám - - - Click for sine wave + + Channels - Triangle wave - Háromszöghullám - - - Click for triangle wave + + &File - Click for saw wave + + Show MIDI &Keyboard - Square wave - Négyszöghullám - - - Click for square wave + + (All) + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + Volume - Hangerő + + Panning - Freq. multiplier + + Left gain - Left detune - - - - cents - - - - Right detune - - - - A-B Mix - - - - Mix envelope amount - - - - Mix envelope attack - - - - Mix envelope hold - - - - Mix envelope decay - - - - Crosstalk + + Right gain - 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 + lmms::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 + + Sample not found - bitInvader + lmms::AudioJack - Samplelength + + 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 - bitInvaderView + lmms::AudioOss - Sample Length + + Device - Sine wave - Szinuszhullám + + Channels + + + + lmms::AudioPortAudio::setupWidget - Triangle wave - Háromszöghullám - - - Saw wave - Fűrészfoghullám - - - Square wave - Négyszöghullám - - - White noise wave + + Backend - User defined wave - Felhasználó által megadott hullám + + Device + + + + lmms::AudioPulseAudio - Smooth + + Device - Click here to smooth waveform. + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + Interpolation + Normalize - Normalizálás - - - 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 - BEMENET - - - Input gain: - Bemeneti erősítés: - - - OUTPUT - KIMENET - - - Output gain: - Kimeneti erősítés: - - - 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 + lmms::BitcrushControls + Input gain - Bemeneti erősítés + + + Input noise + + + + Output gain - Kimeneti erősítés + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + Attack time + Release time + Stereo mode - fxLineLcdSpinBox + lmms::Effect - Assign to: + + Effect enabled - New FX Channel + + Wet/Dry mix + + + + + Gate + + + + + Decay - graphModel + lmms::EffectChain - Graph + + Effects enabled - kickerInstrument + lmms::Engine - Start frequency + + Generating wavetables - End frequency + + Initializing data structures - Gain - Erősítés - - - Length + + Opening audio and midi devices - Distortion Start + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay - Distortion End + + Env attack - Envelope Slope + + Env hold + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + Noise + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + Click - Frequency Slope + + Frequency slope + Start from note + End to note - kickerInstrumentView + lmms::LOMMControls - Start frequency: + + Depth - End frequency: + + Time - Gain: - Erősítés: - - - Frequency Slope: + + Input Volume - Envelope Length: + + Output Volume - Envelope Slope: + + Upward Depth - Click: + + Downward Depth - Noise: + + High/Mid Split - Distortion Start: + + Mid/Low Split - Distortion End: + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band - ladspaBrowserView + lmms::LadspaControl - 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: - Típus: - - - - ladspaDescription - - Plugins - Bővítmények - - - Description - Leírás - - - - ladspaPortDialog - - Ports - Portok - - - Name - Név - - - Rate - - - - Direction - - - - Type - - - - Min < Default < Max - - - - Logarithmic - - - - SR Dependent - - - - Audio - - - - Control - - - - Input - - - - Output - - - - Toggled - - - - Integer - - - - Float - - - - Yes + + Link channels - lb302Synth + lmms::LadspaEffect + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + VCF Cutoff Frequency + VCF Resonance + VCF Envelope Mod + VCF Envelope Decay + Distortion + Waveform + Slide Decay + Slide + Accent + Dead + 24dB/oct Filter - lb302SynthView + lmms::LfoController - Cutoff Freq: + + LFO Controller - Resonance: + + Base value - Env Mod: + + Oscillator speed - Decay: + + Oscillator amount - 303-es-que, 24dB/octave, 3 pole filter + + Oscillator phase - Slide Decay: + + Oscillator waveform - DIST: + + Frequency Multiplier - Saw wave - Fűrészfoghullám - - - Click here for a saw-wave. - - - - Triangle wave - Háromszöghullám - - - Click here for a triangle-wave. - - - - Square wave - Négyszöghullám - - - 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 - Szinuszhullám - - - 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. + + Sample not found - malletsInstrument + lmms::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 - Sebesség + + Bowed - Spread - - - - Marimba - - - - Vibraphone - - - - Agogo - - - - Wood1 - - - - Reso - - - - Wood2 - - - - Beats - - - - Two Fixed - - - - Clump - - - - Tubular Bells - - - - Uniform Bar - - - - Tuned Bar - - - - Glass - - - - Tibetan Bowl - - - - - malletsInstrumentView - + Instrument + Spread - Spread: + + Randomness - Hardness + + Marimba - Hardness: + + Vibraphone - Position + + Agogo - Position: + + Wood 1 - Vib Gain + + Reso - Vib Gain: + + Wood 2 - Vib Freq + + Beats - Vib Freq: + + Two fixed - Stick Mix + + Clump - Stick Mix: + + Tubular bells - Modulator + + Uniform bar - Modulator: + + Tuned bar - Crossfade + + Glass - Crossfade: - - - - LFO Speed - - - - LFO Speed: - - - - LFO Depth - - - - LFO Depth: - - - - ADSR - - - - ADSR: - - - - Pressure - - - - Pressure: - - - - Speed - Sebesség - - - Speed: - Sebesség: - - - Missing files - HIányzó fájlok - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + Tibetan bowl - manageVSTEffectView + lmms::MeterModel - - VST parameter control + + Numerator - 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. + + Denominator - manageVestigeInstrumentView + lmms::Microtuner - - VST plugin control + + Microtuner - VST Sync + + Microtuner on / off - Click here if you want to synchronize all parameters with VST plugin. + + Selected scale - Automated - - - - Click here if you want to display automated parameters only. - - - - Close - - - - Close VST plugin knob-controller window. + + Selected keyboard mapping - opl2instrument + lmms::MidiController - Patch + + MIDI Controller - 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 + + unnamed_midi_controller - opl2instrumentView + lmms::MidiImport - Attack + + + Setup incomplete - Decay + + 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. - Release + + 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. - Frequency multiplier + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track - organicInstrument + lmms::MidiJack - Distortion + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + Volume - Hangerő - - - - organicInstrumentView - - Distortion: - Volume: - Hangerő: - - - Randomise + + Mute - 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 - - - - Osc %1 harmonic: + + Solo - FreeBoyInstrument + lmms::MixerRoute - Sweep time + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume - Sweep direction + + Osc 1 panning - Sweep RtShift amount + + Osc 1 coarse detune - Wave Pattern Duty + + Osc 1 fine detune left + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + Channel 1 volume - Volume sweep direction + + Channel 1 envelope enable - Length of each step in sweep + + Channel 1 envelope loop + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + Channel 2 volume + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + Channel 3 volume + + Channel 4 enable + + + + Channel 4 volume - Right Output level + + Channel 4 envelope enable - Left Output level + + Channel 4 envelope loop - Channel 1 to SO2 (Left) + + Channel 4 envelope length - Channel 2 to SO2 (Left) + + Channel 4 noise mode - Channel 3 to SO2 (Left) + + Channel 4 frequency mode - Channel 4 to SO2 (Left) + + Channel 4 noise frequency - Channel 1 to SO1 (Right) + + Channel 4 noise frequency sweep - Channel 2 to SO1 (Right) + + Channel 4 quantize - Channel 3 to SO1 (Right) + + Master volume - Channel 4 to SO1 (Right) - - - - Treble - - - - Bass - - - - Shift Register width + + Vibrato - 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 - - Qsynth: Channel Preset - - - - Bank selector - - - - Bank - - - - Program selector - - + lmms::OpulenzInstrument + Patch - Name - Név - - - OK - OK - - - Cancel - Mégse - - - - pluginBrowser - - no description + + Op 1 attack - 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 + + Op 1 decay - 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 + + Op 1 sustain - Additive Synthesizer for organ-like sounds - Additív szintetizátor orgonaszerű hangokhoz - - - Tuneful things to bang on + + Op 1 release - VST-host for using VST(i)-plugins within LMMS + + Op 1 level - Vibrating string modeler + + Op 1 level scaling - plugin for using arbitrary LADSPA-effects inside LMMS. + + Op 1 frequency multiplier - Filter for importing MIDI-files into LMMS + + Op 1 feedback - Emulation of the MOS6581 and MOS8580 SID. -This chip was used in the Commodore 64 computer. + + Op 1 key scaling rate - 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 + + Op 1 percussive envelope - Embedded ZynAddSubFX - Beágyazott ZynAddSubFX - - - 2-operator FM Synth + + Op 1 tremolo - Filter for importing Hydrogen files into LMMS + + Op 1 vibrato - LMMS port of sfxr + + Op 1 waveform - Monstrous 3-oscillator synth with modulation matrix + + Op 2 attack - Three powerful oscillators you can modulate in several ways + + Op 2 decay - A native amplifier plugin + + Op 2 sustain - Carla Rack Instrument + + Op 2 release - 4-oscillator modulatable wavetable synth + + Op 2 level - plugin for waveshaping + + Op 2 level scaling - Boost your bass the fast and simple way + + Op 2 frequency multiplier - Versatile drum synthesizer + + Op 2 key scaling rate - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + + Op 2 percussive envelope - plugin for processing dynamics in a flexible way + + Op 2 tremolo - Carla Patchbay Instrument + + Op 2 vibrato - plugin for using arbitrary VST effects inside LMMS. + + Op 2 waveform - Graphical spectrum analyzer plugin + + FM - A NES-like synthesizer + + Vibrato depth - 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 + + Tremolo depth - sf2Instrument + lmms::OrganicInstrument + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + Bank + Patch + Gain - Erősítés + + 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 + lmms::SfxrInstrument - 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: - - - - Open SoundFont file - - - - SoundFont2 Files (*.sf2) + + Wave - sfxrInstrument + lmms::SidInstrument - Wave Form - - - - - sidInstrument - - Cutoff + + Cutoff frequency + Resonance + Filter type + Voice 3 off + Volume - Hangerő + + Chip model - sidInstrumentView + lmms::SlicerT - Volume: - Hangerő: - - - Resonance: + + Note threshold - Cutoff frequency: + + FadeOut - High-Pass filter + + Original bpm - Band-Pass filter + + Slice snap - Low-Pass filter + + BPM sync - Voice3 Off + + + slice_%1 - 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. + + Sample not found: %1 - stereoEnhancerControlDialog + lmms::Song - WIDE + + Tempo - Width: + + 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: - stereoEnhancerControls + lmms::StereoEnhancerControls + Width - stereoMatrixControlDialog - - Left to Left Vol: - - - - Left to Right Vol: - - - - Right to Left Vol: - - - - Right to Right Vol: - - - - - stereoMatrixControls + lmms::StereoMatrixControls + Left to Left + Left to Right + Right to Left + Right to Right - vestigeInstrument + lmms::Track + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + Loading plugin - Please wait while loading VST-plugin... + + Please wait while loading the VST plugin... - vibed + lmms::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 - - Volume: - Hangerő: - - - 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 - 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. - - - - 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. - - - - - voiceObject + lmms::VoiceObject + Voice %1 pulse width + Voice %1 attack + Voice %1 decay + Voice %1 sustain + Voice %1 release + Voice %1 coarse detuning + Voice %1 wave shape + Voice %1 sync + Voice %1 ring modulate + Voice %1 filtered + Voice %1 test - waveShaperControlDialog + lmms::VstPlugin - INPUT - BEMENET - - - Input gain: - Bemeneti erősítés: - - - OUTPUT - KIMENET - - - Output gain: - Kimeneti erősítés: - - - Reset waveform + + + The VST plugin %1 could not be loaded. - Click here to reset the wavegraph back to default + + Open Preset - Smooth waveform + + + VST Plugin Preset (*.fxp *.fxb) - Click here to apply smoothing to wavegraph + + : default - Increase graph amplitude by 1dB + + Save Preset - Click here to increase wavegraph amplitude by 1dB + + .fxp - Decrease graph amplitude by 1dB + + .FXP - Click here to decrease wavegraph amplitude by 1dB + + .FXB - Clip input + + .fxb - Clip input signal to 0dB + + Loading plugin + + + + + Please wait while loading VST plugin... - waveShaperControls + lmms::WatsynInstrument - Input gain - Bemeneti erősítés + + Volume A1 + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + Output gain - Kimeneti erősítés + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + \ No newline at end of file diff --git a/data/locale/id.ts b/data/locale/id.ts index da30ec919..fc7bb422f 100644 --- a/data/locale/id.ts +++ b/data/locale/id.ts @@ -1,10269 +1,18756 @@ - + AboutDialog + About LMMS Ihwal LMMS - Version %1 (%2/%3, Qt %4, %5) - Versi %1 (%2/%3, Qt %4, %5) + + 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 - mudahnya produksi musik untuk semua orang + + 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 - 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 - - + 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 + AboutJuceDialog - VOL - VOL - - - Volume: - Volume: - - - PAN - SEIMBANG - - - Panning: - Keseimbangan: - - - LEFT - KIRI - - - Left gain: - gain kiri: - - - RIGHT - KANAN - - - Right gain: - gain kanan: - - - - AmplifierControls - - Volume - Volume - - - Panning - Keseimbangan - - - Left gain - gain Kiri - - - Right gain - gain Kanan - - - - AudioAlsaSetupWidget - - DEVICE - PERANGKAT - - - CHANNELS - SALURAN - - - - AudioFileProcessorView - - Open 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. - - - 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. - - - 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. - - - 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. - - - 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. - - - 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: - - - - 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 - - - CHANNELS - SALURAN - - - - AudioOss::setupWidget - - DEVICE - PERANGKAT - - - CHANNELS - SALURAN - - - - AudioPortAudio::setupWidget - - BACKEND - BACKEND - - - DEVICE - PERANGKAT - - - - AudioPulseAudio::setupWidget - - DEVICE - PERANGKAT - - - CHANNELS - SALURAN - - - - AudioSdl::setupWidget - - DEVICE - PERANGKAT - - - - AudioSndio::setupWidget - - DEVICE - PERANGKAT - - - CHANNELS - SALURAN - - - - AudioSoundIo::setupWidget - - BACKEND - BACKEND - - - DEVICE - PERANGKAT - - - - AutomatableModel - - &Reset (%1%2) - &Mulai ulang (%1%2) - - - &Copy value (%1%2) - &Salin nilai (%1%2) - - - &Paste value (%1%2) - &Tempel nilai (%1%2) - - - 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 - - - - AutomationEditor - - Please open an automation pattern 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) - 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) - 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. + + About JUCE - 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. + + <b>About JUCE</b> - 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. + + This program uses JUCE version 3.x.x. - 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. + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - 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 - - - Interpolation controls - Kontrol interpolasi - - - Timeline controls - Kontrol timeline - - - Zoom controls - Kontrol Zum - - - 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. - - - - AutomationPattern - - Drag a control while pressing <%1> - Tarik kontrol sambil menekan <%1> - - - - AutomationPatternView - - 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. - Model sudah terhubung ke pola ini. - - - - AutomationTrack - - Automation track - Trek otomasi - - - - BBEditor - - 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 sample-track - Tambah Trek-sampel - - - - BBTCOView - - 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 - - Beat/Bassline %1 - Ketukan/Bassline %1 - - - Clone of %1 - Klon dari %1 - - - - BassBoosterControlDialog - - FREQ - FREK - - - Frequency: - Frekuensi: - - - GAIN - GAIN - - - Gain: - Gain: - - - RATIO - RASIO - - - Ratio: - Rasio: - - - - BassBoosterControls - - Frequency - Frekuensi - - - Gain - Gain - - - Ratio - Rasio - - - - BitcrushControlDialog - - IN - MASUK - - - OUT - KELUAR - - - GAIN - GAIN - - - Input Gain: - Gain 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: - - - NOISE - RIUH - - - FREQ - FREK - - - STEREO - STEREO - - - QUANT + + This program uses JUCE version - CaptionMenu + AudioDeviceSetupWidget + + [System Default] + + + + + 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. + VST merupakan merk dagang milik Steinberg Media Technologies GmbH. + + + + Special thanks to António Saraiva for a few extra icons and artwork! + + + + + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. + + + + + MIDI Keyboard designed by Thorsten Wilms. + MIDI Keyboard dirancang oleh Thorsten Wilms. + + + + Carla, Carla-Control and Patchbay icons designed by DoosC. + Ikon Carla, Carla-Control, dan Patchbay dirancang oleh DoosC. + + + + Features + Fitur + + + + AU/AudioUnit: + + + + + LADSPA: + + + + + + + + + + + + TextLabel + + + + + VST2: + + + + + DSSI: + + + + + LV2: + + + + + VST3: + + + + + OSC + + + + + Host URLs: + + + + + Valid commands: + + + + + valid osc commands here + + + + + Example: + + + + + License + Lisensi + + + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + 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 + Patchbay + + + + Logs + + + + + Loading... + + + + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Berkas + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help &Bantuan - Help (not available) - Bantuan (tidak tersedia) - - - - CarlaInstrumentView - - Show GUI - Tampilkan GUI - - - Click here to show or hide the graphical user interface (GUI) of Carla. - Klik disini untuk menampilkan atau menyembunyikan antarmuka pengguna (GUI) dari Carla. - - - - Controller - - Controller %1 - Kontroler %1 - - - - ControllerConnectionDialog - - Connection Settings - Pengaturan Koneksi - - - MIDI CONTROLLER - KONTROLER MIDI - - - Input channel - Saluran Masukan - - - CHANNEL - SALURAN - - - Input controller - Kontroler masukan - - - CONTROLLER - KONTROLER - - - Auto Detect - Deteksi Otomatis - - - MIDI-devices to receive MIDI-events from - Perangkat MIDI untuk menerima aktifitas-MIDI dari - - - USER CONTROLLER - KONTROLER PENGGUNA - - - MAPPING FUNCTION - PEMETAAN FUNGSI - - - OK - OK - - - Cancel - Batal - - - LMMS - LMMS - - - Cycle Detected. - Siklus terdeteksi. - - - - ControllerRackView - - Controller Rack - Kontroler rak - - - Add - Tambah - - - Confirm Delete - Konfirmasi Hapus - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Konfirmasi hapus? Ada (beberapa) koneksi yang terasosiasi dengan kontroler ini. Tidak mungkin untuk melakukan undi. - - - - ControllerView - - Controls - Kontrol - - - 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 - - - &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 2/3 Crossover: - Band 2/3 Crossover: - - - Band 3/4 Crossover: - Band 3/4 Crossover: - - - Band 1 Gain: - Gain Band 1: - - - Band 2 Gain: - Gain Band 2: - - - Band 3 Gain: - Gain Band 3: - - - Band 4 Gain: - Gain Band 4: - - - Band 1 Mute - Bisukan Band 1 - - - Mute Band 1 - Bisukan Band 1 - - - Band 2 Mute - Bisukan Band 2 - - - Mute Band 2 - Bisukan Band 2 - - - Band 3 Mute - Bisukan Band 3 - - - Mute Band 3 - Bisukan Band 3 - - - Band 4 Mute - Bisukan Band 4 - - - Mute Band 4 - Bisukan Band 4 - - - - DelayControls - - Delay Samples - Sampel Delay - - - Feedback - Umpan balik - - - Lfo Frequency - Frekuensi Lfo - - - Lfo Amount - Jumlah Lfo - - - Output gain - Gain keluaran - - - - DelayControlsDialog - - Lfo Amt - jmlh Lfo - - - Delay Time - Waktu Delay - - - Feedback Amount - Jumlah Umpan balik - - - Lfo - Lfo - - - Out Gain - Gain Keluar - - - Gain - GainGain - - - DELAY - DELAY - - - FDBK - UMPBLK - - - RATE - NILAI - - - AMNT - JMLH - - - - 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 - - - - DualFilterControls - - Filter 1 enabled - Filter 1 diaktifkan - - - Filter 1 type - Tipe Filter 1 - - - Cutoff 1 frequency - Frekuensi Cutoff 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 - - - Q/Resonance 2 - Q/Resonansi 2 - - - Gain 2 - Gain 2 - - - LowPass - LowPass - - - HiPass - HiPass - - - BandPass csg - BandPass csg - - - BandPass czpg - BandPass czpg - - - Notch - Notch - - - Allpass - Allpass - - - Moog - Moog - - - 2x LowPass - 2x LowPass - - - RC LowPass 12dB - RC LowPass 12dB - - - RC BandPass 12dB - RC BandPass 12dB - - - RC HighPass 12dB - RC HighPass 12dB - - - RC LowPass 24dB - RC LowPass 24dB - - - RC BandPass 24dB - RC BandPass 24dB - - - RC HighPass 24dB - RC HighPass 24dB - - - Vocal Formant Filter - Filter Formant Vokal - - - 2x Moog - 2x Moog - - - SV LowPass - SV LowPass - - - SV BandPass - SV BandPass - - - SV HighPass - SV HighPass - - - SV Notch - SV Notch - - - Fast Formant - Formant Cepat - - - Tripole - Tripol - - - - Editor - - Play (Space) - Putar (Spasi) - - - Stop (Space) - Hentikan (Spasi) - - - Record - Rekam - - - Record while playing - Rekam ketika memutar - - - Transport controls - Kontrol transport - - - - Effect - - Effect enabled - Efek diaktifkan - - - Wet/Dry mix + + Tool Bar - Gate - Lawang - - - Decay - Tahan - - - - EffectChain - - Effects enabled - Aktifkan efek - - - - EffectRackView - - EFFECTS CHAIN - RANTAI EFEK - - - Add effect - Tambah efek - - - - EffectSelectDialog - - Add effect - Tambah efek - - - Name - Nama - - - Type - Tipe - - - Description - Deskripsi - - - Author - Pencipta - - - - EffectView - - 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. + + Disk - DECAY - DECAY + + + Home + + + Transport + + + + + Playback Controls + + + + + Time Information + + + + + Frame: + + + + + 000'000'000 + + + + 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. + + 00:00:00 - Move &up - Pindah ke &atas - - - Move &down - Pindah ke &bawah - - - &Remove this plugin - &Hapus plugin ini - - - - EnvelopeAndLfoParameters - - Predelay - Prapenundaan - - - Attack - Attack - - - Hold - Tahan - - - Decay - Decay - - - Sustain - Tahan - - - Release - Release - - - Modulation - Modulasi - - - LFO Predelay - Prapenundaan LFO - - - LFO Attack - Attack LFO - - - LFO speed - Kecepatan LFO - - - LFO Modulation - Modulasi LFO - - - LFO Wave Shape - Bentuk Gelombang LFO - - - Freq x 100 - Frek x 100 - - - Modulate Env-Amount - Modulasikan Jumlah-Env - - - - 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. + + BBT: - 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. + + 000|00|0000 - HOLD - HOLD + + Settings + Pengaturan - 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. + + BPM - 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. + + Use JACK Transport - 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. + + Use Ableton Link - REL - REL + + &New + &Baru - 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. + + Ctrl+N - AMT - JMLH + + &Open... + &Buka - 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. + + + Open... - 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. + + Ctrl+O - LFO- attack: - Attack LFO: + + &Save + &Simpan - 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. + + Ctrl+S - SPD - SPD + + Save &As... + Simpan &Sebagai... - 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. + + + Save As... - 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. + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Quit + &Keluar + + + + Ctrl+Q - 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. + + &Start - 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. + + F5 - control envelope-amount by this LFO + + St&op - 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. - - - - EqControls - - Input gain - Gain masukan - - - Output gain - Gain keluaran - - - Low shelf gain + + F6 - 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 + + &Add Plugin... - HP res - HP res - - - Low Shelf res + + Ctrl+A - Peak 1 BW - Peak 1 BW - - - Peak 2 BW - Peak 2 BW - - - Peak 3 BW + + &Remove All - Peak 4 BW + + Enable - High Shelf res + + Disable - LP res - LP res - - - HP freq - HP freq - - - Low Shelf freq + + 0% Wet (Bypass) - 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 + + 100% Wet - LP freq - Frek LP - - - HP active - HP aktif - - - Low shelf active + + 0% Volume (Mute) - 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 + + 100% Volume - 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 + + Center Balance - high pass type + + &Play - Analyse IN + + Ctrl+Shift+P - Analyse OUT + + &Stop + + + + + Ctrl+Shift+X + + + + + &Backwards + + + + + Ctrl+Shift+B + + + + + &Forwards + + + + + Ctrl+Shift+F + + + + + &Arrange + + + + + Ctrl+G + + + + + + &Refresh + + + + + Ctrl+R + + + + + Save &Image... + + + + + Auto-Fit + + + + + Zoom In + + + + + Ctrl++ + + + + + Zoom Out + + + + + Ctrl+- + + + + + Zoom 100% + + + + + Ctrl+1 + + + + + Show &Toolbar + + + + + &Configure Carla + + + + + &About + + + + + About &JUCE + + + + + About &Qt + + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + Ctrl+P + + + + + &Connect... + + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + + + + + &Configure driver... + + + + + Panic + + + + + Open custom driver panel... + + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C - EqControlsDialog + CarlaHostWindow - HP - HP - - - Low Shelf + + Export as... - Peak 1 - Peak 1 + + + + + Error + Kesalahan - Peak 2 - Peak 2 - - - Peak 3 - Peak 3 - - - Peak 4 - Peak 4 - - - High Shelf + + Failed to load project - LP - LP - - - In Gain + + Failed to save project - Gain - Gain - - - Out Gain - Gain Keluar - - - Bandwidth: + + Quit - Resonance : - Resonansi : + + Are you sure you want to quit Carla? + - Frequency: - Frekuensi: + + Could not connect to Audio backend '%1', possible reasons: +%2 + - lp grp - lp grp + + Could not connect to Audio backend '%1' + - hp grp - hp grp + + Warning + - Octave - Oktaf + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + - EqHandle + CarlaSettingsW - Reso: - Reso: + + Settings + Pengaturan - BW: - BW: + + main + - Freq: - Frek: + + 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 + + + + + Use "Classic" as default rack skin + + + + + Interface refresh interval: + + + + + + ms + + + + + Show console output in Logs tab (needs engine restart) + + + + + Show a confirmation dialog before quitting + + + + + + Theme + + + + + Use Carla "PRO" theme (needs restart) + + + + + Color scheme: + + + + + Black + + + + + System + + + + + Enable experimental features + + + + + <b>Canvas</b> + + + + + Bezier Lines + + + + + Theme: + + + + + Size: + Ukuran: + + + + 775x600 + + + + + 1550x1200 + + + + + 3100x2400 + + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + + + + + 12400x9600 + + + + + Options + + + + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + Render Bantuan + + + + Anti-Aliasing + + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + + + + + + Core + + + + + Single Client + + + + + Multiple Clients + + + + + + Continuous Rack + + + + + + Patchbay + Patchbay + + + + Audio driver: + + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + + + + + Reset Xrun counter after project load + + + + + Plugin UIs + + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + + + + + <b>OSC</b> + + + + + Enable OSC + + + + + Enable TCP port + + + + + + Use specific port: + + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + + + + + Audio + Audio + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + + + + + + Remove + + + + + + Change... + + + + + <b>Plugin Paths</b> + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + SF2/3 + + + + + SFZ + + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + + + + + <b>Wine</b> + + + + + Executable + + + + + Path to 'wine' binary: + + + + + Prefix + + + + + Auto-detect Wine prefix based on plugin filename + + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + + + + + High Quality Anti-Aliasing (OpenGL only) + + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + + + + + Force mono plugins as stereo + + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path + + + + + Dialog + + + Carla Control - Connect + + + + + Remote setup + + + + + UDP Port: + + + + + Remote host: + + + + + TCP Port: + + + + + Set value + + + + + TextLabel + + + + + Scale Points + + + + + DriverSettingsW + + + Driver Settings + + + + + Device: + + + + + Buffer size: + + + + + Sample rate: + Nilai sampel: + + + + Triple buffer + + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + 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 - - - - 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 as loop (remove extra bar) + Ekspor sebagai loop (hapus bar tambahan) + Export between loop markers Ekspor antar titik pengulangan - Could not open file - Tidak bisa membuka berkas + + Render Looped Section: + - Export project to %1 - Ekspor proyek ke %1 + + time(s) + - Error - Kesalahan + + File format settings + Pengaturan format berkas - 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. + + File format: + Format berkas: - Rendering: %1% - Merender: %1% + + Sampling rate: + - 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! + + 44100 Hz + 44100 Hz - 24 Bit Integer - 24 Bit Integer + + 48000 Hz + 48000 Hz - Use variable bitrate - Gunakan variabel kecepatan bit + + 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: - - - - Stereo - Stereo - - - Joint Stereo - + Mode Stereo: + Mono Mono + + Stereo + Stereo + + + + Joint stereo + Stereo Bergabung + + + Compression level: Level kompresi: - (fastest) - (tercepat) + + Bitrate: + Kecepatan Bit: - (default) - (bawaan) + + 64 KBit/s + 64 KBit/dtk - (smallest) - (terkecil) - - - - Expressive - - Selected graph - Grafik yang dipilih + + 128 KBit/s + 128 KBit/dtk - A1 - A1 + + 160 KBit/s + 160 KBit/dtk - A2 - A2 + + 192 KBit/s + 192 KBit/dtk - A3 - A3 + + 256 KBit/s + 256 KBit/dtk - W1 smoothing + + 320 KBit/s + 320 KBit/dtk + + + + Use variable bitrate + Gunakan variabel kecepatan bit + + + + Quality settings + Pengaturan kualitas + + + + Interpolation: + Interpolasi: + + + + Zero order hold - W2 smoothing + + Sinc worst (fastest) - W3 smoothing + + Sinc medium (recommended) - PAN1 + + Sinc best (slowest) - PAN2 - + + Start + Mulai - REL TRANS - - - - - Fader - - Please enter a new value between %1 and %2: - Silakan masukan nilai baru antara %1 dan %2: - - - - FileBrowser - - Browser - Penjelajah - - - Search - Cari - - - Refresh list - Segarkan daftar - - - - 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 - - - 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 - - - file - berkas - - - - FlangerControls - - Delay Samples - Sampel Delay - - - Lfo Frequency - Frekuensi Lfo - - - Seconds - Detik - - - Regen - Regen - - - Noise - Derau - - - Invert - Balik - - - - FlangerControlsDialog - - Delay Time: - Waktu Delay: - - - Feedback Amount: - Jumlah Timbal balik: - - - White Noise Amount: - Jumlah Gelombang Riuh: - - - DELAY - DELAY - - - RATE - NILAI - - - AMNT - JMLH - - - Amount: - Jumlah: - - - FDBK - UMPBLK - - - NOISE - RIUH - - - Invert - Balik - - - Period: - Periode: - - - - FxLine - - 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 - - - - FxMixer - - Master - Master - - - FX %1 - FX %1 - - - Volume - Volume - - - Mute - Bisu - - - Solo - Solo - - - - FxMixerView - - FX-Mixer - FX-Mixer - - - FX Fader %1 - FX Pemudar %1 - - - Mute - Bisu - - - Mute this FX channel - Bisukan saluran FX ini - - - Solo - Solo - - - Solo FX channel - Saluran FX Solo - - - - FxRoute - - Amount to send from channel %1 to channel %2 - Jumlah untuk kirim dari saluran %1 ke saluran %2 - - - - GigInstrument - - Bank - Bank - - - Patch - Patch - - - Gain - Gain - - - - GigInstrumentView - - Open 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 - - - GIG Files (*.gig) - Berkas GIG (*.gig) - - - - GuiApplication - - Working directory - Direktori kerja - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Direktori kerja LMMS %1 tidak ada. Buat sekarang? Anda dapat mengganti direktori nanti via Edit -> Pengaturan - - - Preparing UI - Menyiapkan UI - - - Preparing song editor - Menyiapkan editor lagu - - - Preparing mixer - Menyiapkan mixer - - - Preparing controller rack - Menyiapkan rak kontroler - - - Preparing project notes - Menyiapkan not proyek - - - Preparing beat/bassline editor - Menyiapkan edior ketukan/bassline - - - Preparing piano roll - Menyiapkan rol piano - - - Preparing automation editor - Menyiapkan editor otomasi - - - - InstrumentFunctionArpeggio - - Arpeggio - Arpeggio - - - Arpeggio type - Tipe arpeggio - - - Arpeggio range - Jarak arpeggio - - - 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 - - - Random - Acak - - - Free - Bebas - - - Sort - Sortir - - - Sync - Selaras - - - Down and up - Bawah dan atas - - - Skip rate - Lewati nilai - - - Miss rate - Tingkat miss - - - Cycle steps - Langkah siklus - - - - 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. - - - - 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. - - - - 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. - - - - 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. - + + Cancel + Batal 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 - - 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: - - - - InstrumentMidiIOView - - ENABLE MIDI INPUT - AKTIFKAN MASUKAN MIDI - - - CHANNEL - SALURAN - - - VELOCITY - - - - ENABLE MIDI OUTPUT - AKTIFKAN KELUARAN MIDI - - - PROGRAM - PROGRAM - - - 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 - - - - BASE VELOCITY - - - - - InstrumentMiscView - - MASTER PITCH - MASTER PITCH - - - Enables the use of Master Pitch - Aktifkan penggunaan 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 - - - HiPass - HiPass - - - BandPass csg - BandPass csg - - - BandPass czpg - BandPass czpg - - - Notch - Notch - - - Allpass - Allpass - - - Moog - Moog - - - 2x LowPass - 2x LowPass - - - RC LowPass 12dB - RC LowPass 12dB - - - RC BandPass 12dB - RC BandPass 12dB - - - RC HighPass 12dB - RC HighPass 12dB - - - RC LowPass 24dB - RC LowPass 24dB - - - RC BandPass 24dB - RC BandPass 24dB - - - RC HighPass 24dB - RC HighPass 24dB - - - Vocal Formant Filter - Filter Formant Vokal - - - 2x Moog - 2x Moog - - - SV LowPass - SV LowPass - - - SV BandPass - SV BandPass - - - SV HighPass - SV HighPass - - - SV Notch - SV Notch - - - Fast Formant - Formant Cepat - - - Tripole - Tripol - - InstrumentSoundShapingView + JackAppDialog - 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...! + + Add JACK Application - 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. + + Note: Features not implemented yet are greyed out - 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... + + Application - 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. + + Name: - FREQ - FREK + + Application: + - cutoff frequency: - frekuensi cutoff: + + From template + - Envelopes, LFOs and filters are not supported by the current instrument. + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used - InstrumentTrack + JuceAboutW - unnamed_track - trek_tak_bernama - - - 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 + + This program uses JUCE version %1. - InstrumentTrackView + MidiPatternW - Volume - Volume - - - - Volume: - Volume: - - - VOL - VOL - - - Panning - Keseimbangan - - - Panning: - Keseimbangan: - - - PAN - PAN - - - MIDI - MIDI - - - Input - Masukan - - - Output - Keluaran - - - FX %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - GENERAL SETTINGS - PENGATURAN UMUM - - - Instrument volume - Volume instrumen - - - Volume: - Volume: - - - VOL - VOL - - - Panning - Keseimbangan - - - Panning: - Keseimbangan: - - - PAN - PAN - - - Pitch - Pitch - - - Pitch: - Pitch: - - - cents - sen - - - PITCH + + MIDI Pattern - FX channel - Saluran FX - - - FX - FX - - - Save preset - Simpan preset - - - XML preset file (*.xpf) - Berkas preset XML (*.xpf) - - - Pitch range (semitones) + + Time Signature: - RANGE - JARAK - - - 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 + + + + 1/4 - Chord stacking & arpeggio + + 2/4 - Effects - Efek - - - MIDI settings - Pengaturan MIDI - - - Miscellaneous - Serba aneka - - - Plugin - Plugin - - - - 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: - - - 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: - - - - LadspaControl - - Link channels - Hubungkan saluran - - - - LadspaControlDialog - - Link Channels - Hubungkan Saluran - - - Channel - Saluran - - - - 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. - - - - LcdSpinBox - - Please enter a new value between %1 and %2: - Silakan masukan nilai baru antara %1 dan %2: - - - - LeftRightNav - - Previous - Sebelumnya - - - Next - Selanjutnya - - - Previous (%1) - Sebelumnya (%1) - - - Next (%1) - Selanjutnya (%1) - - - - LfoController - - LFO Controller - Kontroler LFO - - - Base value - Nilai dasar - - - Oscillator speed - Kecepatan osilator - - - Oscillator amount - Jumlah osilator - - - Oscillator phase - Tahap osilator - - - Oscillator waveform - Bentuk gelombang osilator - - - Frequency Multiplier - - - - - LfoControllerDialog - - LFO - LFO - - - LFO Controller - Kontroler LFO - - - BASE - DASAR - - - Base amount: - Jumlah dasar: - - - todo - untuk-dilakukan - - - SPD - SPD - - - 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. - - - 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. + + 3/4 - PHS - PHS - - - Phase offset: + + 4/4 - 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. + + 5/4 - 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. - Klik disini untuk gelombang gergaji. - - - Click here for a square-wave. - Klik disini untuk gelombang-kotak. - - - Click here for an exponential wave. - Klik disini untuk gelombang eksponensial. - - - Click here for white-noise. - Klik disini untuk kebisingan-putih. - - - Click here for a user-defined shape. -Double click to pick a file. + + 6/4 - Click here for a moog saw-wave. + + Measures: - AMNT - JMLH - - - - LmmsCore - - Generating wavetables - Membuat wavetables - - - Initializing data structures - Inisialisasi struktur data - - - Opening audio and midi devices - Membuka audio dan perangkat midi - - - Launching mixer threads - Meluncurkan thread mixer - - - - MainWindow - - &New - &Baru - - - &Open... - &Buka - - - &Save - &Simpan - - - Save &As... - Simpan &Sebagai... - - - Import... - Impor... - - - E&xport... - E&kspor - - - &Quit - &Keluar - - - &Edit - &Edit - - - Settings - Pengaturan - - - &Tools - &Alat - - - &Help - &Bantuan - - - 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 - - - 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. + + + + 1 - 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. + + 2 - 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. + + 3 - FX Mixer - 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. - 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. + + 4 - Controller Rack - Kontroler rak + + 5 + 5 - Untitled - Tak berjudul + + 6 + 6 - LMMS %1 - LMMS %1 + + 7 + 7 - Project not saved - Proyek tidak disimpan + + 8 + - 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? + + 9 + 9 - Help not available - Bantuan tidak tersedia + + 10 + - 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. + + 11 + 11 - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) + + 12 + - Version %1 - Versi %1 + + 13 + 13 - Configuration file - Berkas konfigurasi + + 14 + - Error while parsing configuration file at line %1:%2: %3 - Kesalahan saat mengurai berkas konfigurasi pada baris %1:%2 %3 + + 15 + - Volumes - Volume + + 16 + - Undo - Undo + + Default Length: + - Redo - Redo + + + 1/16 + - My Projects - Proyek Saya + + + 1/15 + - My Samples - Sampel Saya + + + 1/12 + - My Presets - Preset Saya + + + 1/9 + - My Home - Rumah Saya + + + 1/8 + - My Computer - Komputer Saya + + + 1/6 + + + + 1/3 + + + + + + 1/2 + + + + + Quantize: + + + + &File &Berkas - &Recently Opened Projects - &Proyek yang Baru Dibuka + + &Edit + &Edit - Save as New &Version - Simpan sebagai &Versi yang baru + + &Quit + &Keluar - 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? - - - - 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 - - - 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 - - - Export &MIDI... - - - - - MeterDialog - - Meter Numerator - - - - Meter Denominator - - - - TIME SIG - - - - - MeterModel - - Numerator - - - - Denominator - - - - - MidiController - - MIDI Controller - Kontroler MIDI - - - unnamed_midi_controller - kontroler_midi_tanpa_nama - - - - 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 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. - - - Track - Trek - - - - MidiJack - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - Server JACK lumpuh - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - - - - - 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 - - - - Base velocity - Kecepatan dasar - - - - MidiSetupWidget - - DEVICE - PERANGKAT - - - - MonstroInstrument - - Osc 1 Volume - Volume Osc 1 - - - Osc 1 Panning - Keseimbangan Osc 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 - Volume Osc 2 - - - Osc 2 Panning - Kesimbangan Osc 2 - - - Osc 2 Coarse detune - - - - Osc 2 Fine detune left - - - - Osc 2 Fine detune right - - - - Osc 2 Stereo phase offset - - - - Osc 2 Waveform - - - - Osc 2 Sync Hard - - - - Osc 2 Sync Reverse - - - - Osc 3 Volume - Volume Osc 3 - - - Osc 3 Panning - Keseimbangan Osc 3 - - - Osc 3 Coarse detune - - - - Osc 3 Stereo phase offset - - - - Osc 3 Sub-oscillator mix - - - - Osc 3 Waveform 1 - - - - Osc 3 Waveform 2 - - - - Osc 3 Sync Hard - - - - Osc 3 Sync Reverse - - - - LFO 1 Waveform - 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 - - - - 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 - Tampilan yang dipilih - - - 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 - Phs3-Env2 - - - Phs3-LFO1 - Phs3-LFO1 - - - Phs3-LFO2 - Phs3-LFO2 - - - Pit1-Env1 - Pit1-Env1 - - - Pit1-Env2 - Pit1-Env2 - - - Pit1-LFO1 - Pit1-LFO1 - - - Pit1-LFO2 - Pit1-LFO2 - - - Pit2-Env1 - Pit2-Env1 - - - Pit2-Env2 - Pit2-Env2 - - - Pit2-LFO1 - Pit2-LFO1 - - - Pit2-LFO2 - Pit2-LFO2 - - - Pit3-Env1 - Pit3-Env1 - - - Pit3-Env2 - Pit3-Env2 - - - Pit3-LFO1 - Pit3-LFO1 - - - Pit3-LFO2 - Pit3-LFO2 - - - PW1-Env1 - PW1-Env1 - - - PW1-Env2 - PW1-Env2 - - - PW1-LFO1 - PW1-LFO1 - - - PW1-LFO2 - PW1-LFO2 - - - Sub3-Env1 - Sub3-Env1 - - - Sub3-Env2 - Sub3-Env2 - - - Sub3-LFO1 - Sub3-LFO1 - - - Sub3-LFO2 - Sub3-LFO2 - - - Sine wave - Gelombang sinus - - - Bandlimited Triangle wave - - - - Bandlimited Saw wave - - - - Bandlimited Ramp wave - - - - Bandlimited Square wave - - - - Bandlimited Moog saw wave - - - - Soft square wave - Gelombang kotak halus - - - Absolute sine wave - Gelombang sinus absolut - - - Exponential wave - - - - White noise - Kebisingan putih - - - Digital Triangle wave - Gelombang Segitiga digital - - - Digital Saw wave - Gelombang Gergaji digital - - - Digital Ramp wave - - - - Digital Square wave - Gelombang Kotak digital - - - Digital Moog saw wave - - - - Triangle wave - Gelombang segitiga - - - Saw wave - Gelombang gergaji - - - Ramp wave - - - - Square wave - Gelombang kotak - - - Moog saw wave - - - - Abs. sine wave - - - - Random - Acak - - - Random smooth - Halus acak - - - - MonstroView - - Operators view - Tampilan operator - - - 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 - - - - cents - sen - - - 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 - Attack - - - Rate - Nilai - - - Phase - - - - Pre-delay - - - - Hold - Tahan - - - Decay - Tahan - - - Sustain - Tahan - - - Release - Release - - - Slope - - - - Modulation amount - - - - - MultitapEchoControlDialog - - Length - Panjang - - - Step length: - - - - Dry - - - - Dry Gain: - - - - Stages - - - - Lowpass stages: - - - - Swap inputs - Tukar masukan - - - Swap left and right input channel for reflections - Tukar masukan kiri dan kanan saluran untuk refleksi - - - - NesInstrument - - Channel 1 Coarse detune - - - - Channel 1 Volume - Volume Saluran 1 - - - Channel 1 Envelope length - - - - Channel 1 Duty cycle - - - - Channel 1 Sweep amount - - - - Channel 1 Sweep rate - - - - Channel 2 Coarse detune - - - - Channel 2 Volume - Volume Saluran 2 - - - Channel 2 Envelope length - - - - Channel 2 Duty cycle - - - - Channel 2 Sweep amount - - - - Channel 2 Sweep rate - - - - Channel 3 Coarse detune - - - - Channel 3 Volume - Volume Saluran 3 - - - Channel 4 Volume - Volume Saluran 4 - - - Channel 4 Envelope length - - - - Channel 4 Noise frequency - - - - Channel 4 Noise frequency sweep - - - - Master volume - Volume master - - - Vibrato - Getaran - - - - NesInstrumentView - - Volume - Volume - - - - Coarse detune - Detune kasar - - - Envelope length - Panjang sampul - - - Enable channel 1 - Aktifkan saluran 1 - - - Enable envelope 1 - Aktifkan sampul 1 - - - Enable envelope 1 loop - Akftifkan envelop pengulangan 1 - - - Enable sweep 1 - - - - Sweep amount - - - - Sweep rate - - - - 12.5% Duty cycle - Siklus tugas 12,5% - - - 25% Duty cycle - Siklus tugas 25% - - - 50% Duty cycle - Siklus tugas 50% - - - 75% Duty cycle - Siklus tugas 75% - - - Enable channel 2 - Aktifkan saluran 2 - - - Enable envelope 2 - Aktifkan sampul 2 - - - Enable envelope 2 loop - Akftifkan envelop pengulangan 2 - - - Enable sweep 2 - - - - Enable channel 3 - Aktifkan saluran 3 - - - Noise Frequency - Frekuensi Riuh - - - Frequency sweep - - - - Enable channel 4 - Aktifkan saluran 4 - - - Enable envelope 4 - Aktifkan sampul 4 - - - Enable envelope 4 loop - Akftifkan envelop pengulangan 4 - - - Quantize noise frequency when using note frequency - - - - Use note frequency for noise - Gunakan frekuensi not untuk riuh - - - Noise mode - Mode derau - - - Master Volume - Volume Master - - - Vibrato - Getaran - - - - OscillatorObject - - Osc %1 volume - Volume Osc %1 - - - Osc %1 panning - Keseimbangan Osc %1 - - - Osc %1 coarse detuning + + Esc - Osc %1 fine detuning left + + &Insert Mode - Osc %1 fine detuning right + + F - Osc %1 phase-offset + + &Velocity Mode - Osc %1 stereo phase-detuning + + D - Osc %1 wave shape + + Select All - Modulation type %1 - Tipe modulasi %1 - - - Osc %1 waveform - Bentuk gelombang Osc %1 - - - Osc %1 harmonic + + A PatchesDialog + + Qsynth: Channel Preset + + Bank selector Pemilih bank + + Bank Bank + + Program selector Pemilih program + + Patch Patch + + Name Nama + + OK OK + + Cancel Batal - - 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. - - - 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 - - Open in piano-roll - Buka di rol-piano - - - Clear all notes - Bersihkan semua not - - - Reset name - Reset nama - - - Change name - Ganti nama - - - Add steps - Tambah langkah - - - Remove steps - Hapus langkah - - - Clone Steps - Klon langkah - - - - PeakController - - Peak Controller - - - - Peak Controller Bug - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Karena bug pada versi lama LMMS, pengendali puncak mungkin tidak terhubung dengan benar. Pastikan pengendali puncak terhubung dengan benar dan simpan kembali berkas ini. Maaf atas ketidaknyamanan yang terjadi. - - - - PeakControllerDialog - - PEAK - - - - LFO Controller - Kontroler LFO - - - - PeakControllerEffectControlDialog - - BASE - DASAR - - - Base amount: - Jumlah dasar: - - - Modulation amount: - Jumlah modulasi: - - - Attack: - Attack: - - - Release: - Release: - - - AMNT - JMLH - - - MULT - - - - Amount Multiplicator: - - - - ATCK - - - - DCAY - - - - Treshold: - - - - TRSH - - - - - PeakControllerEffectControls - - Base value - Nilai dasar - - - Modulation amount - - - - Mute output - - - - Attack - Attack - - - Release - Release - - - Abs Value - Nilai Abs - - - Amount Multiplicator - - - - Treshold - - - - - 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 - - - Select all notes on this key - Pilih semua not pada kunci ini - - - - PianoRollWindow - - Play/pause current pattern (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) - 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 - - - Copy paste controls - Kontrol salin tempel - - - Timeline controls - Kontrol linimasa - - - Zoom and note controls - Kontrol not dan zoom - - - Piano-Roll - %1 - Rol-Piano - %1 - - - Piano-Roll - no pattern - Rol-Piano - tiada pola - - - Quantize - Kuantitas - - - - PianoView - - Base note - Not dasar - - - - Plugin - - Plugin not found - Plugin tidak ditemukan - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Plugin "%1" tidak ditemukan atau tidak bisa dimuat! -Alasan: "%2" - - - Error while loading plugin - Gagal ketika memuat plugin - - - Failed to load plugin "%1"! - Gagal untuk memuat plugin "%1"! - - PluginBrowser - Instrument 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 - - - - 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! - - - - 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 - - - - - ProjectRenderer - - WAV-File (*.wav) - Berkas-WAV (*.wav) - - - Compressed OGG-File (*.ogg) - Berkas-OGG terkompresi (*.ogg) - - - FLAC-File (*.flac) - - - - Compressed MP3-File (*.mp3) - - - - - QWidget - - Name: - Nama: - - - 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: - Berkas: - - - File: %1 - Berkas: %1 - - - - RenameDialog - - Rename... - Ganti nama... - - - - ReverbSCControlDialog - - Input - Masukan - - - Input Gain: - Gain Masuk: - - - Size - Ukuran - - - Size: - Ukuran: - - - Color - Warna - - - Color: - Warna: - - - Output - Keluaran - - - Output Gain: - Gain Keluaran: - - - - ReverbSCControls - - Input Gain - Gain Masukan - - - Size - Ukuran - - - Color - Warna - - - Output Gain - Gain Keluaran - - - - 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 - - - Delete (middle mousebutton) - Hapus (tombol tengah mouse) - - - Cut - Potong - - - Copy - Salin - - - Paste - Tempel - - - Mute/unmute (<%1> + middle click) - Bisukan/suarakan (<%1> + middle click) - - - - SampleTrack - - Sample track - Trek sampel - - - Volume - Volume - - - - Panning - Keseimbangan - - - - SampleTrackView - - Track volume - Volume trek - - - Channel volume: - Volume channel: - - - VOL - VOL - - - Panning - Keseimbangan - - - Panning: - Keseimbangan: - - - PAN - SEIMBANG - - - - SetupDialog - - Setup LMMS - Atur LMMS - - - General settings - Pengaturan umum - - - BUFFER SIZE - UKURAN BUFFER - - - Reset to default-value - Setel ulang ke nilai default - - - MISC - - - - Enable tooltips - Aktifkan tooltips - - - Show restart warning after changing settings - Tampilkan peringatan mulai ulang setelah mengganti pengaturan - - - Compress project files per default - Kompres berkas proyek per default - - - One instrument track window mode - Mode jendela satu trek instrumen - - - HQ-mode for output audio-device - mode-HQ untuk keluaran perangkat-audio - - - Compact track buttons - Tombol trek yang kompak - - - 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 - - - LANGUAGE - BAHASA - - - Paths - - - - LMMS working directory - Direktori kerja LMMS - - - VST-plugin directory - Direktori VST-plugin - - - 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 - - - - Audio settings - Pengaturan suara - - - AUDIO INTERFACE - INTERFACE SUARA - - - MIDI settings - Pengaturan MIDI - - - MIDI INTERFACE - INTERFACE MIDI - - - 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 - - - Auto-save interval: %1 - Waktu jeda simpan otomatis: %1 - - - 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. - - - - Song - - Tempo - Tempo - - - Master volume - Volume master - - - Master pitch - Master pitch - - - 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 - - - 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) - - - LMMS Error report - Laporan kesalahan LMMS - - - Save project - Simpan proyek - - - - 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. - - - 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. - - - - 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 - - - Edit actions - Ubah aksi - - - Timeline controls - Kontrol timeline - - - Zoom controls - Kontrol Zum - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - SpectrumAnalyzerControls - - Linear spectrum - - - - Linear Y axis - - - - Channel mode - Mode saluran - - - - SubWindow - - Close - Tutup - - - Maximize - Maksimalkan - - - Restore - Kembalikan - - - - TabWidget - - Settings for %1 - Pengaturan untuk %1 - - - - 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 - - - - - TimeDisplayWidget - - click to change time units - klik untuk mengganti unit waktu - - - MIN - MIN - - - SEC - DTK - - - MSEC - MDTK - - - BAR - BAR - - - BEAT - KETUKAN - - - TICK - TIK - - - - TimeLineWidget - - Enable/disable auto-scrolling - Aktifkan/nonaktifkan skrol-otomatis - - - Enable/disable loop-points - Aktifkan / nonaktifkan titik-pengulangan - - - After stopping go back to begin - Setelah berhenti kembali ke awal - - - 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 - - - - 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 Track %1 (%2/Total %3) - Memuat Trek %1 (%2/Total %3) - - - - TrackContentObject - - Mute - Bisu - - - - TrackContentObjectView - - 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) - - - Delete (middle mousebutton) - Hapus (tombol tengah mouse) - - - Cut - Potong - - - Copy - Salin - - - Paste - Tempel - - - Mute/unmute (<%1> + middle click) - Bisukan/suarakan (<%1> + middle click) - - - - TrackOperationsWidget - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - - - - Actions for this track - Aksi untuk trek ini - - - Mute - Bisu - - - Solo - Solo - - - Mute this track - Bisukan trek ini - - - Clone this track - Klon trek ini - - - Remove this track - Hapus trek ini - - - Clear this track - Bersihkan trek ini - - - FX %1: %2 - FX %1: %2 - - - Turn all recording on - Hidupkan semua rekaman - - - Turn all recording off - Matikan semua rekaman - - - Assign to new FX Channel - Tetapkan ke Saluran FX baru - - - - 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 - Campurkan keluaran dari osilator 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 - Campurkan keluaran dari osilator 2 & 3 - - - Synchronize oscillator 2 with oscillator 3 - Selaraskan osilator 2 dengan osilator 3 - - - Use frequency modulation for modulating oscillator 2 with 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. - - - - 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. - - - - Use an exponential wave for current oscillator. - - - - 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. - - - - VersionedSaveDialog - - Increment version number - Tingkatkan versi nomor - - - Decrement version number - Turunkan versi nomor - - - already exists. Do you want to replace it? - sudah ada. Apakah anda ingin menimpanya? - - - - VestigeInstrumentView - - Open other VST-plugin - Buka plugin-VST lain - - - 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. - - - 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. - - - 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. - - - 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 - - - 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. - - - 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 /> - - - - VstPlugin - - Loading plugin - Memuat plugin - - - 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... - - - The VST plugin %1 could not be loaded. - VST plugin %1 tidak dapat dimuat. - - - - 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 - - - - 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 - - - - - ZynAddSubFxInstrument - - Portamento - - - - Filter Frequency - - - - Filter Resonance - - - - Bandwidth - Lebar pita - - - FM Gain - Gain FM - - - Resonance Center Frequency - - - - 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: - - - FREQ - FREK - - - Filter Resonance: - Resonansi Filter: - - - RES - RES - - - Bandwidth: - Lebar pita: - - - BW - LP - - - FM Gain: - FM Gain: - - - FM GAIN - FM GAIN - - - Resonance center frequency: - Frekuensi resonansi tengah: - - - RES CF - - - - Resonance bandwidth: - - - - RES BW - - - - Forward MIDI Control Changes - - - - - audioFileProcessor - - Amplify - - - - Start of sample - Awal dari sampel - - - End of sample - Akhir dar sampel - - - Reverse sample - Balikan sampel - - - Stutter - - - - Loopback point - Titik loopback - - - Loop mode - Mode pengulangan - - - Interpolation mode - - - - None - Tidak ada - - - Linear - - - - Sinc - - - - Sample not found: %1 - Sampel tidak ditemukan: %1 - - - - bitInvader - - Samplelength - Panjangsampel - - - - 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 - - - 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. - - - - 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 - - - Increase wavegraph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - Klik disini untuk meningkatkan amplitudo Grafik gelombang dengan 1dB - - - Decrease wavegraph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB - Klik disini untuk mengurangi amplitudo wavegraf dengan 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 - 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 - - Start frequency - Frekuensi mulai - - - End frequency - Frekuensi akhir - - - Gain - Gain - - - Length - Panjang - - - Distortion Start - Distorsi Mulai - - - Distortion End - Distorsi Akhir - - - Envelope Slope - - - - Noise - Derau - - - Click - Klik - - - Frequency Slope - - - - Start from note - Mulai dari not - - - End to note - Berakhir ke not - - - - kickerInstrumentView - - Start frequency: - Frekuensi mulai: - - - End frequency: - Frekuensi akhir: - - - Gain: - Gain: - - - Frequency Slope: - - - - Envelope Length: - - - - Envelope Slope: - - - - Click: - Klik: - - - Noise: - Derau: - - - Distortion Start: - Distorsi Mulai: - - - Distortion End: - Distorsi Akhir: - - - - 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 - - Plugins - Plugin - - - Description - Deskripsi - - - - ladspaPortDialog - - Ports - - - - Name - Nama - - - Rate - Nilai - - - Direction - Arah - - - Type - Tipe - - - Min < Default < Max - Min < Default < Maks - - - Logarithmic - Logaritmik - - - SR Dependent - - - - Audio - Audio - - - Control - Kontrol - - - Input - Masukan - - - Output - Keluaran - - - Toggled - - - - Integer - Integer - - - Float - Float - - - Yes - Ya - - - - lb302Synth - - VCF Cutoff Frequency - - - - VCF Resonance - Resonansi VCF - - - VCF Envelope Mod - - - - VCF Envelope Decay - - - - Distortion - Distorsi - - - Waveform - Grafik gelombang - - - Slide Decay - - - - Slide - - - - Accent - Aksen - - - Dead - Mati - - - 24dB/oct Filter - Filter 24dB/oct - - - - lb302SynthView - - Cutoff Freq: - Frek Cutoff: - - - Resonance: - Resonansi: - - - Env Mod: - Env Mod: - - - Decay: - Decay: - - - 303-es-que, 24dB/octave, 3 pole filter - - - - Slide Decay: - - - - DIST: - - - - Saw wave - Gelombang gergaji - - - Click here for a saw-wave. - Klik disini untuk gelombang gergaji. - - - Triangle wave - Gelombang segitiga - - - Click here for a triangle-wave. - Klik disini untuk gelombang-segitiga. - - - Square wave - Gelombang kotak - - - Click here for a square-wave. - Klik disini untuk gelombang-kotak. - - - Rounded square wave - Gelombang persegi bulat - - - Click here for a square-wave with a rounded end. - - - - Moog wave - - - - Click here for a moog-like wave. - - - - Sine wave - Gelombang sinus - - - Click for a sine-wave. - - - - White noise wave - Gelombang riuh - - - Click here for an exponential wave. - Klik disini untuk gelombang eksponensial. - - - Click here for white-noise. - Klik disini untuk kebisingan-putih. - - - Bandlimited saw wave - - - - Click here for bandlimited saw wave. - - - - Bandlimited square wave - - - - Click here for bandlimited square wave. - - - - Bandlimited triangle wave - - - - Click here for bandlimited triangle wave. - - - - Bandlimited moog saw wave - - - - Click here for bandlimited moog saw wave. - - - - - malletsInstrument - - Hardness - Kekerasan - - - Position - Posisi - - - Vibrato Gain - - - - Vibrato Freq - - - - Stick Mix - - - - Modulator - Modulator - - - Crossfade - - - - LFO Speed - Kecepatan LFO - - - LFO Depth - Kedalaman LFO - - - ADSR - ADSR - - - Pressure - Tekanan - - - Motion - - - - Speed - Kecepatan - - - Bowed - - - - Spread - - - - Marimba - Marimba - - - Vibraphone - Vibraphone - - - Agogo - - - - Wood1 - - - - Reso - Reso - - - Wood2 - - - - Beats - Ketukan - - - Two Fixed - - - - Clump - - - - Tubular Bells - - - - Uniform Bar - - - - Tuned Bar - - - - Glass - - - - Tibetan Bowl - - - - - 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! - - - - - manageVSTEffectView - - - VST parameter control - - VST kontrol parameter - - - 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 - - - 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 - - Distortion - Distorsi - - - Volume - Volume - - - - - organicInstrumentView - - Distortion: - Distorsi: - - - Volume: - Volume: - - - Randomise - - - - Osc %1 waveform: - Bentuk Gelombang Osc %1: - - - Osc %1 volume: - Volume Osc %1: - - - Osc %1 panning: - Keseimbangan Osc %1: - - - 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 - - - - 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 - - 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 + tanpa deskripsi - Incomplete monophonic imitation tb303 + + 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 secara cepat dan sederhana + + + + Customizable wavetable synthesizer + Synthesizer wavetable yang dapat disesuaikan + + + + An oversampling bitcrusher - Plugin for freely manipulating stereo output + + Carla Patchbay Instrument + Instrumen Carla Patchbay + + + + Carla Rack Instrument + Rak Instrumen Carla + + + + A dynamic range compressor. - Plugin for controlling knobs with sound peaks - Plugin untuk mengendalikan kenop dengan puncak suara - - - Plugin for enhancing stereo separation of a stereo input file + + A 4-band Crossover Equalizer + + A native delay plugin + + + + + A Dual filter plugin + Plugin filter ganda + + + + plugin for processing dynamics in a flexible way + plugin untuk memproses dinamika suara dengan cara yang fleksibel + + + + A native eq plugin + Plugin eq bawaan + + + + A native flanger plugin + Plugin flanger bawaan + + + + Emulation of GameBoy (TM) APU + Emulasi APU GameBoy (TM) + + + + Player for GIG files + Pemutar untuk berkas GIG + + + + Filter for importing Hydrogen files into LMMS + Filter untuk mengimpor berkas Hydrogen ke LMMS + + + + Versatile drum synthesizer + Synthesizer drum serbaguna + + + List installed LADSPA plugins Daftar plugin LADSPA yang terpasang - 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. + + Incomplete monophonic imitation TB-303 + + + + + plugin for using arbitrary LV2-effects inside LMMS. + + + + + plugin for using arbitrary LV2 instruments inside LMMS. + + + + + Filter for exporting MIDI-files from LMMS + Filter untuk mengekspor berkas MIDI dari LMMS + + + Filter for importing MIDI-files into LMMS Filter untuk mengimpor berkas MIDI ke LMMS + + Monstrous 3-oscillator synth with modulation matrix + + + + + A multitap echo delay plugin + + + + + A NES-like synthesizer + Synthesizer seperti NES + + + + 2-operator FM Synth + 2-operator FM Synth + + + + Additive Synthesizer for organ-like sounds + + + + + GUS-compatible patch instrument + Instrumen patch yang kompatibel dengan GUS + + + + Plugin for controlling knobs with sound peaks + Plugin untuk mengendalikan kenop dengan puncak suara + + + + Reverb algorithm by Sean Costello + + + + + Player for SoundFont files + Pemutar untuk berkas SoundFont + + + + LMMS port of sfxr + + + + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulasi SID MOS6581 dan MOS8580. Chip yang digunakan pada komputer Commodore 64. - 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 + + A graphical spectrum analyzer. - Monstrous 3-oscillator synth with modulation matrix + + 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 native amplifier plugin - Plugin amplifier native - - - Carla Rack Instrument - Rak Instrumen Carla - - - 4-oscillator modulatable wavetable synth + + A stereo field visualizer. - plugin for waveshaping - plugin untuk pembentukan gelombang + + VST-host for using VST(i)-plugins within LMMS + - 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 + + 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. - Graphical spectrum analyzer plugin - Plugin analisa spektrum grafis - - - A NES-like synthesizer - Synthesizer seperti NES - - - A native delay plugin + + 4-oscillator modulatable wavetable synth - 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 - + + plugin for waveshaping + plugin untuk pembentukan gelombang + Mathematical expression parser + + + Embedded ZynAddSubFX + Tertanam ZynAddSubFX + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + + - sf2Instrument + PluginEdit - Bank - Bank + + Plugin Editor + Editor Plugin - Patch - Patch + + 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: + Audio: + + + + Fixed-Size Buffer + + + + + Force Stereo (needs reload) + + + + + MIDI: + MIDI: + + + + Map Program Changes + Petakan Perubahan Program + + + + Send Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + + + + + Save State + + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + Tipe: + + + + Maker: + + + + + Copyright: + Hak Cipta: + + + + 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! + + + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + + + + + Parameter Name + + + + + TextLabel + + + + + ... + + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + Nyala/Mati + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + + + + + Show GUI + Tampilkan GUI + + + + Help + Bantuan + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + Nama: + + + + 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: + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + + + + + lmms::AudioFileProcessor + + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + Gain - Gain + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + Reverb - Reverb 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 + lmms::SfxrInstrument - 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. + + Wave - - 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 - Buka berkas SoundFont - - - SoundFont2 Files (*.sf2) - Berkas SoundFont2 (*.sf2) - - sfxrInstrument + lmms::SidInstrument - Wave Form - Bentuk Gelombang - - - - sidInstrument - - Cutoff - Cutoff + + Cutoff frequency + + 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 - Filter High-Pass - - - Band-Pass filter - Filter Band-Pass - - - Low-Pass filter - Filter Low-Pass - - - Voice3 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. - - - - 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 - 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. - stereoEnhancerControlDialog + lmms::SlicerT - WIDE - LEBAR + + Note threshold + - Width: - Lebar: + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + - stereoEnhancerControls + lmms::Song + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + Width - Lebar + - stereoMatrixControlDialog - - Left to Left Vol: - Vol Kiri ke Kiri: - - - Left to Right Vol: - Vol Kiri ke Kanan: - - - Right to Left Vol: - Vol Kanan ke Kiri: - - - Right to Right Vol: - Vol Kanan ke Kanan: - - - - stereoMatrixControls + lmms::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 + lmms::Track + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + Loading plugin - Memuat plugin + - Please wait while loading VST-plugin... - Mohon tunggu, memuat VST-plugin... + + Please wait while loading the VST plugin... + - vibed + lmms::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 + lmms::VoiceObject + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + Volume: - Volume: + - The 'V' knob sets the volume of the selected string. - Tombol 'V' mengatur volume dari string yang dipilih. + + PAN + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + String stiffness: - 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. - 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 panning: - 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 detune: - 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 fuzziness: - 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. - - - - 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. + + String length: + 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. + + Impulse - Enable waveform - Aktifkan gelombang grafik + + Enable/disable string + - Click here to enable/disable waveform. - Klik disini untuk mengaktifkan/menonaktifkan gelombang graifk. + + Octave + + String - Deretan + + + + lmms::gui::VstEffectControlDialog - 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. + + Show/hide - Sine wave - Gelombang sinus + + Control VST plugin from LMMS host + - Triangle wave - Gelombang segitiga + + Open VST plugin preset + - Saw wave - Gelombang gergaji + + Previous (-) + - Square wave - Gelombang kotak + + Next (+) + - White noise wave - Gelombang riuh + + Save preset + - User defined wave - Gelombang yang didefinisikan pengguna + + + Effect by: + - Smooth - Halus + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + - Click here to smooth waveform. - Klik disini untuk menghaluskan grafik gelombang. + + + + + 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 - Normalisasi + - Click here to normalize waveform. - Klik disini untuk menormalisasi gelombang. + + + Invert + - Use a sine-wave for current oscillator. - Gunakan gelombang sinus untuk osilator saat ini. + + + Smooth + - Use a triangle-wave for current oscillator. - Gunakan gelombang segitiga untuk osilator saat ini. + + + Sine wave + - Use a saw-wave for current oscillator. - Gunakan gelombang gergaji untuk osilator saat ini. + + + + Triangle wave + - Use a square-wave for current oscillator. - Gunakan gelombang kotak untuk osilator saat ini. + + Saw wave + - 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. + + + Square wave + - 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 + lmms::gui::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 + lmms::gui::XpressiveView - Input gain - Gain masukan + + Draw your own waveform here by dragging your mouse on this graph. + - Output gain - Gain keluaran + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + \ No newline at end of file diff --git a/data/locale/it.ts b/data/locale/it.ts index f93cb0170..db7f5c7bc 100644 --- a/data/locale/it.ts +++ b/data/locale/it.ts @@ -1,10318 +1,18760 @@ - + AboutDialog + About LMMS Informazioni su LMMS - Version %1 (%2/%3, Qt %4, %5) - Versione %1 (%2/%3, Qt %4, %5) + + 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 semplice per tutti + + 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 - 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 - - + 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 + AboutJuceDialog - VOL - VOL + + About JUCE + Informazioni su JUCE - Volume: - Volume: + + <b>About JUCE</b> + <b>Informazioni su JUCE</b> - PAN - BIL + + This program uses JUCE version 3.x.x. + Questo programma utilizza JUCE versione 3.x.x. - Panning: - Bilanciamento: - - - LEFT - SX - - - Left gain: - Guadagno a sinistra: - - - RIGHT - DX - - - Right gain: - Guadagno a destra: - - - - AmplifierControls - - Volume - Volume - - - Panning - Bilanciamento - - - Left gain - Guadagno a sinistra - - - Right gain - Guadagno a destra - - - - AudioAlsaSetupWidget - - DEVICE - PERIFERICA - - - CHANNELS - CANALI - - - - 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. - - - 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) - - - 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. - - - Enable loop - Abilita ripetizione - - - 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. - - - 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. - - - 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. - - - 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. - - - 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. - - - - AudioFileProcessorWaveView - - Sample length: - Lunghezza del campione: - - - - AudioJack - - JACK client restarted - Il client JACK è ripartito - - - 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. - - - JACK server down - Il server JACK è 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. - 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. - - - CLIENT-NAME - NOME DEL CLIENT - - - CHANNELS - CANALI - - - - AudioOss::setupWidget - - DEVICE - PERIFERICA - - - CHANNELS - CANALI - - - - AudioPortAudio::setupWidget - - BACKEND - USCITA POSTERIORE - - - DEVICE - PERIFERICA - - - - AudioPulseAudio::setupWidget - - DEVICE - PERIFERICA - - - CHANNELS - CANALI - - - - AudioSdl::setupWidget - - DEVICE - PERIFERICA - - - - AudioSndio::setupWidget - - DEVICE - PERIFERICA - - - CHANNELS - CANALI - - - - AudioSoundIo::setupWidget - - BACKEND - INTERFACCIA - - - DEVICE - PERIFERICA - - - - 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 - - - Connected to %1 - Connesso a %1 - - - Connected to controller - Connesso a un 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 - - - - 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! - - - Values copied - Valori copiati - - - All selected values were copied to the clipboard. - Tutti i valori sono stati copiati nella clipboard. - - - - AutomationEditorWindow - - Play/pause current pattern (Space) - Riproduci/metti in pausa il beat/bassline selezionato (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 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. - - - Draw mode (Shift+D) - Modalità disegno (Shift+D) - - - Erase mode (Shift+E) - Modalità cancella (Shift+E) - - - Flip vertically - Contrario - - - Flip horizontally - Retrogrado - - - 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'. - - - Discrete progression - Progressione discreta - - - Linear progression - Progressione lineare - - - Cubic Hermite progression - Progressione a 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. - - - 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 - - - Quantization controls - Controlli di quantizzazione - - - Model is already connected to this pattern. - Il controllo è già connesso a questo pattern. - - - 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>. - - - - AutomationPattern - - Drag a control while pressing <%1> - Trascina un controllo tenendo premuto <%1> - - - - AutomationPatternView - - Open in Automation editor - Apri nell'editor dell'Automazione - - - Clear - Pulisci - - - Reset name - Reimposta nome - - - Change name - Rinomina - - - %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. - - - - AutomationTrack - - Automation track - Traccia di automazione - - - - BBEditor - - Beat+Bassline Editor - Beat+Bassline Editor - - - Play/pause current beat/bassline (Space) - Riproduci/metti in pausa il beat/bassline selezionato (Spazio) - - - Stop playback of current beat/bassline (Space) - Ferma il beat/bassline attuale (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. - - - Click here to stop playing of current beat/bassline. - Cliccando qui si ferma la riproduzione del beat/bassline attivo. - - - 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 - - - Add sample-track - Aggiungi traccia campione - - - - BBTCOView - - Open in Beat+Bassline-Editor - Apri nell'editor di Beat+Bassline - - - Reset name - Reimposta nome - - - Change name - Rinomina - - - Change color - Cambia colore - - - Reset color to default - Reimposta il colore a default - - - - BBTrack - - Beat/Bassline %1 - Beat/Bassline %1 - - - Clone of %1 - Clone di %1 - - - - BassBoosterControlDialog - - FREQ - FREQ - - - Frequency: - Frequenza: - - - GAIN - GUAD - - - Gain: - Guadagno: - - - RATIO - RAPP - - - Ratio: - Rapporto: - - - - BassBoosterControls - - Frequency - Frequenza - - - Gain - Guadagno - - - Ratio - Rapporto dinamico - - - - BitcrushControlDialog - - IN - IN - - - OUT - OUT - - - GAIN - GUAD - - - Input Gain: - Guadagno in 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: - - - NOISE - RUMORE - - - FREQ - FREQ - - - STEREO + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - QUANT - + + This program uses JUCE version + Questo programma utilizza una versione di JUCE - CaptionMenu + AudioDeviceSetupWidget + + [System Default] + [Sistema predefinito] + + + + 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... + + + + Save + Salva + + + + Clear + Rimuovi + + + + Ctrl+L + Ctrl+L + + + + Auto-Scroll + Scorrimento automatico + + + + Buffer Size: + Dimensione buffer: + + + + Sample Rate: + Frequenza campionamento: + + + + ? Xruns + ? Xruns + + + + DSP Load: %p% + Carico DSP: %p% + + + + &File + &File + + + + &Engine + &Motore + + + + &Plugin + &Plugin + + + + Macros (all plugins) + Macro (tutti i plugin) + + + + &Canvas + &Canvas + + + + Zoom + Ingrandimento + + + + &Settings + &Impostazioni + + + &Help &Aiuto - Help (not available) - Aiuto (non disponibile) + + Tool Bar + Barra degli strumenti - - - CarlaInstrumentView - Show GUI - Mostra GUI + + Disk + Disco - 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. + + + Home + Principale - - - Controller - Controller %1 - Controller %1 + + Transport + Trasporto - - - ControllerConnectionDialog - Connection Settings - Impostazioni connessione + + Playback Controls + Controlli riproduzione - MIDI CONTROLLER - CONTROLLER MIDI + + Time Information + Informazioni tempo - Input channel - Canale di ingresso + + Frame: + Periodo - CHANNEL - CANALE - - - Input controller - Controller di input - - - CONTROLLER - CONTROLLER - - - Auto Detect - Rilevamento automatico - - - MIDI-devices to receive MIDI-events from - Le periferiche MIDI ricevono eventi MIDI da - - - USER CONTROLLER - CONTROLLER PERSONALIZZATO - - - MAPPING FUNCTION - FUNZIONE DI MAPPATURA - - - OK - OK - - - Cancel - Annulla - - - LMMS - LMMS - - - Cycle Detected. - Ciclo rilevato. - - - - ControllerRackView - - Controller Rack - Rack di Controller - - - Add - Aggiungi - - - Confirm Delete - Conferma eliminazione - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Confermi l'eliminazione? Ci sono connessioni associate a questo controller: non sarà possibile ripristinarle. - - - - 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 - - - &Remove this controller - &Rimuovi questo controller - - - Re&name this controller - Ri&nomina questo controller - - - LFO - LFO - - - - CrossoverEQControlDialog - - Band 1/2 Crossover: - Punto di separazione 1/2: - - - Band 2/3 Crossover: - Punto di separazione 2/3: - - - Band 3/4 Crossover: - Punto di separazione 3/4: - - - Band 1 Gain: - Guadagno banda 1: - - - Band 2 Gain: - Guadagno banda 2: - - - Band 3 Gain: - Guadagno banda 3: - - - Band 4 Gain: - Guadagno banda 4: - - - Band 1 Mute - Muto Banda 1 - - - Mute Band 1 - Muto Banda 1 - - - Band 2 Mute - Muto Banda 2 - - - Mute Band 2 - Muto Banda 2 - - - Band 3 Mute - Muto Banda 3 - - - Mute Band 3 - Muto Banda 3 - - - Band 4 Mute - Muto Banda 4 - - - Mute Band 4 - Muto Banda 4 - - - - DelayControls - - Delay Samples - Campioni di Delay - - - Feedback - Feedback - - - Lfo Frequency - Frequenza Lfo - - - Lfo Amount - Ampiezza Lfo - - - Output gain - Guadagno in output - - - - DelayControlsDialog - - Lfo Amt - Quantità Lfo - - - 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 - - - AMNT - Q.TÀ - - - - 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 - - - - DualFilterControls - - Filter 1 enabled - Attiva Filtro 1 - - - Filter 1 type - Tipo del Filtro 1 - - - Cutoff 1 frequency - Frequenza di taglio Filtro 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 - - - Q/Resonance 2 - Risonanza Filtro 2 - - - Gain 2 - Guadagno Filtro 2 - - - LowPass - PassaBasso - - - HiPass - PassaAlto - - - BandPass csg - PassaBanda csg - - - BandPass czpg - PassaBanda czpg - - - Notch - Notch - - - Allpass - Passatutto - - - Moog - Moog - - - 2x LowPass - PassaBasso 2x - - - RC LowPass 12dB - RC PassaBasso 12dB - - - RC BandPass 12dB - RC PassaBanda 12dB - - - RC HighPass 12dB - RC PassaAlto 12dB - - - RC LowPass 24dB - RC PassaBasso 24dB - - - RC BandPass 24dB - RC PassaBanda 24dB - - - RC HighPass 24dB - RC PassaAlto 24dB - - - Vocal Formant Filter - Filtro a Formante di Voce - - - 2x Moog - 2x Moog - - - SV LowPass - PassaBasso SV - - - SV BandPass - PassaBanda SV - - - SV HighPass - PassaAlto SV - - - SV Notch - Notch SV - - - Fast Formant - Formante veloce - - - Tripole - Tre poli - - - - Editor - - Play (Space) - Play (Spazio) - - - Stop (Space) - Fermo (Spazio) - - - Record - Registra - - - Record while playing - Registra in play - - - Transport controls - Controlli trasporto - - - - Effect - - Effect enabled - Effetto attivo - - - Wet/Dry mix - Bilanciamento Wet/Dry - - - Gate - Gate - - - Decay - Decadimento - - - - EffectChain - - Effects enabled - Effetti abilitati - - - - EffectRackView - - EFFECTS CHAIN - CATENA DI EFFETTI - - - Add effect - Aggiungi effetto - - - - EffectSelectDialog - - Add effect - Aggiungi effetto - - - Name - Nome - - - Type - Tipo - - - Description - Descrizione - - - Author - Autore - - - - EffectView - - 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 + + 000'000'000 + 000'000'000 + 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. + + 00:00:00 + 00:00:00 - GATE - GATE + + BBT: + BBT: - Gate: - Gate: + + 000|00|0000 + 000|00|0000 - 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. + + Settings + Impostazioni - Controls - Controlli + + BPM + BPM - 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. + + Use JACK Transport + Usa trasporto JACK - Move &up - Sposta verso l'&alto + + Use Ableton Link + Usa collegamento Ableton - Move &down - Sposta verso il &basso + + &New + &Nuovo - &Remove this plugin - &Elimina questo plugin + + Ctrl+N + Ctrl+N + + + + &Open... + &Apri... + + + + + Open... + Apri... + + + + Ctrl+O + Ctrl+O + + + + &Save + &Salva + + + + Ctrl+S + Ctrl+S + + + + Save &As... + Salva &come... + + + + + Save As... + Salva come... + + + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Quit + &Esci + + + + Ctrl+Q + Ctrl+Q + + + + &Start + &Partenza + + + + F5 + F5 + + + + St&op + Arrest&a + + + + F6 + F6 + + + + &Add Plugin... + &Aggiungi plug-in... + + + + Ctrl+A + Ctrl+A + + + + &Remove All + &Rimuovi tutto + + + + Enable + Abilita + + + + Disable + Disabilita + + + + 0% Wet (Bypass) + 0% bagnato (bypass) + + + + 100% Wet + 100% bagnato + + + + 0% Volume (Mute) + 0% Volume (silenziato) + + + + 100% Volume + 100% Volume + + + + Center Balance + Bilanciamento al centro + + + + &Play + &Riproduci + + + + Ctrl+Shift+P + Ctrl+Shift+P + + + + &Stop + &Arresta + + + + Ctrl+Shift+X + Ctrl+Shift+X + + + + &Backwards + &Indietro + + + + Ctrl+Shift+B + Ctrl+Shift+B + + + + &Forwards + &Avanti + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + &Organizza + + + + Ctrl+G + Ctrl+G + + + + + &Refresh + &Aggiorna + + + + Ctrl+R + Ctrl+R + + + + Save &Image... + Salva &immagine... + + + + Auto-Fit + Adatta-automatico + + + + Zoom In + Ingrandisci + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + Riduci + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + Ingrandimento 100% + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + Mostra &barra strumenti + + + + &Configure Carla + &Configura Carla + + + + &About + &A riguardo + + + + About &JUCE + Riguardo a &JUCE + + + + About &Qt + Riguardo a &Qt + + + + Show Canvas &Meters + Mostra Canvas &Misuratori + + + + Show Canvas &Keyboard + Mostra Canvas &Tastiera + + + + Show Internal + Mostra interno + + + + Show External + Mostra esterno + + + + Show Time Panel + Mostra pannello temporale + + + + Show &Side Panel + Mostra &pannello laterale + + + + Ctrl+P + Ctrl+P + + + + &Connect... + &Connetti... + + + + Compact Slots + Comprimi alloggiamenti + + + + Expand Slots + Espandi alloggiamenti + + + + Perform secret 1 + Esegui segreto 1 + + + + Perform secret 2 + Esegui segreto 2 + + + + Perform secret 3 + Esegui segreto 3 + + + + Perform secret 4 + Esegui segreto 4 + + + + Perform secret 5 + Esegui segreto 5 + + + + Add &JACK Application... + Aggiungi applicazione &JACK... + + + + &Configure driver... + &Configura driver... + + + + Panic + Panico + + + + Open custom driver panel... + Apri pannello driver personalizzato... + + + + Save Image... (2x zoom) + Salva immagine... (2x zoom) + + + + Save Image... (4x zoom) + Salva immagine... (4x zoom) + + + + Copy as Image to Clipboard + Copia come immagine su Appunti + + + + Ctrl+Shift+C + Ctrl+Shift+C - EnvelopeAndLfoParameters + CarlaHostWindow - Predelay - Ritardo iniziale + + Export as... + Esporta come... - Attack - Attacco + + + + + Error + Errore - Hold - Mantenimento + + Failed to load project + Impossibile caricare il progetto - Decay - Decadimento + + Failed to save project + Impossibile salvare il progetto - Sustain - Sostegno + + Quit + Esci - Release - Rilascio + + Are you sure you want to quit Carla? + Sei sicuro di voler uscire da Carla? - Modulation - Modulazione + + Could not connect to Audio backend '%1', possible reasons: +%2 + Impossibile connettersi al back-end Audio '%1', possibili motivi: +2% - LFO Predelay - Ritardo iniziale dell'LFO + + Could not connect to Audio backend '%1' + Impossibile connettersi al backend audio '%1' - LFO Attack - Attacco dell'LFO + + Warning + Avviso - LFO speed - Velocità dell'LFO - - - LFO Modulation - Modulazione dell'LFO - - - LFO Wave Shape - Forma d'onda dell'LFO - - - Freq x 100 - Freq x 100 - - - Modulate Env-Amount - Modula la quantità di Env + + 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? - EnvelopeAndLfoView + CarlaSettingsW - DEL - RIT + + Settings + Impostazioni - Predelay: - Ritardo iniziale: + + main + principale - 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. + + canvas + canvas - ATT - ATT + + engine + motore - Attack: - Attacco: + + osc + osc - 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. + + file-paths + Percorsi dei file - HOLD - MANT + + plugin-paths + Percorsi plugin - Hold: - Mantenimento: + + wine + wine - 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. + + experimental + Sperimentale - DEC - DEC + + Widget + Widget - Decay: - Decadimento: + + + Main + Principale - 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. + + + Canvas + Canvas - SUST - SOST + + + Engine + Motore - Sustain: - Sostegno: + + File Paths + Percorsi dei file - 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. + + Plugin Paths + Percorsi plugins - REL - RIL + + Wine + Wine - Release: - Rilascio: + + + Experimental + Sperimentale - 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. + + <b>Main</b> + <b>Principale</b> - AMT - Q.TÀ + + Paths + Percorsi - Modulation amount: - Quantità di modulazione: + + Default project folder: + Cartella progetto predefinita: - 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. + + Interface + Interfaccia - LFO predelay: - Ritardo iniziale dell'LFO: + + Use "Classic" as default rack skin + - 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. + + Interface refresh interval: + Intervallo di aggiornamento interfaccia: - LFO- attack: - Attacco dell'LFO: + + + ms + ms - 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. + + Show console output in Logs tab (needs engine restart) + Mostra l'uscita della console nella scheda Log (necessita di riavvio del motore) - SPD - VEL + + Show a confirmation dialog before quitting + Visualizza messaggio di conferma prima di uscire - LFO speed: - Velocità dell'LFO: + + + Theme + Tema - 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 Carla "PRO" theme (needs restart) + Usa il tema "PRO" di Carla (necessita di riavvio) - 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. + + Color scheme: + Combinazione colori: - Click here for a sine-wave. - Cliccando qui si ha un'onda sinusoidale. + + Black + Nero - Click here for a triangle-wave. - Cliccando qui si ottiene un'onda triangolare. + + System + Sistema - Click here for a saw-wave for current. - Cliccando qui si ha un'onda a dente di sega. + + Enable experimental features + Abilita funzionalità sperimentali - Click here for a square-wave. - Cliccando qui si ottiene un'onda quadra. + + <b>Canvas</b> + <b>Canvas</b> - 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. + + Bezier Lines + Linee di Bezier - FREQ x 100 - FREQ x 100 + + Theme: + Tema: - Click here if the frequency of this LFO should be multiplied by 100. - Cliccando qui la frequenza di questo LFO viene moltiplicata per 100. + + Size: + Grandezza: - multiply LFO-frequency by 100 - moltiplica la frequenza dell'LFO per 100 + + 775x600 + 775x600 - MODULATE ENV-AMOUNT - MODULA LA QUANTITA' DI ENVELOPE + + 1550x1200 + 1550x1200 - Click here to make the envelope-amount controlled by this LFO. - Cliccando qui questo LFO controlla la quantità di envelope. + + 3100x2400 + 3100x2400 - control envelope-amount by this LFO - controlla la quantità di envelope con questo LFO + + 4650x3600 + 4650x3600 - ms/LFO: - ms/LFO: + + 6200x4800 + 6200x4800 - Hint - Suggerimento + + 12400x9600 + 12400x9600 - Drag a sample from somewhere and drop it in this window. - È possibile trascinare un campione in questa finestra. + + Options + Opzioni - Click here for random wave. - Clicca qui per un'onda randomica. + + 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 + + + + JSFX + JSFX + + + + CLAP + CLAP + + + + Restart Carla to find new plugins + Riavvia Carla per trovare nuovi plugin + + + + <b>Wine</b> + <b>Wine</b> + + + + Executable + Eseguibile + + + + Path to 'wine' binary: + Percorso per binario 'wine': + + + + Prefix + Prefisso + + + + Auto-detect Wine prefix based on plugin filename + Rilevamento automatico del prefisso Wine in base al nome del file del plug-in + + + + Fallback: + Alternativa: + + + + Note: WINEPREFIX env var is preferred over this fallback + Nota: WINEPREFIX env var è preferito rispetto a questa alternativa + + + + Realtime Priority + Priorità in tempo reale + + + + Base priority: + Priorità di base: + + + + WineServer priority: + Priorità WineServer: + + + + These options are not available for Carla as plugin + Queste opzioni non sono disponibili per Carla come plugin + + + + <b>Experimental</b> + <b>Sperimentale</b> + + + + Experimental options! Likely to be unstable! + Opzioni sperimentali! Probabilmente instabile! + + + + Enable plugin bridges + Abilita i bridges plugin + + + + Enable Wine bridges + Abilita i bridges Wine + + + + Enable jack applications + Abilita applicazioni jack + + + + Export single plugins to LV2 + Esporta plugins singoli in LV2 + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + Carica il backend di Carla nello spazio globale dei nomi (NON CONSIGLIATO) + + + + Fancy eye-candy (fade-in/out groups, glow connections) + Attraente (gruppi di dissolvenza in apertura/chiusura, connessioni luminose) + + + + Use OpenGL for rendering (needs restart) + Usa OpenGL per il rendering (necessita di riavvio) + + + + High Quality Anti-Aliasing (OpenGL only) + Antialiasing di alta qualità (solo OpenGL) + + + + Render Ardour-style "Inline Displays" + Renderizza in stile-Ardour : "Visualizza in linea" + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + Forza i plugins mono come stereo eseguendo 2 istanze contemporaneamente. +Questa modalità non è disponibile per i plugins VST. + + + + Force mono plugins as stereo + Forza i plugins mono come stereo + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + Evita chiamate non sicure dai plugin (richiede il riavvio) + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + Esegui i plugin in modalità bridge quando possibile + + + + + + + Add Path + Aggiungi percorso - EqControls + Dialog - Input gain - Guadagno in input + + Carla Control - Connect + Carla Control - Connetti - Output gain - Guadagno in output + + Remote setup + Configurazione remota - Low shelf gain - Guadagno basse frequenze + + UDP Port: + Porta UDP: - Peak 1 gain - Guadagno picco 1 + + Remote host: + Host remoto: - Peak 2 gain - Guadagno picco 2 + + TCP Port: + Porta TCP: - Peak 3 gain - Guadagno Picco 3 + + Set value + Imposta valore - Peak 4 gain - Guadagno picco 4 + + TextLabel + TextLabel - High Shelf gain - Guadagno alte frequenze - - - HP res - Ris Passa Alto - - - Low Shelf res - Ris basse frequenze - - - Peak 1 BW - LB Picco 1 - - - Peak 2 BW - LB Picco 2 - - - Peak 3 BW - LB Picco 3 - - - Peak 4 BW - LB Picco 4 - - - High Shelf res - Ris alte frequenze - - - LP res - Ris Passa Basso - - - HP freq - Freq Passa Alto - - - Low Shelf freq - Freq basse frequenze - - - Peak 1 freq - Frequenza picco 1 - - - Peak 2 freq - Frequenza picco 2 - - - Peak 3 freq - Frequenza picco 3 - - - Peak 4 freq - Frequenza picco 4 - - - High shelf freq - Freq alte frequenze - - - LP freq - Freq Passa Basso - - - HP active - Attiva Passa Alto - - - Low shelf active - Attiva basse frequenze - - - Peak 1 active - Attiva picco 1 - - - Peak 2 active - Attiva picco 2 - - - Peak 3 active - Attiva picco 3 - - - Peak 4 active - Attiva picco 4 - - - High shelf active - Attiva alte frequenze - - - LP active - Attiva Passa Basso - - - LP 12 - Passa Basso 12 dB - - - LP 24 - Passa Basso 24 dB - - - LP 48 - Passa Basso 48 dB - - - HP 12 - Passa Alto 12 dB - - - HP 24 - Passa Alto 24 dB - - - HP 48 - Passa Alto 48 dB - - - low pass type - Tipo di passa basso - - - high pass type - Tipo di passa alto - - - Analyse IN - Analizza Input - - - Analyse OUT - Analizza Output + + Scale Points + Punti di scala - EqControlsDialog + DriverSettingsW - HP - PA + + Driver Settings + Impostazioni driver - Low Shelf - Bassi + + Device: + Dispositivo: - Peak 1 - Picco 1 + + Buffer size: + Dimensione buffer: - Peak 2 - Picco 2 + + Sample rate: + Frequenza di campionamento: - Peak 3 - Picco 3 + + Triple buffer + Buffer triplo - Peak 4 - Picco 4 + + Show Driver Control Panel + Mostra pannello di controllo driver - High Shelf - Acuti - - - LP - PB - - - In Gain - Guadagno in input - - - Gain - Guadagno - - - Out Gain - Guadagno in output - - - Bandwidth: - Larghezza di banda: - - - Resonance : - Risonanza: - - - Frequency: - Frequenza: - - - lp grp - lp grp - - - hp grp - hp grp - - - Octave - Ottave - - - - EqHandle - - Reso: - Risonanza: - - - BW: - Largh: - - - Freq: - Freq: + + Restart the engine to load the new settings + Riavvia il motore per caricare le nuove impostazioni 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 - Could not open file - Non è stato possibile aprire il file + + Render Looped Section: + Rendering sezione ciclica: - Export project to %1 - Esporta il progetto in %1 + + time(s) + - Error - Errore + + File format settings + Impostazioni formato file - 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. + + File format: + Formato file: - Rendering: %1% - Renderizzazione: %1% + + Sampling rate: + Frequenza di campionamento: - 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! + + 44100 Hz + 44100 Hz - 24 Bit Integer + + 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 - Stereo mode: - + + Quality settings + Impostazioni qualità - Stereo - + + Interpolation: + Interpolazione: - Joint Stereo - + + Zero order hold + Basilare (Zero-order hold) - Mono - + + Sinc worst (fastest) + Sinc peggiore (veloce) - Compression level: - + + Sinc medium (recommended) + Sinc medio (suggerito) - (fastest) - + + Sinc best (slowest) + Sinc migliore (lento) - (default) - + + Start + Inizia - (smallest) - - - - - Expressive - - Selected graph - Grafico selezionato - - - A1 - - - - A2 - - - - A3 - - - - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - - - - - Fader - - Please enter a new value between %1 and %2: - Inserire un valore compreso tra %1 e %2: - - - - FileBrowser - - Browser - Browser - - - Search - - - - Refresh list - - - - - 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 - - - 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 - - - file - valido - - - - FlangerControls - - Delay Samples - Campioni di Delay - - - Lfo Frequency - Frequenza Lfo - - - Seconds - Secondi - - - Regen - Regen - - - Noise - Rumore - - - Invert - Inverti - - - - FlangerControlsDialog - - Delay Time: - Tempo di Ritardo: - - - Feedback Amount: - Quantità di Feedback: - - - White Noise Amount: - Quantità di Rumore Bianco: - - - DELAY - DELAY - - - RATE - RATE - - - AMNT - Q.TÀ - - - Amount: - Quantità: - - - FDBK - FDBK - - - NOISE - RUMORE - - - Invert - INVERTI - - - Period: - - - - - FxLine - - 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 - - - - FxMixer - - Master - Master - - - FX %1 - FX %1 - - - Volume - Volume - - - Mute - Muto - - - Solo - Solo - - - - FxMixerView - - FX-Mixer - Mixer FX - - - FX Fader %1 - Volume FX %1 - - - Mute - Muto - - - Mute this FX channel - Silenzia questo canale FX - - - Solo - Solo - - - Solo FX channel - Ascolta questo canale da solo - - - - FxRoute - - Amount to send from channel %1 to channel %2 - Quantità da mandare dal canale %1 al canale %2 - - - - GigInstrument - - Bank - Banco - - - Patch - Patch - - - Gain - Guadagno - - - - GigInstrumentView - - Open 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 - - - GIG Files (*.gig) - File GIG (*.gig) - - - - GuiApplication - - Working directory - Directory 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. - - - Preparing UI - Caricamento interfaccia - - - Preparing song editor - Caricamento Song Editor - - - Preparing mixer - Caricamento Mixer - - - Preparing controller rack - Caricamento rack di Controller - - - Preparing project notes - Caricamento note del progetto - - - Preparing beat/bassline editor - Caricamento beat e bassline editor - - - Preparing piano roll - Caricamento Piano Roll - - - Preparing automation editor - Caricamento Editor di Automazione - - - - InstrumentFunctionArpeggio - - Arpeggio - Arpeggio - - - Arpeggio type - Tipo di arpeggio - - - Arpeggio range - Ampiezza dell'arpeggio - - - Arpeggio time - Tempo dell'arpeggio - - - Arpeggio gate - Gate dell'arpeggio - - - Arpeggio direction - Direzione dell'arpeggio - - - Arpeggio mode - Modo dell'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 - - - Miss rate - Frequanza di Sbaglio - - - Cycle steps - Note ruotate - - - - 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 - - - Arpeggio range: - Ampiezza dell'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. - - - TIME - TEMPO - - - 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. - - - CYCLE - RUOTA - - - Cycle notes: - Note ruotate: - - - 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. + + Cancel + Annulla 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 - - 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: - - - - InstrumentMidiIOView - - ENABLE MIDI INPUT - ABILITA INGRESSO MIDI - - - CHANNEL - CANALE - - - VELOCITY - VALOCITY - - - ENABLE MIDI OUTPUT - ABILITA USCITA MIDI - - - PROGRAM - PROGRAMMA - - - 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% - - - BASE VELOCITY - VELOCITY BASE - - - - InstrumentMiscView - - MASTER PITCH - TRASPORTO - - - Enables the use of Master Pitch - Abilita l'uso del Trasporto - - 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 - - - HiPass - PassaAlto - - - BandPass csg - PassaBanda csg - - - BandPass czpg - PassaBanda czpg - - - Notch - Notch - - - Allpass - Passatutto - - - Moog - Moog - - - 2x LowPass - PassaBasso 2x - - - RC LowPass 12dB - RC PassaBasso 12dB - - - RC BandPass 12dB - RC PassaBanda 12dB - - - RC HighPass 12dB - RC PassaAlto 12dB - - - RC LowPass 24dB - RC PassaBasso 24dB - - - RC BandPass 24dB - RC PassaBanda 24dB - - - RC HighPass 24dB - RC PassaAlto 24dB - - - Vocal Formant Filter - Filtro a Formante di Voce - - - 2x Moog - 2x Moog - - - SV LowPass - PassaBasso SV - - - SV BandPass - PassaBanda SV - - - SV HighPass - PassaAlto SV - - - SV Notch - Notch SV - - - Fast Formant - Formante veloce - - - Tripole - Tre poli - - InstrumentSoundShapingView + JackAppDialog - TARGET - OBIETTIVO + + Add JACK Application + Aggiungi applicazione JACK - 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...! + + Note: Features not implemented yet are greyed out + Nota: le funzionalità non ancora implementate sono disattivate - FILTER - FILTRO + + Application + Applicazione - 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. + + Name: + Nome: - Hz - Hz + + Application: + Applicazione: - 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... + + From template + Dal modello - RESO - RISO + + Custom + Personalizza - Resonance: - Risonanza: + + Template: + Modello: - 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. + + Command: + Comando: - FREQ - FREQ - - - cutoff frequency: - Frequenza del cutoff: - - - Envelopes, LFOs and filters are not supported by the current instrument. - Gli inviluppi, gli LFO e i filtri non sono supportati dallo strumento corrente. - - - - InstrumentTrack - - unnamed_track - traccia_senza_nome - - - 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 - - - Pitch range - Estenzione dell'altezza - - - Master Pitch - Trasporto - - - - InstrumentTrackView - - Volume - Volume - - - Volume: - Volume: - - - VOL - VOL - - - Panning - Panning - - - Panning: - Panning: - - - PAN - PAN - - - MIDI - MIDI - - - Input - Ingresso - - - Output - Uscita - - - FX %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - GENERAL SETTINGS - IMPOSTAZIONI GENERALI - - - Instrument volume - Volume dello strumento - - - 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 - - - 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 + + Setup - Chord stacking & arpeggio + + Session Manager: - Effects + + None - MIDI settings - Impostazioni MIDI + + Audio inputs: + Audio ingresso: - Miscellaneous + + MIDI inputs: + MIDI ingresso: + + + + Audio outputs: + Audio uscita: + + + + MIDI outputs: + MIDI uscita: + + + + Take control of main application window + Prendi il controllo della principale finestra di 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 - Plugin + + Use previous client output buffer as input for the next client - - - Knob - Set linear - Modalità lineare + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + Simula 16 MIDI JACK uscite, con canale MIDI come indice di porta - Set logarithmic - Modalità logaritmica + + Error here + Errore qui - Please enter a new value between %1 and %2: - Inserire un valore compreso tra %1 e %2: + + NSM applications cannot use abstract or absolute paths + Le applicazioni NSM non possono usare percorsi astratti o assoluti - 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: + + 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 di Carla prima di poter utilizzare NSM - LadspaControl + JuceAboutW - Link channels - Abbina i canali + + This program uses JUCE version %1. + Questo programma utilizza la versione JUCE % 1. - LadspaControlDialog + MidiPatternW - Link Channels - Canali abbinati + + MIDI Pattern + Schema MIDI - Channel - Canale + + Time Signature: + Indicazione di tempo: - - - LadspaControlView - Link channels - Abbina i canali + + + + 1/4 + 1/4 - Value: - Valore: + + 2/4 + 2/4 - Sorry, no help available. - Spiacente, nessun aiuto disponibile. + + 3/4 + 3/4 - - - LadspaEffect - Unknown LADSPA plugin %1 requested. - Il plugin LADSPA %1 richiesto è sconosciuto. + + 4/4 + 4/4 - - - LcdSpinBox - Please enter a new value between %1 and %2: - Inserire un valore compreso tra %1 e %2: + + 5/4 + 5/4 - - - LeftRightNav - Previous - Precedente + + 6/4 + 6/4 - Next - Successivo + + Measures: + Misure: - Previous (%1) - Precedente (%1) + + + + 1 + 1 - Next (%1) - Successivo (%1) + + 2 + 2 - - - LfoController - LFO Controller - Controller dell'LFO + + 3 + 3 - Base value - Valore di base + + 4 + 4 - Oscillator speed - Velocità dell'oscillatore + + 5 + Quinta - Oscillator amount - Quantità di oscillatore + + 6 + 6 - Oscillator phase - Fase dell'oscillatore + + 7 + 7 - Oscillator waveform - Forma d'onda dell'oscillatore + + 8 + 8 - Frequency Multiplier - Moltiplicatore della frequenza + + 9 + 9 - - - LfoControllerDialog - LFO - LFO + + 10 + 10 - LFO Controller - Controller dell'LFO + + 11 + 11 - BASE - BASE + + 12 + 12 - Base amount: - Quantità di base: + + 13 + 13 - todo - da fare + + 14 + 14 - SPD - VEL + + 15 + 15 - LFO-speed: - Velocità dell'LFO: + + 16 + 16 - 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. + + Default Length: + Lunghezza predefinita: - Modulation amount: - Quantità di modulazione: + + + 1/16 + 1/16 - 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. + + + 1/15 + 1/15 - PHS - FASE + + + 1/12 + 1/12 - Phase offset: - Scostamento della fase: + + + 1/9 + 1/9 - degrees - gradi + + + 1/8 + 1/8 - 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. + + + 1/6 + 1/6 - Click here for a sine-wave. - Cliccando qui si ha un'onda sinusoidale. + + + 1/3 + 1/3 - Click here for a triangle-wave. - Cliccando qui si ottiene un'onda triangolare. + + + 1/2 + 1/2 - Click here for a saw-wave. - Cliccando qui si ottiene un'onda a dente di sega. - - - Click here for a square-wave. - Cliccando qui si ottiene un'onda quadra. - - - Click here for an exponential wave. - Cliccando qui si ha un'onda esponenziale. - - - Click here for white-noise. - Cliccando qui si ottiene rumore bianco. - - - Click here for a 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. - - - Click here for a moog saw-wave. - Clicca per usare un'onda Moog a banda limitata. - - - AMNT - Q.TÀ - - - - LmmsCore - - Generating wavetables - Generazione wavetable - - - 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 - - - - 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 + + Quantize: + Quantizzazione: + &File &File - &Recently Opened Projects - Progetti &Recenti + + &Edit + &Modifica - Save as New &Version - Salva come nuova &Versione + + &Quit + &Esci - E&xport Tracks... - E&sporta Tracce... + + Esc + Esc - Online Help - Aiuto Online + + &Insert Mode + &Modo Inserimento - What's This? - Cos'è questo? + + F + F - Open Project - Apri Progetto + + &Velocity Mode + &Modo Velocity - Save Project - Salva Progetto + + D + Re - Project recovery - Recupero del progetto + + Select All + Seleziona tutto - 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! - - - Export &MIDI... - Esporta &MIDI... - - - - MeterDialog - - Meter Numerator - Numeratore della misura - - - Meter Denominator - Denominatore della misura - - - TIME SIG - TEMPO - - - - MeterModel - - Numerator - Numeratore - - - Denominator - Denominatore - - - - MidiController - - MIDI Controller - Controller MIDI - - - unnamed_midi_controller - controller_midi_senza_nome - - - - 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 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. - - - Track - Traccia - - - - MidiJack - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - Il server JACK è down - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - Il server JACK sembra spento. - - - - 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 - - - Base velocity - Velocity base - - - - MidiSetupWidget - - DEVICE - PERIFERICA - - - - MonstroInstrument - - Osc 1 Volume - Osc 1 Volume - - - Osc 1 Panning - Osc 1 Bilanciamento - - - Osc 1 Coarse detune - Osc 1 Intonazione Grezza - - - Osc 1 Fine detune left - Osc 1 Intonazione precisa sinistra - - - Osc 1 Fine detune right - Osc 1 Intonazione precisa destra - - - Osc 1 Stereo phase offset - Osc 1 Spostamento di fase stereo - - - Osc 1 Pulse width - Osc 1 Profondità impulso - - - Osc 1 Sync send on rise - Osc 1 Manda sync in salita - - - Osc 1 Sync send on fall - Osc 1 Manda sync in discesa - - - Osc 2 Volume - Osc 2 Volume - - - Osc 2 Panning - Osc 2 Bilanciamento - - - Osc 2 Coarse detune - Osc 2 Intonazione Grezza - - - Osc 2 Fine detune left - Osc 2 Intonazione precisa sinistra - - - Osc 2 Fine detune right - Osc 2 Intonazione precisa destra - - - Osc 2 Stereo phase offset - Osc 2 Spostamento di fase stereo - - - Osc 2 Waveform - Osc 2 Forma d'onda - - - Osc 2 Sync Hard - Osc 2 Sync pesante - - - Osc 2 Sync Reverse - Osc 2 Sync inverso - - - Osc 3 Volume - Osc 3 Volume - - - Osc 3 Panning - Osc 3 Bilanciamento - - - Osc 3 Coarse detune - Osc 3 Intonazione Grezza - - - Osc 3 Stereo phase offset - Osc 3 Spostamento di fase stereo - - - Osc 3 Sub-oscillator mix - Osc 3 Miscela sub-oscillatori - - - Osc 3 Waveform 1 - Osc 3 Forma d'onda 1 - - - Osc 3 Waveform 2 - Osc 3 Forma d'onda 2 - - - Osc 3 Sync Hard - Osc 3 Sync pesante - - - Osc 3 Sync Reverse - Osc 3 Sync inverso - - - LFO 1 Waveform - LFO 1 Forma d'onda - - - LFO 1 Attack - LFO 1 Attacco - - - LFO 1 Rate - LFO 1 Rate - - - LFO 1 Phase - LFO 1 Fase - - - LFO 2 Waveform - LFO 2 Forma d'onda - - - LFO 2 Attack - LFO 2 Attacco - - - LFO 2 Rate - LFO 2 Rate - - - LFO 2 Phase - LFO 2 Fase - - - Env 1 Pre-delay - Env 1 Pre-ritardo - - - Env 1 Attack - Env 1 Attacco - - - Env 1 Hold - Env 1 Mantenimento - - - Env 1 Decay - Env 1 Decadimento - - - Env 1 Sustain - Env 1 Sostegno - - - Env 1 Release - Env 1 Rilascio - - - Env 1 Slope - Env 1 Inclinazione - - - Env 2 Pre-delay - Env 2 Pre-ritardo - - - Env 2 Attack - Env 2 Attacco - - - Env 2 Hold - Env 2 Mantenimento - - - Env 2 Decay - Env 2 Decadimento - - - Env 2 Sustain - Env 2 Sostegno - - - Env 2 Release - Env 2 Rilascio - - - Env 2 Slope - Env 2 Inclinazione - - - Osc2-3 modulation - Modulazione Osc2-3 - - - Selected view - Seleziona vista - - - Vol1-Env1 - Vol1-Inv1 - - - Vol1-Env2 - Vol1-Inv2 - - - Vol1-LFO1 - Vol1-LFO1 - - - Vol1-LFO2 - Vol1-LFO2 - - - Vol2-Env1 - Vol2-Inv1 - - - Vol2-Env2 - Vol2-Inv2 - - - Vol2-LFO1 - Vol2-LFO1 - - - Vol2-LFO2 - Vol2-LFO2 - - - Vol3-Env1 - Vol3-Inv1 - - - Vol3-Env2 - Vol3-Inv2 - - - Vol3-LFO1 - Vol3-LFO1 - - - Vol3-LFO2 - Vol3-LFO2 - - - Phs1-Env1 - Fas1-Inv1 - - - Phs1-Env2 - Fas1-Inv2 - - - Phs1-LFO1 - Fas1-LFO1 - - - Phs1-LFO2 - Fas1-LFO2 - - - Phs2-Env1 - Fas2-Inv1 - - - Phs2-Env2 - Fas2-Inv2 - - - Phs2-LFO1 - Fas2-LFO1 - - - Phs2-LFO2 - Fas2-LFO2 - - - Phs3-Env1 - Fas3-Inv1 - - - Phs3-Env2 - Fas3-Inv2 - - - Phs3-LFO1 - Fas3-LFO1 - - - Phs3-LFO2 - Fas3-LFO2 - - - Pit1-Env1 - Alt1-Inv1 - - - Pit1-Env2 - Alt1-Inv2 - - - Pit1-LFO1 - Alt1-LFO1 - - - Pit1-LFO2 - Alt1-LFO2 - - - Pit2-Env1 - Alt2-Inv1 - - - Pit2-Env2 - Alt2-Inv2 - - - Pit2-LFO1 - Alt2-LFO1 - - - Pit2-LFO2 - Alt2-LFO2 - - - Pit3-Env1 - Alt3-Inv1 - - - Pit3-Env2 - Alt3-Inv2 - - - Pit3-LFO1 - Alt3-LFO1 - - - Pit3-LFO2 - Alt3-LFO2 - - - PW1-Env1 - LI1-Inv1 - - - PW1-Env2 - LI1-Inv2 - - - PW1-LFO1 - LI1-LFO1 - - - PW1-LFO2 - LI1-LFO2 - - - Sub3-Env1 - Sub3-Inv1 - - - Sub3-Env2 - Sub3-Inv2 - - - Sub3-LFO1 - Sub3-LFO1 - - - Sub3-LFO2 - Sub3-LFO2 - - - Sine wave - Onda sinusoidale - - - Bandlimited Triangle wave - Onda triangolare limitata - - - Bandlimited Saw wave - Onda a dente di sega limitata - - - Bandlimited Ramp wave - Onda a rampa limitata - - - Bandlimited Square wave - Onda quadra limitata - - - Bandlimited Moog saw wave - Onda Moog limitata - - - Soft square wave - Onda quadra morbida - - - Absolute sine wave - Onda sinusoidale assoluta - - - Exponential wave - Onda esponenziale - - - White noise - Rumore bianco - - - Digital Triangle wave - Onda triangolare digitale - - - Digital Saw wave - Onda a dente di sega digitale - - - Digital Ramp wave - Onda a rampa digitale - - - Digital Square wave - Onda quadra digitale - - - Digital Moog saw wave - Onda Moog digitale - - - Triangle wave - Onda triangolare - - - Saw wave - Onda a dente di sega - - - Ramp wave - Onda a rampa - - - Square wave - Onda quadra - - - Moog saw wave - Onda Moog - - - Abs. sine wave - Sinusoide Ass. - - - Random - Casuale - - - Random smooth - Casuale morbida - - - - MonstroView - - Operators view - Vista operatori - - - 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 - Intonazione precisa sinistra - - - cents - centesimi - - - Finetune 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 - - - Modulation amount - Quantità di modulazione: - - - - MultitapEchoControlDialog - - Length - Lunghezza - - - Step length: - Durata degli step: - - - Dry - Dry - - - Dry Gain: - Guadagno senza effetto: - - - Stages - Fasi - - - Lowpass stages: - Fasi del Passa Basso: - - - Swap inputs - Scambia input - - - Swap left and right input channel for reflections - Scambia i canali destro e sinistro per le ripetizioni - - - - NesInstrument - - Channel 1 Coarse detune - Intonazione grezza Canale 1 - - - Channel 1 Volume - Volume Canale 1 - - - Channel 1 Envelope length - Lunghezza inviluppo Canale 1 - - - Channel 1 Duty cycle - Duty cycle del Canale 1 - - - Channel 1 Sweep amount - Quantità di sweep Canale 1 - - - Channel 1 Sweep rate - Velocità di sweep Canale 1 - - - Channel 2 Coarse detune - Intonazione grezza Canale 2 - - - Channel 2 Volume - Volume Canale 2 - - - Channel 2 Envelope length - Lunghezza inviluppo Canale 2 - - - Channel 2 Duty cycle - Duty cycle del Canale 2 - - - Channel 2 Sweep amount - Quantità di sweep Canale 2 - - - Channel 2 Sweep rate - Velocità di sweep Canale 2 - - - Channel 3 Coarse detune - Intonazione grezza Canale 3 - - - Channel 3 Volume - Volume Canale 3 - - - Channel 4 Volume - Volume Canale 4 - - - Channel 4 Envelope length - Lunghezza inviluppo Canale 4 - - - Channel 4 Noise frequency - Frequenza rumore Canale 4 - - - Channel 4 Noise frequency sweep - Frequenza rumore di sweep Canale 4 - - - Master volume - Volume principale - - - Vibrato - Vibrato - - - - NesInstrumentView - - Volume - Volume - - - Coarse detune - Intonazione grezza - - - Envelope length - Lunghezza inviluppo - - - Enable channel 1 - Abilita canale 1 - - - Enable envelope 1 - Abilita inviluppo 1 - - - Enable envelope 1 loop - Abilita ripetizione inviluppo 1 - - - Enable sweep 1 - Abilita glissando 1 - - - Sweep amount - Profondità glissando - - - Sweep rate - Durata glissando - - - 12.5% Duty cycle - 12.5% del periodo - - - 25% Duty cycle - 25% del periodo - - - 50% Duty cycle - 50% del periodo - - - 75% Duty cycle - 75% del periodo - - - Enable channel 2 - Abilita canale 2 - - - Enable envelope 2 - Abilita inviluppo 2 - - - Enable envelope 2 loop - Abilita ripetizione inviluppo 2 - - - Enable sweep 2 - Abilita glissando 2 - - - Enable channel 3 - Abilita canale 3 - - - Noise Frequency - Frequenza rumore - - - Frequency sweep - Glissando - - - Enable channel 4 - Abilita canale 4 - - - Enable envelope 4 - Abilita inviluppo 4 - - - Enable envelope 4 loop - Abilita ripetizione inviluppo 4 - - - Quantize noise frequency when using note frequency - Quantizza la frequenza del rumore, se relativa alla nota - - - Use note frequency for noise - La frequenza del rumore è relativa alla nota suonata - - - Noise mode - Modalità rumore - - - Master Volume - Volume Principale - - - Vibrato - Vibrato - - - - 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 + + A + La PatchesDialog + + Qsynth: Channel Preset Qsynth: Preset Canale + + Bank selector Selezione banco + + Bank Banco + + Program selector Selezione programma + + Patch Programma + + Name Nome + + OK OK + + Cancel Annulla - - PatmanView - - Open 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. - - - 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 - - Open in piano-roll - Apri nel piano-roll - - - Clear all notes - Cancella tutte le note - - - Reset name - Reimposta il nome - - - Change name - Cambia nome - - - Add steps - Aggiungi note - - - Remove steps - Elimina note - - - Clone Steps - Clona gli step - - - - PeakController - - Peak Controller - Controller dei picchi - - - Peak Controller Bug - Bug del controller dei picchi - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - A causa di un bug nelle versioni precedenti di LMMS, i controller dei picchi potrebbero non essere connessi come dovuto. Assicurati che i controller dei picchi siano connessi e salva questo file di nuovo. Ci scusiamo per gli inconvenienti causati. - - - - PeakControllerDialog - - PEAK - PICCO - - - LFO Controller - Controller dell'LFO - - - - PeakControllerEffectControlDialog - - BASE - BASE - - - Base amount: - Quantità di base: - - - Modulation amount: - Quantità di modulazione: - - - Attack: - Attacco: - - - Release: - Rilascio: - - - AMNT - Q.TÀ - - - MULT - MOLT - - - Amount Multiplicator: - Moltiplicatore di quantità: - - - ATCK - ATCC - - - DCAY - DCAD - - - Treshold: - Soglia: - - - TRSH - SCARTA - - - - 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 - - - - 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 - - - Select all notes on this key - Seleziona tutte le note in questo tasto - - - - PianoRollWindow - - Play/pause current pattern (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) - 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 - - - Copy paste controls - Controlli di copia-incolla - - - Timeline controls - Controlla griglia - - - Zoom and note controls - Controlli di zoom e note - - - Piano-Roll - %1 - Piano-Roll - %1 - - - Piano-Roll - no pattern - Piano-Roll - nessun pattern - - - Quantize - Quantizza - - - - PianoView - - Base note - Nota base - - - - Plugin - - Plugin not found - Plugin non trovato - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Il plugin "%1" non è stato trovato o non è stato possibile caricarlo! -Motivo: "%2" - - - Error while loading plugin - Errore nel caricamento del plugin - - - Failed to load plugin "%1"! - Non è stato possibile caricare il plugin "%1"! - - PluginBrowser - Instrument 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 - - - - 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! - - - - 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 - - - - - ProjectRenderer - - WAV-File (*.wav) - File WAV (*.wav) - - - Compressed OGG-File (*.ogg) - File in formato OGG compresso (*.ogg) - - - FLAC-File (*.flac) - - - - Compressed MP3-File (*.mp3) - - - - - QWidget - - Name: - Nome: - - - 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: - File: - - - File: %1 - File: %1 - - - - RenameDialog - - Rename... - Rinomina... - - - - ReverbSCControlDialog - - Input - Ingresso - - - Input Gain: - Guadagno in Input: - - - Size - Grandezza - - - Size: - Grandezza: - - - Color - Colore - - - Color: - Colore: - - - Output - Uscita - - - Output Gain: - Guadagno in Output: - - - - ReverbSCControls - - Input Gain - Guadagno input - - - Size - Grandezza - - - Color - Colore - - - Output Gain - Guadagno output - - - - 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 - - - Delete (middle mousebutton) - Elimina (tasto centrale del mouse) - - - Cut - Taglia - - - Copy - Copia - - - Paste - Incolla - - - Mute/unmute (<%1> + middle click) - Attiva/disattiva la modalità muta (<%1> + tasto centrale) - - - - SampleTrack - - Sample track - Traccia di campione - - - Volume - Volume - - - Panning - Bilanciamento - - - - SampleTrackView - - Track volume - Volume della traccia - - - Channel volume: - Volume del canale: - - - VOL - VOL - - - Panning - Bilanciamento - - - Panning: - Bilanciamento: - - - PAN - BIL - - - - SetupDialog - - Setup LMMS - Cofigura LMMS - - - General settings - Impostazioni generali - - - BUFFER SIZE - DIMENSIONE DEL BUFFER - - - Reset to default-value - Reimposta al valore predefinito - - - MISC - VARIE - - - Enable tooltips - Abilita i suggerimenti - - - Show restart warning after changing settings - Dopo aver modificato le impostazioni, mostra un avviso al riavvio - - - Compress project files per default - Per impostazione predefinita, comprimi i file di progetto - - - One instrument track window mode - Mostra un solo strumento per volta - - - HQ-mode for output audio-device - Modalità alta qualità per l'uscita audio - - - Compact track buttons - Pulsanti della traccia compatti - - - 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 - - - LANGUAGE - LINGUA - - - Paths - Percorsi - - - LMMS working directory - Directory di lavoro di LMMS - - - VST-plugin directory - Directory dei plugin VST - - - Background artwork - Grafica dello sfondo - - - STK rawwave directory - Directory per i file rawwave STK - - - Default Soundfont File - File SoundFont predefinito - - - Performance settings - Impostazioni prestazioni - - - UI effects vs. performance - Effetti UI (interfaccia grafica) vs. prestazioni - - - Smooth scroll in Song Editor - Scorrimento morbido nel Song-Editor - - - Show playback cursor in AudioFileProcessor - Mostra il cursore di riproduzione dentro AudioFileProcessor - - - Audio settings - Impostazioni audio - - - AUDIO INTERFACE - INTERFACCIA AUDIO - - - MIDI settings - Impostazioni MIDI - - - MIDI INTERFACE - INTERFACCIA MIDI - - - 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 - - - Auto-save interval: %1 - Intervallo di salvataggio automatico: %1 - - - 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. - - - - Song - - Tempo - Tempo - - - Master volume - Volume principale - - - Master pitch - Altezza principale - - - 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 - - - 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) - - - LMMS Error report - Informazioni sull'errore di LMMS - - - Save project - Salva progetto - - - - 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. - - - 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. - - - - 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 - - - Edit actions - Modalità di modifica - - - Timeline controls - Controlla griglia - - - Zoom controls - Opzioni di zoom - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - Spettro lineare - - - Linear Y axis - Asse Y lineare - - - - SpectrumAnalyzerControls - - Linear spectrum - Spettro lineare - - - Linear Y axis - Asse Y lineare - - - Channel mode - Modalità del canale - - - - SubWindow - - Close - Chiudi - - - Maximize - Massimizza - - - Restore - Apri - - - - TabWidget - - Settings for %1 - Impostazioni per %1 - - - - 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 - - - - TimeDisplayWidget - - click to change time units - Clicca per cambiare l'unità di tempo visualizzata - - - MIN - MIN - - - SEC - SEC - - - MSEC - MSEC - - - BAR - BAR - - - BEAT - BATT - - - TICK - TICK - - - - TimeLineWidget - - Enable/disable auto-scrolling - Abilita/disabilita lo scorrimento automatico - - - Enable/disable loop-points - Abilita/disabilita i punti di ripetizione - - - After stopping go back to begin - Una volta fermata la riproduzione, torna all'inizio - - - 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 - - - - 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... - - - Importing MIDI-file... - Importazione del file MIDI... - - - Loading Track %1 (%2/Total %3) - - - - - TrackContentObject - - Mute - Muto - - - - TrackContentObjectView - - 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) - - - Delete (middle mousebutton) - Elimina (tasto centrale del mouse) - - - Cut - Taglia - - - Copy - Copia - - - Paste - Incolla - - - Mute/unmute (<%1> + middle click) - Attiva/disattiva la modalità muta (<%1> + tasto centrale) - - - - 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. - - - Actions for this track - Azioni per questa traccia - - - Mute - Muto - - - Solo - Solo - - - Mute this track - Silezia questa traccia - - - Clone this track - Clona questa traccia - - - Remove this track - Elimina questa traccia - - - Clear this track - Pulisci questa traccia - - - FX %1: %2 - FX %1: %2 - - - 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 - - - - 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 - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Usare la modulazione di amplificazione per modulare l'oscillatore 2 con l'oscillatore 1 - - - Mix output of oscillator 1 & 2 - Miscelare gli 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 - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Usare la modulazione di fase per modulare l'oscillatore 3 con l'oscillatore 2 - - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Usare la modulazione di amplificazione per modulare l'oscillatore 3 con l'oscillatore 2 - - - Mix output of oscillator 2 & 3 - Miscelare gli 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 - - - 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. - - - 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 a moog-like saw-wave for current oscillator. - Utilizzare un'onda di tipo moog per questo oscillatore. - - - Use an exponential wave for current oscillator. - Utilizzare un'onda esponenziale 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. - - - - VersionedSaveDialog - - Increment version number - Nuova versione - - - Decrement version number - Riduci numero versione - - - already exists. Do you want to replace it? - Esiste già. Vuoi sovrascriverlo? - - - - VestigeInstrumentView - - Open other VST-plugin - Apri un altro 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. - Clicca qui per aprire un altro plugin VST. Una volta cliccato questo pulsante, si aprirà una finestra di dialogo dove potrai selezionare il file. - - - 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). - - - 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. - - - 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 - - - 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). - - - 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 /> - - - - VstPlugin - - Loading plugin - Caricamento plugin - - - 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... - - - The VST plugin %1 could not be loaded. - Non è stato possibile caricare il plugin VST %1. - - - - WatsynInstrument - - Volume A1 - Volume A1 - - - Volume A2 - Volume A2 - - - Volume B1 - Volume B1 - - - Volume B2 - Volume B2 - - - Panning A1 - Bilanciamento A1 - - - Panning A2 - Bilanciamento A2 - - - Panning B1 - Bilanciamento B1 - - - Panning B2 - Bilanciamento B2 - - - Freq. multiplier A1 - Moltiplicatore di freq. A1 - - - Freq. multiplier A2 - Moltiplicatore di freq. A2 - - - Freq. multiplier B1 - Moltiplicatore di freq. B1 - - - Freq. multiplier B2 - Moltiplicatore di freq. B2 - - - Left detune A1 - Intonazione Sinistra A1 - - - Left detune A2 - Intonazione Sinistra A2 - - - Left detune B1 - Intonazione Sinistra B1 - - - Left detune B2 - Intonazione Sinistra B2 - - - Right detune A1 - Intonazione Destra A1 - - - Right detune A2 - Intonazione Destra A2 - - - Right detune B1 - Intonazione Destra B1 - - - Right detune B2 - Intonazione Destra B2 - - - A-B Mix - Mix A-B - - - A-B Mix envelope amount - Quantità di inviluppo Mix A-B - - - A-B Mix envelope attack - Attacco inviluppo Mix A-B - - - A-B Mix envelope hold - Mantenimento inviluppo Mix A-B - - - A-B Mix envelope decay - Decadimento inviluppo Mix A-B - - - A1-B2 Crosstalk - Scambio A1-B2 - - - A2-A1 modulation - Modulazione A2-A1 - - - B2-B1 modulation - Modulazione B2-B1 - - - Selected graph - Grafico selezionato - - - - WatsynView - - 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 - - - - ZynAddSubFxInstrument - - Portamento - Portamento - - - Filter Frequency - Frequenza del filtro - - - Filter Resonance - Risonanza del filtro - - - Bandwidth - Larghezza di Banda - - - FM Gain - Guadagno FM - - - Resonance Center Frequency - Frequenza Centrale di Risonanza - - - Resonance Bandwidth - Bandwidth di Risonanza - - - Forward MIDI Control Change Events - Inoltra segnali dai controlli 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: - - - FREQ - FREQ - - - Filter Resonance: - Risonanza del Filtro: - - - RES - RIS - - - Bandwidth: - Larghezza di banda: - - - BW - Largh: - - - FM Gain: - Guadagno FM: - - - FM GAIN - GUAD FM - - - Resonance center frequency: - Frequenza Centrale di Risonanza: - - - RES CF - FC RIS - - - Resonance bandwidth: - Bandwidth della Risonanza: - - - RES BW - BW RIS - - - Forward MIDI Control Changes - Inoltra cambiamenti dai controlli MIDI - - - - 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 - - - Loop mode - Modalità ripetizione - - - Interpolation mode - Modalità Interpolazione - - - None - Nessuna - - - Linear - Lineare - - - Sinc - Sincronizzata - - - Sample not found: %1 - Campione non trovato: %1 - - - - bitInvader - - Samplelength - LunghezzaCampione - - - - 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 - - - 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. - - - Click here for a triangle-wave. - Cliccando qui si ottiene un'onda triangolare. - - - Click here for a saw-wave. - Cliccando qui si ottiene un'onda a dente di sega. - - - Click here for a square-wave. - Cliccando qui si ottiene un'onda quadra. - - - Click here for white-noise. - Cliccando qui si ottiene rumore bianco. - - - Click here for a user-defined shape. - Cliccando qui è possibile definire una forma d'onda personalizzata. - - - - 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 - - - Click here to reset the wavegraph back to default - Clicca per riportare la forma d'onda allo stato originale - - - Smooth waveform - Ammorbidisci forma d'onda - - - Click here to apply smoothing to wavegraph - Clicca per ammorbidire la forma d'onda - - - 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 - - - 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 - - - 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 - - - Process each stereo channel independently - L'effetto tratta i due canali stereo indipendentemente - - - - 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 - - Start frequency - Frequenza iniziale - - - End frequency - Frequenza finale - - - Gain - Guadagno - - - Length - Lunghezza - - - Distortion Start - Distorsione iniziale - - - Distortion End - Distorsione finale - - - Envelope Slope - Inclinazione Inviluppo - - - Noise - Rumore - - - Click - Click - - - Frequency Slope - Inclinazione Frequenza - - - Start from note - Inizia dalla nota - - - End to note - Finisci sulla nota - - - - kickerInstrumentView - - Start frequency: - Frequenza iniziale: - - - End frequency: - Frequenza finale: - - - Gain: - Guadagno: - - - Frequency Slope: - Inclinazione Frequenza: - - - Envelope Length: - Lunghezza Inviluppo: - - - Envelope Slope: - Inclinazione Inviluppo: - - - Click: - Click: - - - Noise: - Rumore: - - - Distortion Start: - Distorsione iniziale: - - - Distortion End: - Distorsione finale: - - - - 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 - - Plugins - Plugin - - - Description - Descrizione - - - - ladspaPortDialog - - Ports - Porte - - - Name - Nome - - - Rate - Frequenza - - - Direction - Direzione - - - Type - Tipo - - - Min < Default < Max - Minimo < Predefinito < Massimo - - - Logarithmic - Logaritmico - - - SR Dependent - Dipendente da SR - - - Audio - Audio - - - Control - Controllo - - - Input - Ingresso - - - Output - Uscita - - - Toggled - Abilitato - - - Integer - Intero - - - Float - Virgola mobile - - - Yes - - - - - lb302Synth - - VCF Cutoff Frequency - VCF - frequenza di taglio - - - VCF Resonance - VCF - Risonanza - - - VCF Envelope Mod - VCF - modulazione dell'envelope - - - VCF Envelope Decay - VCF - decadimento dell'envelope - - - Distortion - Distorsione - - - Waveform - Forma d'onda - - - Slide Decay - Decadimento slide - - - Slide - Slide - - - Accent - Accento - - - Dead - Dead - - - 24dB/oct Filter - Filtro 24dB/ottava - - - - 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 - - Hardness - Durezza - - - Position - Posizione - - - Vibrato Gain - Guadagno del vibrato - - - Vibrato Freq - Fequenza del vibrato - - - Stick Mix - Stick Mix - - - Modulator - Modulatore - - - Crossfade - Crossfade - - - LFO Speed - Velocità dell'LFO - - - LFO Depth - Profondità dell'LFO - - - ADSR - ADSR - - - Pressure - Pressione - - - Motion - Moto - - - Speed - Velocità - - - Bowed - Bowed - - - Spread - Apertura - - - Marimba - Marimba - - - Vibraphone - Vibraphone - - - Agogo - Agogo - - - Wood1 - Legno1 - - - Reso - Reso - - - Wood2 - Legno2 - - - Beats - Beats - - - Two Fixed - Two Fixed - - - Clump - Clump - - - Tubular Bells - Tubular Bells - - - Uniform Bar - Uniform Bar - - - Tuned Bar - Tuned Bar - - - Glass - Glass - - - Tibetan Bowl - Tibetan Bowl - - - - 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! - - - - 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. - - - 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 - - - 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 - - Distortion - Distorsione - - - Volume - Volume - - - - 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 - - - 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 - - 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 + + A native amplifier plugin + Un plugin di amplificazione nativo - Plugin for freely manipulating stereo output - Plugin per manipolare liberamente un'uscita stereo + + 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 controlling knobs with sound peaks - Plugin per controllare le manopole con picchi di suono + + Boost your bass the fast and simple way + Potenzia il tuo basso in modo veloce e semplice - Plugin for enhancing stereo separation of a stereo input file - Plugin per migliorare la separazione stereo di un file + + 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 - 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. + + Incomplete monophonic imitation TB-303 + + + + + plugin for using arbitrary LV2-effects inside LMMS. + Plugin per usare qualsiasi effetto LV2 in LMMS. + + + + plugin for using arbitrary LV2 instruments inside LMMS. + Plugin per usare qualsiasi strumento LV2 in LMMS. + + + + Filter for exporting MIDI-files from LMMS + Filtro per esportare file MIDI da LMMS + + + Filter for importing MIDI-files into LMMS Filtro per importare file MIDI in LMMS + + Monstrous 3-oscillator synth with modulation matrix + Sintetizzatore mostruoso con 3 oscillatori e matrice di modulazione + + + + A multitap echo delay plugin + Un plugin di ritardo eco multitap + + + + A NES-like synthesizer + Un sintetizzatore che imita i suoni del Nintendo Entertainment System + + + + 2-operator FM Synth + Sintetizzatore FM a 2 operatori + + + + Additive Synthesizer for organ-like sounds + Sintetizzatore additivo per suoni tipo organo + + + + GUS-compatible patch instrument + strumento compatibile con GUS + + + + Plugin for controlling knobs with sound peaks + Plugin per controllare le manopole con picchi di suono + + + + Reverb algorithm by Sean Costello + Algoritmo di Riverbero di Sean Costello + + + + Player for SoundFont files + Riproduttore di file SounFont + + + + LMMS port of sfxr + Port di sfxr su LMMS + + + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulazione di MOS6581 and MOS8580 SID. Questo chip era utilizzato nel Commode 64. - Player for SoundFont files - Riproduttore di file SounFont + + A graphical spectrum analyzer. + Un analizzatore di spettro grafico. - Emulation of GameBoy (TM) APU - Emulatore di GameBoy™ APU + + Plugin for enhancing stereo separation of a stereo input file + Plugin per migliorare la separazione stereo di un file - Customizable wavetable synthesizer - Sintetizzatore wavetable configurabile + + Plugin for freely manipulating stereo output + Plugin per manipolare liberamente un'uscita stereo - 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 + + 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 native amplifier plugin - Un plugin di amplificazione nativo + + A stereo field visualizer. + Un visualizzatore del campo stereo. - Carla Rack Instrument - Strutmento Rack Carla + + 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 qualsiasi effetto VST in LMMS. + + + 4-oscillator modulatable wavetable synth Sintetizzatore wavetable con 4 oscillatori modulabili + plugin for waveshaping Plugin per la modifica della forma d'onda - 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 + Analisi sintattica dell'espressione + + + + Embedded ZynAddSubFX + ZynAddSubFX incorporato + + + + An all-pass filter allowing for extremely high orders. - - - sf2Instrument - Bank - Banco + + Granular pitch shifter + Pitch shifter granulare - Patch - Patch + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + - Gain - Guadagno + + Basic Slicer + Basic Slicer - Reverb - Riverbero - - - Reverb Roomsize - Riverbero - dimensione stanza - - - Reverb Damping - Riverbero - attenuazione - - - Reverb Width - Riverbero - ampiezza - - - Reverb Level - Riverbero - livello - - - Chorus - Chorus - - - Chorus Lines - Chorus - voci - - - Chorus Level - Chorus - livello - - - Chorus Speed - Chorus - velocità - - - Chorus Depth - Chorus - profondità - - - A soundfont %1 could not be loaded. - Non è stato possibile caricare un soundfont %1. + + Tap to the beat + Tocca a ritmo - sf2InstrumentView + PluginEdit - Open other SoundFont file - Apri un altro file SoundFont + + Plugin Editor + Editor plugin - Click here to open another SF2 file - Clicca qui per aprire un altro file SF2 + + Edit + Modifica - Choose the patch - Seleziona il patch + + Control + Controllo - Gain - Guadagno + + MIDI Control Channel: + Canale controllo MIDI: - Apply reverb (if supported) - Applica il riverbero (se supportato) + + N + N - 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. + + Output dry/wet (100%) + Uscita dry/wet (100%) - Reverb Roomsize: - Riverbero - dimensione stanza: + + Output volume (100%) + Volume di uscita (100%) - Reverb Damping: - Riverbero - attenuazione: + + Balance Left (0%) + Bilanciamento a sinistra (0%) - Reverb Width: - Riverbero - ampiezza: + + + Balance Right (0%) + Bilanciamento destro (0%) - Reverb Level: - Riverbero - livello: + + Use Balance + Usa bilanciamento - Apply chorus (if supported) - Applica il chorus (se supportato) + + Use Panning + Usa panoramica - 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. + + Settings + Impostazioni - Chorus Lines: - Chorus - voci: + + Use Chunks + Usa blocchi - Chorus Level: - Chorus - livello: + + Audio: + Audio: - Chorus Speed: - Chorus - velocità: + + Fixed-Size Buffer + Buffer dimensione-fissa - Chorus Depth: - Chorus - profondità: + + Force Stereo (needs reload) + Forza Stereo (deve essere ricaricato) - Open SoundFont file - Apri un file SoundFont + + MIDI: + MIDI: - SoundFont2 Files (*.sf2) - File SoundFont2 (*.sf2) + + Map Program Changes + Mappa modifiche programma + + + + Send Notes + Invia Note + + + + Send Bank/Program Changes + Invia banco/Modifiche programma + + + + Send Control Changes + Invia modifiche al controllo + + + + Send Channel Pressure + Invia pressione canale + + + + Send Note Aftertouch + Invia nota Aftertouch + + + + Send Pitchbend + Invia Pitchbend + + + + Send All Sound/Notes Off + Invia tutti i suoni/Note disattivate + + + + +Plugin Name + + +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: - sfxrInstrument + PluginFactory - Wave Form - Forma d'onda + + 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! - sidInstrument + PluginListDialog - Cutoff - Taglio + + Carla - Add New + Carla - Aggiungi nuovo - Resonance - Risonanza + + Requirements + Requisiti - Filter type - Tipo di filtro + + With Custom GUI + Con GUI personalizzata - Voice 3 off - Voce 3 spenta + + With CV Ports + Con CV Porte + + Real-time safe only + Solo in tempo reale sicuro + + + + Stereo only + Solo Stereo + + + + With Inline Display + Con Display Inline + + + + Favorites only + Solo Preferiti + + + + (Number of Plugins go here) + (Numero di Plugin va qui) + + + + &Add Plugin + &Aggiungi Plugin + + + + Cancel + Cancella + + + + Refresh + Aggiorna + + + + Reset filters + Ripristina i filtri + + + + + + + + + + + + + + + + + + + TextLabel + Etichetta di testo + + + + Format: + Formato: + + + + Architecture: + Architettura: + + + + Type: + Tipo: + + + + MIDI Ins: + MIDI ingresso: + + + + Audio Ins: + Audio ingresso: + + + + CV Outs: + CV uscita: + + + + MIDI Outs: + MIDI uscita: + + + + Parameter Ins: + Parametri ingresso: + + + + Parameter Outs: + Parametri uscita: + + + + Audio Outs: + Audio uscita: + + + + CV Ins: + CV ingresso: + + + + UniqueID: + ID univoco: + + + + Has Inline Display: + Ha Display Inline: + + + + Has Custom GUI: + Ha GUI personalizzata: + + + + Is Synth: + E' Synth: + + + + Is Bridged: + E' Bridged: + + + + Information + Informazioni + + + + Name + Nome + + + + Label/Id/URI + Etichetta/Id/URI + + + + Maker + Creatore + + + + Binary/Filename + Binario/Nome di file + + + + Format + Formato + + + + Internal + Interno + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + CLAP + CLAP + + + + AU + AU + + + + JSFX + JSFX + + + + Sound Kits + Sound Kits + + + + Type + Tipo + + + + Effects + Effetti + + + + Instruments + Strumenti + + + + MIDI Plugins + MIDI Plugins + + + + Other/Misc + Altro/Misc + + + + Category + Categoria + + + + All + Tutto + + + + Delay + Delay + + + + Distortion + Distorsione + + + + Dynamics + Dinamica + + + + EQ + EQ + + + + Filter + Filtro + + + + Modulator + Modulatore + + + + Synth + Synth + + + + Utility + Utilità + + + + + Other + Altro + + + + Architecture + Architettura + + + + + Native + Nativo + + + + Bridged + Bridged + + + + Bridged (Wine) + Bridged (Wine) + + + + Focus Text Search + Focalizza la ricerca testuale + + + + Ctrl+F + Ctrl+F + + + + Bridged (32bit) + Bridged (32bit) + + + + Discovering internal plugins... + Scoprendo plugin interni... + + + + Discovering LADSPA plugins... + Scoprendo LADSPA plugin... + + + + Discovering DSSI plugins... + Scoprendo DSSI plugin... + + + + Discovering LV2 plugins... + Scoprendo LV2 plugin... + + + + Discovering VST2 plugins... + Scoprendo VST2 plugin... + + + + Discovering VST3 plugins... + Scoprendo VST3 plugin... + + + + Discovering CLAP plugins... + Scoprendo CLAP plugin... + + + + Discovering AU plugins... + Scoprendo AU plugin... + + + + Discovering JSFX plugins... + Scoprendo JSFX plugin... + + + + Discovering SF2 kits... + Scoprendo SF2 kits... + + + + Discovering SFZ kits... + Scoprendo SFZ kits... + + + + Unknown + Sconosciuto + + + + + + + Yes + + + + + + + + No + No + + + + PluginParameter + + + Form + Modulo + + + + Parameter Name + Nome parametro + + + + TextLabel + Etichetta di testo + + + + ... + ... + + + + PluginRefreshDialog + + + Plugin Refresh + Aggiornamento del plugin + + + + Search for: + Cerca: + + + + All plugins, ignoring cache + Tutti i plugin, ignorando cache + + + + Updated plugins only + Solo plugin aggiornati + + + + Check previously invalid plugins + Controlla i plugin precedentemente non validi + + + + Press 'Scan' to begin the search + Premi 'Scansione' per iniziare la ricerca + + + + Scan + Scansione + + + + >> Skip + >> Salta + + + + Close + Chiudi + + + + PluginWidget + + + + + + + Frame + Frame + + + + Enable + Abilita + + + + On/Off + On/Off + + + + + + + PluginName + Nome del plugin + + + + MIDI + MIDI + + + + AUDIO IN + INGRESSO AUDIO + + + + AUDIO OUT + USCITA AUDIO + + + + GUI + GUI + + + + Edit + Modifica + + + + Remove + Rimuovi + + + + Plugin Name + Nome Plugin + + + + Preset: + Preselezione: + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + Impostazioni per %1 + + + + QObject + + + Reload Plugin + Ricarica Plugin + + + + Show GUI + Mostra GUI + + + + Help + Aiuto + + + + LADSPA plugins + LADSPA plugins + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + Il progetto contiene %1 LADSPA plugin che potrebbero non essere stati ripristinati correttamente! Si prega di controllare il progetto. + + + + URI: + URI: + + + + Project: + Progetto: + + + + Maker: + Creatore: + + + + Homepage: + Pagina iniziale: + + + + License: + Licenza: + + + + File: %1 + File: %1 + + + + failed to load description + Impossibile caricare la descrizione + + + + Open audio file + Apri audio file + + + + Error loading sample + Errore di caricamento del sample + + + + %1 (unsupported) + %1 (non supportato) + + + + QWidget + + + + Name: + Nome: + + + + 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: + + + + XYControllerW + + + XY Controller + XY Controller + + + + X Controls: + X Controlli: + + + + Y Controls: + Y Controlli: + + + + Smooth + Ammorbidire + + + + &Settings + &Impostazioni + + + + Channels + Canali + + + + &File + &File + + + + Show MIDI &Keyboard + Mostra MIDI &Tastiera + + + + (All) + (Tutto) + + + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + 8 + + + + 9 + 9 + + + + 10 + 10 + + + + 11 + 11 + + + + 12 + 12 + + + + 13 + 13 + + + + 14 + 14 + + + + 15 + 15 + + + + 16 + 16 + + + + &Quit + &Esci + + + + Esc + Esc + + + + (None) + (Nessuno) + + + + lmms::AmplifierControls + + Volume Volume - Chip model - Modello di chip + + Panning + Panning + + + + Left gain + Gain a sinistra + + + + Right gain + Gain a destra - sidInstrumentView + lmms::AudioFileProcessor - Volume: - Volume: + + Amplify + Amplificare - Resonance: - Risonanza: + + Start of sample + Inizio del sample - Cutoff frequency: - Frequenza di taglio: + + End of sample + Fine del sample - High-Pass filter - Filtro passa-alto + + Loopback point + Punto di loopback - Band-Pass filter - Filtro passa-banda + + Reverse sample + Reverse sample - Low-Pass filter - Filtro passa-basso + + Loop mode + Modalità loop - Voice3 Off - Voce 3 spenta + + Stutter + Stutter - MOS6581 SID - MOS6581 SID + + Interpolation mode + Modalità di interpolazione - MOS8580 SID - MOS8580 SID + + None + - Attack: - Attacco: + + Linear + Lineare - 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. + + Sinc + - 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. + + Sample not found + Sample non trovato - stereoEnhancerControlDialog + lmms::AudioJack - WIDE - AMPIO + + JACK client restarted + - Width: - Ampiezza: + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + Nome di client + + + + Channels + Canali - stereoEnhancerControls + lmms::AudioOss - Width - Ampiezza + + Device + Dispositivo + + + + Channels + Canali - stereoMatrixControlDialog + lmms::AudioPortAudio::setupWidget - Left to Left Vol: - Volume da Sinistra a Sinistra: + + Backend + Backend - 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: + + Device + Dispositivo - stereoMatrixControls + lmms::AudioPulseAudio - Left to Left - Da Sinistra a Sinistra + + Device + Dispositivo - Left to Right - Da Sinistra a Destra - - - Right to Left - Da Destra a Sinistra - - - Right to Right - Da Destra a Destra + + Channels + Canali - vestigeInstrument + lmms::AudioSdl::setupWidget - Loading plugin - Caricamento plugin + + Playback device + Dispositivo di riproduzione - Please wait while loading VST-plugin... - Prego attendere, caricamento del plugin VST... + + Input device + Dispositivo di input - vibed + lmms::AudioSndio - String %1 volume - Volume della corda %1 + + Device + Dispositivo - 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 - - - Detune %1 - Intonazione %1 - - - Fuzziness %1 - Fuzziness %1 - - - Length %1 - Lunghezza %1 - - - Impulse %1 - Impulso %1 - - - Octave %1 - Ottava %1 + + Channels + Canali - vibedView + lmms::AudioSoundIo::setupWidget - Volume: - Volume: + + Backend + Backend - The 'V' knob sets the volume of the selected string. - La manopola 'V' regola il volume della corda selezionata. + + Device + Dispositivo + + + + lmms::AutomatableModel + + + &Reset (%1%2) + &Ripristina (%1%2) - String stiffness: - Durezza della corda: + + &Copy value (%1%2) + &Copia valore (%1%2) - 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. + + &Paste value (%1%2) + &Incolla valore (%1%2) - Pick position: - Posizione del plettro: + + &Paste value + &Incolla valore - 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. + + Edit song-global automation + Modifica automazione globale della canzone - Pickup position: - Posizione del pickup: + + Remove song-global automation + Rimuovi automazione globale della canzone - 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. + + Remove all linked controls + Rimuovi tutti i controlli collegati - Pan: - Pan: + + Connected to %1 + Connesso a %1 - 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. + + Connected to controller + Connesso al controller - Detune: - Intonazione: + + Edit connection... + Modifica connessione... - 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. + + Remove connection + Rimuovi connessione - Fuzziness: - Fuzziness: + + Connect to controller... + Connesso al controller... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + Trascina un controllo tenendo premuto <%1> + + + + lmms::AutomationTrack + + + Automation track + Traccia di automazione + + + + lmms::BassBoosterControls + + + Frequency + Frequency - 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". + + Gain + Gain - Length: - Lunghezza: + + Ratio + Ratio + + + + lmms::BitInvader + + + Sample length + Lunghezza del sample - 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. - - - 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. - - - 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 - 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 - - 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. - - 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 - - INPUT - INPUT - - - Input gain: - Guadagno in Input: - - - OUTPUT - OUTPUT - - - Output gain: - Guadagno in output: - - - Reset waveform - Resetta forma d'onda - - - Click here to reset the wavegraph back to default - Clicca qui per resettare il grafico d'onda alla condizione originale - - - Smooth waveform - Spiana forma d'onda - - - 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 - - - Clip input - Taglia input - - - Clip input signal to 0dB - Taglia in segnale di input a 0dB - - - - waveShaperControls + lmms::BitcrushControls + Input gain - Guadagno in input + Input gain + + Input noise + Input rumore + + + Output gain - Guadagno in output + Output gain + + + + Output clip + Output clip + + + + Sample rate + Frequenza di campionamento + + + + Stereo difference + Differenza di stereo + + + + Levels + Livelli + + + + Rate enabled + Frequenza abilitata + + + + Depth enabled + Profondità abilitata + + + + lmms::Clip + + + Mute + Muto + + + + lmms::CompressorControls + + + Threshold + Threshold + + + + Ratio + Ratio + + + + Attack + Attack + + + + Release + Release + + + + Knee + Knee + + + + Hold + Hold + + + + Range + Range + + + + RMS Size + RMS Size + + + + Mid/Side + Mid/Side + + + + Peak Mode + Peak Mode + + + + Lookahead Length + Lunghezza di lookahead + + + + Input Balance + Input bilanciamento + + + + Output Balance + Output bilanciamento + + + + Limiter + Limiter + + + + Output Gain + Output Gain + + + + Input Gain + Input Gain + + + + Blend + Blend + + + + Stereo Balance + Stereo bilanciamento + + + + Auto Makeup Gain + Auto Makeup Gain + + + + Audition + Audition + + + + Feedback + Feedback + + + + Auto Attack + Auto Attack + + + + Auto Release + Auto Release + + + + Lookahead + Lookahead + + + + Tilt + Tilt + + + + Tilt Frequency + Tilt Frequenza + + + + Stereo Link + Stereo Link + + + + Mix + Mix + + + + lmms::Controller + + + Controller %1 + Controller %1 + + + + lmms::DelayControls + + + Delay samples + Delay samples + + + + Feedback + Feedback + + + + LFO frequency + LFO frequenza + + + + LFO amount + LFO quantità + + + + Output gain + Output gain + + + + lmms::DispersionControls + + + Amount + Quantità + + + + Frequency + Frequenza + + + + Resonance + Risonanza + + + + Feedback + Feedback + + + + DC Offset Removal + Rimozione di DC Offset + + + + lmms::DualFilterControls + + + Filter 1 enabled + Filtro 1 abilitato + + + + Filter 1 type + Filtro 1 tipo + + + + Cutoff frequency 1 + Frequenza di cutoff 1 + + + + Q/Resonance 1 + Q/Risonanza 1 + + + + Gain 1 + Gain 1 + + + + Mix + Mix + + + + Filter 2 enabled + Filtro 2 abilitato + + + + Filter 2 type + Filtro 2 tipo + + + + Cutoff frequency 2 + Frequenza di cutoff 2 + + + + Q/Resonance 2 + Q/Risonanza 2 + + + + Gain 2 + Gain 2 + + + + + Low-pass + Low-pass + + + + + Hi-pass + Hi-pass + + + + + Band-pass csg + Band-pass csg + + + + + Band-pass czpg + Band-pass czpg + + + + + Notch + Notch + + + + + All-pass + All-pass + + + + + Moog + Moog + + + + + 2x Low-pass + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + RC High-pass 24 dB/oct + + + + + Vocal Formant + Formante della voce + + + + + 2x Moog + 2x Moog + + + + + SV Low-pass + SV Low-pass + + + + + SV Band-pass + SV Band-pass + + + + + SV High-pass + SV High-pass + + + + + SV Notch + SV Notch + + + + + Fast Formant + Formante veloce + + + + + Tripole + Tripole + + + + lmms::DynProcControls + + + Input gain + Input gain + + + + Output gain + Output gain + + + + Attack time + Tempo di attacco + + + + Release time + Tempo di rilascio + + + + Stereo mode + Modalità stereo + + + + lmms::Effect + + + Effect enabled + Effetto abilitato + + + + Wet/Dry mix + Wet/Dry mix + + + + Gate + Gate + + + + Decay + Decadimento + + + + lmms::EffectChain + + + Effects enabled + Effetti abilitati + + + + lmms::Engine + + + Generating wavetables + Generazione di wavetable + + + + Initializing data structures + Inizializzazione di strutture dati + + + + Opening audio and midi devices + Apertura di audio e dispositivi midi + + + + Launching audio engine threads + Avvio dei thread del motore audio + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Env pre-delay + + + + Env attack + Env attack + + + + Env hold + Env hold + + + + Env decay + Env decay + + + + Env sustain + Env sustain + + + + Env release + Env release + + + + Env mod amount + Env mod amount + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + Default preset + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + Apri Preset + + + + + VST Plugin Preset (*.fxp *.fxb) + VST Plugin Preset (*.fxp *.fxb) + + + + : default + + + + + Save Preset + Salva Preset + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + Reimposta il nome + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + Ripristina + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + Ripristina il grafico d'onda + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + Salva le impostazioni della traccia attuale in un file preset + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + Salva il preset + + + + XML preset file (*.xpf) + File di preset XML (*.xpf) + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + Miei Preset + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + Progetti aperti di recente + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + Schermo intero + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + Reimposta il nome + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + Ripristina + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + Reimposta il nome + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + &Progetti Aperti di Recente + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + Ripristina il valore predefinito + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + Ripristina + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + Ripristina + + + + Reset counter and sidebar information + Reimposta il contatore e le informazioni della barra laterale + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + Ripristina + + + + Pick random + + + + + Reset clip colors + Ripristina i colori della clip + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + Apri VST plugin preset + + + + Previous (-) + + + + + Save preset + Salva il preset + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + Preset + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + Apri VST plugin preset + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + Salva il preset + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + Ripristina il grafico d'onda + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + \ No newline at end of file diff --git a/data/locale/ja.ts b/data/locale/ja.ts index b7c1a780c..fffa83420 100644 --- a/data/locale/ja.ts +++ b/data/locale/ja.ts @@ -1,10252 +1,18754 @@ - + 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 について - LMMS - easy music production for everyone - 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 製作者 - 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 - - + 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 + AboutJuceDialog - 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. - 他のオーディオファイルを開きたいときは、ここをクリックしてください。ダイアログが表示され、ファイルを選択することができます。ループモード、開始/終了位置、増幅率などの設定はリセットされません。そのため、開いたファイルはオリジナルのサンプルとは異なる音になるかもしれません。 - - - 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. - このボタンは正方向のループを有効にします。ループ開始位置から終了位置まで、サンプルが繰り返し再生されます。 - - - 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. - このノブで、サンプルの再生を停止する位置を設定することができます。 - - - 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 サーバーダウン - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - JACK サーバーがシャットダウンし、新しいインスタンスの開始に失敗したようです。そのため、LMMS は続行できません。あなたはプロジェクトを保存し、JACK と LMMS を再起動する必要があります。 - - - CLIENT-NAME - クライアント名 - - - CHANNELS - チャンネル - - - - AudioOss::setupWidget - - DEVICE - デバイス - - - CHANNELS - チャンネル - - - - AudioPortAudio::setupWidget - - BACKEND - バックエンド - - - DEVICE - デバイス - - - - AudioPulseAudio::setupWidget - - DEVICE - デバイス - - - CHANNELS - チャンネル - - - - AudioSdl::setupWidget - - DEVICE - デバイス - - - - AudioSndio::setupWidget - - DEVICE - デバイス - - - CHANNELS - チャンネル - - - - AudioSoundIo::setupWidget - - BACKEND - バックエンド - - - DEVICE - デバイス - - - - AutomatableModel - - &Reset (%1%2) - リセット(&R) (%1%2) - - - &Copy value (%1%2) - 値をコピー(&C) (%1%2) - - - &Paste value (%1%2) - 値を貼り付け(&P) (%1%2) - - - 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 - リンクされたコントロールを全て削除 - - - - AutomationEditor - - Please open an automation pattern with the context menu of a control! - コントロールのコンテキストメニューでオートメーションパターンを開いてください! - - - Values copied - 値をコピーしました - - - All selected values were copied to the clipboard. - 選択された値はすべてクリップボードにコピーされました。 - - - - AutomationEditorWindow - - Play/pause current pattern (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) - 現在のパターンの再生を停止 (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 + + About JUCE - Linear progression + + <b>About JUCE</b> - Cubic Hermite progression + + This program uses JUCE version 3.x.x. - Tension value for spline + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - 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 - 編集機能 - - - Interpolation controls - 補間コントロール - - - Timeline controls - タイムライン コントロール - - - Zoom controls - ズーム コントロール - - - 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. + + This program uses JUCE version - AutomationPattern + AudioDeviceSetupWidget - Drag a control while pressing <%1> - <%1>を押しながらコントロールをドラッグしてください - - - - AutomationPatternView - - 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. - モデルは、すでにこのパターンに接続されています。 - - - - AutomationTrack - - Automation track - オートメーション トラック - - - - BBEditor - - 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 - - - - Clone Steps - ステップを複製 - - - Add sample-track - サンプルトラックを追加 - - - - BBTCOView - - Open in Beat+Bassline-Editor - ビート+ベースライン エディターで開く - - - Reset name - 名前をリセット - - - Change name - 名前を変更 - - - Change color - 色を変更 - - - Reset color to default - 色をデフォルトにリセット - - - - BBTrack - - Beat/Bassline %1 - ビート/ベースライン %1 - - - Clone of %1 - %1の複製 - - - - BassBoosterControlDialog - - FREQ - 周波数 - - - Frequency: - 周波数: - - - GAIN - ゲイン - - - Gain: - ゲイン: - - - RATIO - レシオ - - - Ratio: - レシオ: - - - - BassBoosterControls - - Frequency - 周波数 - - - Gain - ゲイン - - - Ratio - レシオ - - - - BitcrushControlDialog - - IN - IN - - - OUT - OUT - - - GAIN - ゲイン - - - Input Gain: - 入力ゲイン: - - - Input Noise: - 入力ノイズ: - - - Output Gain: - 出力ゲイン: - - - CLIP - クリップ - - - Output Clip: - 出力クリップ - - - Rate Enabled - Rateが有効です - - - Enable samplerate-crushing - - - - Depth Enabled - Depthが有効です - - - Enable bitdepth-crushing - - - - Sample rate: - サンプルレート: - - - Stereo difference: - 位相 - - - Levels: - レベル: - - - NOISE - - - - FREQ - 周波数 - - - STEREO - - - - QUANT + + [System Default] - CaptionMenu + CarlaAboutW + + About Carla + + + + + About + LMMS について + + + + About text here + + + + + Extended licensing here + + + + + Artwork + アートワーク + + + + Using KDE Oxygen icon set, designed by Oxygen Team. + OxygenチームがデザインしたKDE Oxygenアイコンセットを使用<br> + + + + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. + + + + + VST is a trademark of Steinberg Media Technologies GmbH. + + + + + Special thanks to António Saraiva for a few extra icons and artwork! + + + + + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. + + + + + MIDI Keyboard designed by Thorsten Wilms. + + + + + Carla, Carla-Control and Patchbay icons designed by DoosC. + + + + + Features + + + + + AU/AudioUnit: + + + + + LADSPA: + + + + + + + + + + + + TextLabel + + + + + VST2: + + + + + DSSI: + + + + + LV2: + + + + + VST3: + + + + + OSC + + + + + Host URLs: + + + + + Valid commands: + + + + + valid osc commands here + + + + + Example: + + + + + License + ライセンス + + + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + 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... + + + + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + ファイル(&F) + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help ヘルプ(&H) - Help (not available) - ヘルプ (利用できません) - - - - CarlaInstrumentView - - Show GUI - GUI を表示 - - - Click here to show or hide the graphical user interface (GUI) of Carla. - CarlaのGUIを表示/非表示するにはここをクリックしてください。 - - - - Controller - - Controller %1 - コントローラー %1 - - - - ControllerConnectionDialog - - Connection Settings - 接続設定 - - - MIDI CONTROLLER - MIDI コントローラ - - - Input channel - 入力チャンネル - - - CHANNEL - チャンネル - - - Input controller - 入力コントローラー - - - CONTROLLER - コントローラー - - - Auto Detect - 自動検出 - - - MIDI-devices to receive MIDI-events from - MIDI イベントを受信するための MIDI デバイス - - - USER CONTROLLER - ユーザー コントローラー - - - MAPPING FUNCTION - マッピング機能 - - - OK - OK - - - Cancel - キャンセル - - - LMMS - LMMS - - - Cycle Detected. - 循環が検出されました。 - - - - ControllerRackView - - Controller Rack - コントローラー ラック - - - Add - 追加 - - - Confirm Delete - 削除の確認 - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - 削除してもよいですか? このコントローラーに関連付けられた接続があります。削除すると元に戻す方法はありません。 - - - - ControllerView - - Controls - コントロール - - - 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 controller - このコントローラーを取り外す (&R) - - - Re&name this controller - このコントローラー名を変更 (&n) - - - LFO - LFO - - - - CrossoverEQControlDialog - - Band 1/2 Crossover: + + Tool Bar - Band 2/3 Crossover: + + Disk - Band 3/4 Crossover: + + + Home + ホーム + + + + Transport - Band 1 Gain: - バンド1 - - - Band 2 Gain: - バンド2 - - - Band 3 Gain: - バンド3 - - - Band 4 Gain: - バンド4 - - - Band 1 Mute + + Playback Controls - Mute Band 1 + + Time Information - Band 2 Mute + + Frame: - Mute Band 2 - - - - Band 3 Mute - - - - Mute Band 3 - - - - Band 4 Mute - - - - Mute Band 4 - - - - - DelayControls - - Delay Samples - - - - Feedback - フィードバック - - - Lfo Frequency - LFO 周波数 - - - Lfo Amount - LFO 量 - - - Output gain - 出力ゲイン - - - - DelayControlsDialog - - Lfo Amt - LFO 量 - - - Delay Time - ディレイ タイム - - - Feedback Amount - フィードバック量 - - - Lfo - LFO - - - Out Gain - 出力ゲイン - - - Gain - ゲイン - - - DELAY - - - - FDBK - - - - RATE - - - - AMNT - AMNT - - - - 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 - ミックス - - - - DualFilterControls - - Filter 1 enabled - フィルタ1は有効です - - - Filter 1 type - フィルタ1の種類 - - - Cutoff 1 frequency - フィルタ1の周波数 - - - Q/Resonance 1 - - - - Gain 1 - - - - Mix - ミックス - - - Filter 2 enabled - フィルタ2は有効 - - - Filter 2 type - フィルタ2の種類 - - - Cutoff 2 frequency - - - - Q/Resonance 2 - - - - Gain 2 - - - - LowPass - LowPass - - - HiPass - HiPass - - - BandPass csg - BandPass csg - - - BandPass czpg - BandPass cspg - - - Notch - Notch - - - Allpass - Allpass - - - Moog - Moog - - - 2x LowPass - 2x LowPass - - - RC LowPass 12dB - RC LowPass 12dB - - - RC BandPass 12dB - RC BandPass 12dB - - - RC HighPass 12dB - RC HighPass 12dB - - - RC LowPass 24dB - RC LowPass 24dB - - - RC BandPass 24dB - RC BandPass 24dB - - - RC HighPass 24dB - RC HighPass 24dB - - - Vocal Formant Filter - Vocal Formant Filter - - - - 2x Moog - 2x Moog - - - SV LowPass - SV LowPass - - - SV BandPass - SV BandPass - - - SV HighPass - SV HighPass - - - SV Notch - SV Notch - - - Fast Formant - Fast Formant - - - Tripole - Tripole - - - - Editor - - Play (Space) - 再生 (Space) - - - Stop (Space) - 停止 (Space) - - - Record - 録音 - - - Record while playing - 再生しながら録音 - - - Transport controls - - - - - Effect - - Effect enabled - エフェクト有効 - - - Wet/Dry mix - - - - Gate - - - - Decay - ディケイ - - - - EffectChain - - Effects enabled - エフェクト有効 - - - - EffectRackView - - EFFECTS CHAIN - エフェクトチェイン - - - Add effect - エフェクトを追加 - - - - EffectSelectDialog - - Add effect - エフェクトを追加 - - - Name - 名前 - - - Type - 種類 - - - Description - 説明 - - - Author - 製作者 - - - - 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 + + 000'000'000 + 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. + + 00:00:00 - GATE - ゲート - - - Gate: - ゲート: - - - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. + + BBT: - 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. + + 000|00|0000 - Move &up - 一つ上へ(&u) + + Settings + 設定 - Move &down - 一つ下へ(&d) - - - &Remove this plugin - このプラグインを削除(&R) - - - - EnvelopeAndLfoParameters - - Predelay + + BPM - Attack + + Use JACK Transport - Hold - Hold - - - Decay - ディケイ - - - Sustain - Decay - - - Release - Release - - - Modulation + + Use Ableton Link - LFO Predelay - LFO Predelay + + &New + 新規(&N) - LFO Attack - LFO speed + + Ctrl+N + - LFO speed - LFO speed + + &Open... + 開く(&O)... - LFO Modulation - LFO Modulation + + + Open... + - LFO Wave Shape - LFO Wave Shape + + Ctrl+O + - Freq x 100 - Freq x 100 + + &Save + 保存(&S) - Modulate Env-Amount + + Ctrl+S + + + + + Save &As... + 名前を付けて保存(&A)... + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + 終了(&Q) + + + + Ctrl+Q + + + + + &Start + + + + + F5 + + + + + St&op + + + + + F6 + + + + + &Add Plugin... + + + + + Ctrl+A + + + + + &Remove All + + + + + Enable + + + + + Disable + + + + + 0% Wet (Bypass) + + + + + 100% Wet + + + + + 0% Volume (Mute) + + + + + 100% Volume + + + + + Center Balance + + + + + &Play + + + + + Ctrl+Shift+P + + + + + &Stop + + + + + Ctrl+Shift+X + + + + + &Backwards + + + + + Ctrl+Shift+B + + + + + &Forwards + + + + + Ctrl+Shift+F + + + + + &Arrange + + + + + Ctrl+G + + + + + + &Refresh + + + + + Ctrl+R + + + + + Save &Image... + + + + + Auto-Fit + + + + + Zoom In + + + + + Ctrl++ + + + + + Zoom Out + + + + + Ctrl+- + + + + + Zoom 100% + + + + + Ctrl+1 + + + + + Show &Toolbar + + + + + &Configure Carla + + + + + &About + + + + + About &JUCE + + + + + About &Qt + + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + Ctrl+P + + + + + &Connect... + + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + + + + + &Configure driver... + + + + + Panic + + + + + Open custom driver panel... + + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C - EnvelopeAndLfoView + CarlaHostWindow - DEL - ATT - - - Predelay: + + Export as... - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. + + + + + Error + エラー + + + + Failed to load project - 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. + + Failed to save project - 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. + + Quit - 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. + + Are you sure you want to quit Carla? - 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. + + Could not connect to Audio backend '%1', possible reasons: +%2 - REL + + Could not connect to Audio backend '%1' - 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. + + Warning - 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グラフ上へドラッグ&ドロップしてください。 - - - FREQ x 100 - 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: - ms/LFO: - - - Hint - ヒント - - - Drag a sample from somewhere and drop it in this window. - - - - Click here for random wave. - クリックしてホワイトノイズを使用します。 - - - - 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 - Low Passフィルターの種類 - - - high pass type - High Passフィルターの種類 - - - Analyse IN - - - - Analyse OUT + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? - EqControlsDialog + CarlaSettingsW - HP + + Settings + 設定 + + + + main - Low Shelf + + canvas - Peak 1 + + engine - Peak 2 + + osc - Peak 3 + + file-paths - Peak 4 + + plugin-paths - High Shelf + + wine - LP + + experimental - In Gain + + Widget - Gain - ゲイン - - - Out Gain - 出力ゲイン - - - Bandwidth: + + + Main - Resonance : + + + Canvas - Frequency: - 周波数: - - - lp grp + + + Engine - hp grp + + File Paths - Octave + + Plugin Paths + + + + + Wine + + + + + + Experimental + + + + + <b>Main</b> + + + + + Paths + パス + + + + Default project folder: + + + + + Interface + + + + + Use "Classic" as default rack skin + + + + + Interface refresh interval: + + + + + + ms + + + + + Show console output in Logs tab (needs engine restart) + + + + + Show a confirmation dialog before quitting + + + + + + Theme + + + + + Use Carla "PRO" theme (needs restart) + + + + + Color scheme: + + + + + Black + + + + + System + + + + + Enable experimental features + + + + + <b>Canvas</b> + + + + + Bezier Lines + + + + + Theme: + + + + + Size: + + + + + 775x600 + + + + + 1550x1200 + + + + + 3100x2400 + + + + + 4650x3600 + + + + + 6200x4800 + + + + + 12400x9600 + + + + + Options + + + + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + + + + + Anti-Aliasing + + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + + + + + + Core + + + + + Single Client + + + + + Multiple Clients + + + + + + Continuous Rack + + + + + + Patchbay + + + + + Audio driver: + + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + + + + + Reset Xrun counter after project load + + + + + Plugin UIs + + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + + + + + <b>OSC</b> + + + + + Enable OSC + + + + + Enable TCP port + + + + + + Use specific port: + + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + + + + + Audio + オーディオ + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + + + + + + Remove + + + + + + Change... + + + + + <b>Plugin Paths</b> + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + SF2/3 + + + + + SFZ + + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + + + + + <b>Wine</b> + + + + + Executable + + + + + Path to 'wine' binary: + + + + + Prefix + + + + + Auto-detect Wine prefix based on plugin filename + + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + + + + + High Quality Anti-Aliasing (OpenGL only) + + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + + + + + Force mono plugins as stereo + + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path - EqHandle + Dialog - Reso: + + Carla Control - Connect - BW: + + Remote setup - Freq: + + UDP Port: + + + + + Remote host: + + + + + TCP Port: + + + + + 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 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) - (最小) + + 128 KBit/s + 128 KBit/s - - - Expressive - Selected graph - 選択されたグラフ + + 160 KBit/s + 160 KBit/s - A1 - + + 192 KBit/s + 192 KBit/s - A2 - + + 256 KBit/s + 256 KBit/s - A3 - + + 320 KBit/s + 320 KBit/s - W1 smoothing - + + Use variable bitrate + 可変ビットレートを使用する - W2 smoothing - + + Quality settings + 品質設定 - W3 smoothing - + + Interpolation: + 補間 : - PAN1 - + + Zero order hold + ゼロ次ホールド - PAN2 - + + Sinc worst (fastest) + 低品質 (最速) - REL TRANS - + + Sinc medium (recommended) + 中品質 (おすすめ) - - - Fader - Please enter a new value between %1 and %2: - %1 と %2 の間の新しい値を入力してください: + + Sinc best (slowest) + 最高品質 (最低速) - - - FileBrowser - Browser - ブラウザ + + Start + 開始 - Search - 検索 - - - Refresh list - リストの更新 - - - - FileBrowserTreeWidget - - Send to active instrument-track - - - - Open in new instrument-track/B+B Editor - - - - 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 - - - - file - - - - - FlangerControls - - Delay Samples - - - - Lfo Frequency - LFO 周波数 - - - Seconds - - - - Regen - - - - Noise - ノイズ - - - Invert - - - - - FlangerControlsDialog - - Delay Time: - - - - Feedback Amount: - - - - White Noise Amount: - - - - DELAY - - - - RATE - - - - AMNT - AMNT - - - Amount: - - - - FDBK - - - - NOISE - - - - Invert - - - - Period: - - - - - 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 - 一つ左へ (&l) - - - Move &right - 一つ右へ (&r) - - - Rename &channel - チャンネル名を変更 (&c) - - - R&emove channel - チャンネルを削除 (&e) - - - Remove &unused channels - 使用していないチャンネルを削除 (&u) - - - - FxMixer - - Master - - - - FX %1 - FX %1 - - - Volume - 音量 - - - Mute - ミュート - - - Solo - ソロ - - - - FxMixerView - - FX-Mixer - エフェクトミキサー - - - FX Fader %1 - - - - Mute - ミュート - - - Mute this FX channel - このFXチャンネルをミュート - - - Solo - ソロ - - - Solo FX channel - - - - - FxRoute - - Amount to send from channel %1 to channel %2 - - - - - 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 - - - - 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 ファイルを開く - - - GIG Files (*.gig) - GIG ファイル (*.gig) - - - - GuiApplication - - Working directory - 作業ディレクトリ - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - LMMSの作業ディレクトリ %1 は存在しません。作成しますか?編集->セッティング でこのディレクトリを変更できます。 - - - Preparing UI - UIの準備中 - - - Preparing song editor - ソング エディター の準備中 - - - Preparing mixer - ミキサーの準備中 - - - Preparing controller rack - コントローラー ラック の準備中 - - - Preparing project notes - プロジェクトノートの準備中 - - - Preparing beat/bassline editor - ビート/ベースライン エディター の準備中 - - - Preparing piano roll - ピアノロールの準備中 - - - Preparing automation editor - オートメーション エディター の準備中 - - - - InstrumentFunctionArpeggio - - Arpeggio - - - - Arpeggio type - - - - Arpeggio range - - - - Arpeggio time - - - - Arpeggio gate - - - - Arpeggio direction - - - - Arpeggio mode - - - - Up - - - - Down - - - - Up and down - - - - Random - ランダム - - - Free - - - - Sort - ソート - - - Sync - 同期 - - - Down and up - - - - Skip rate - Skip rate - - - Miss rate - Miss rate - - - Cycle steps - - - - - 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. - - - - TIME - - - - 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. - - - - 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. - + + Cancel + キャンセル 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 - - 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: - コード: - - - - InstrumentMidiIOView - - ENABLE MIDI INPUT - MIDI入力を有効にする - - - CHANNEL - チャンネル - - - VELOCITY - 速度 - - - ENABLE MIDI OUTPUT - MIDI出力を有効にする - - - 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 + Cutoff frequency カットオフ周波数 + RESO レゾナンス + Resonance レゾナンス - - Envelopes/LFOs - エンベロープ/LFO - - - Filter type - フィルターの種類 - - - Q/Resonance - Q/Resonance - - - LowPass - LowPass - - - HiPass - HiPass - - - BandPass csg - BandPass csg - - - BandPass czpg - BandPass cspg - - - Notch - Notch - - - Allpass - Allpass - - - Moog - Moog - - - 2x LowPass - 2x LowPass - - - RC LowPass 12dB - RC LowPass 12dB - - - RC BandPass 12dB - RC BandPass 12dB - - - RC HighPass 12dB - RC HighPass 12dB - - - RC LowPass 24dB - RC LowPass 24dB - - - RC BandPass 24dB - RC BandPass 24dB - - - RC HighPass 24dB - RC HighPass 24dB - - - Vocal Formant Filter - Vocal Formant Filter - - - 2x Moog - 2x Moog - - - SV LowPass - SV LowPass - - - SV BandPass - SV BandPass - - - SV HighPass - SV HighPass - - - SV Notch - SV Notch - - - Fast Formant - Fast Formant - - - Tripole - Tripole - - InstrumentSoundShapingView + JackAppDialog - 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...! + + Add JACK Application - 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. + + Note: Features not implemented yet are greyed out - 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... + + Application - 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. + + Name: - FREQ - 周波数 - - - cutoff frequency: - Cutoff周波数: - - - Envelopes, LFOs and filters are not supported by the current instrument. - エンベロープ、LFOやフィルターなどの操作は現在の楽器プラグインではサポートされていません。 - - - - 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. + + Application: - Base note + + From template - Pitch range - ピッチ範囲 - - - Master Pitch - マスターピッチ - - - - InstrumentTrackView - - Volume - 音量 - - - Volume: - 音量: - - - VOL - 音量 - - - Panning - パニング - - - Panning: - パニング: - - - PAN - PAN - - - MIDI - MIDI - - - Input - 入力 - - - Output - 出力 - - - FX %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - GENERAL SETTINGS - 一般設定 - - - Instrument 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 - - - Save current instrument track settings in a preset file + + Custom - 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. + + Template: - Use these controls to view and edit the next/previous track in the song editor. + + Command: - SAVE - 保存 - - - Envelope, filter & LFO + + Setup - Chord stacking & arpeggio + + Session Manager: - Effects + + None - MIDI settings - MIDI 設定 - - - Miscellaneous + + Audio inputs: - Plugin + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used - Knob + JuceAboutW - Set linear - - - - Set logarithmic - - - - Please enter a new value between %1 and %2: - %1 と %2 の間の新しい値を入力してください: - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + This program uses JUCE version %1. - LadspaControl + MidiPatternW - Link channels - チャンネルをリンクする - - - - LadspaControlDialog - - Link Channels - チャンネルをリンクする - - - Channel - チャンネル - - - - LadspaControlView - - Link channels - チャンネルをリンクする - - - Value: + + MIDI Pattern - Sorry, no help available. - 申し訳ありませんがヘルプはありません。 - - - - LadspaEffect - - Unknown LADSPA plugin %1 requested. - 不明な LADSPA プラグイン %1 が要求されました。 - - - - LcdSpinBox - - Please enter a new value between %1 and %2: - %1 と %2 の間の新しい値を入力してください: - - - - LeftRightNav - - Previous + + Time Signature: - Next + + + + 1/4 - Previous (%1) + + 2/4 - Next (%1) - - - - - LfoController - - LFO Controller - LFOコントローラ - - - Base value + + 3/4 - Oscillator speed + + 4/4 - Oscillator amount + + 5/4 - Oscillator phase + + 6/4 - Oscillator waveform - オシレーターの波形 - - - Frequency Multiplier - - - - - LfoControllerDialog - - LFO - LFO - - - LFO Controller - LFOコントローラ - - - BASE - BASE - - - Base amount: - Base amount: - - - todo + + Measures: - SPD - LFO predelay: - - - LFO-speed: + + + + 1 - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. + + 2 - 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. + + 3 - PHS + + 4 - Phase offset: + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 - degrees + + 9 + 9 + + + + 10 - 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. + + 11 + 11 + + + + 12 - Click here for a sine-wave. - クリックしてサイン波を使用します。 + + 13 + 13 - Click here for a triangle-wave. - クリックして三角波を使用します。 - - - Click here for a saw-wave. + + 14 - Click here for a square-wave. - クリックして矩形波を使用します。 - - - Click here for an exponential wave. + + 15 - Click here for white-noise. + + 16 - Click here for a user-defined shape. -Double click to pick a file. - ユーザー定義波形については、ここをクリックしてください。 -ダブルクリックしてファイルを選択します。 - - - Click here for a moog saw-wave. + + Default Length: - AMNT - AMNT - - - - LmmsCore - - Generating wavetables + + + 1/16 - Initializing data structures + + + 1/15 - Opening audio and midi devices + + + 1/12 - Launching mixer threads + + + 1/9 - - - MainWindow - &New - 新規(&N) + + + 1/8 + - &Open... - 開く(&O)... + + + 1/6 + - &Save - 保存(&S) + + + 1/3 + - Save &As... - 名前を付けて保存(&A)... + + + 1/2 + - Import... - インポート.... - - - E&xport... - エクスポート(&x)... - - - &Quit - 終了(&Q) - - - &Edit - 編集(&E) - - - Settings - 設定 - - - &Tools - ツール(&T) - - - &Help - ヘルプ(&H) - - - 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 - 現在のプロジェクトをエクスポート - - - 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ののヘルプはありません。 - 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 - マイ コンピュータ + + Quantize: + + &File ファイル(&F) - &Recently Opened Projects - 最近開いたプロジェクト (&R) + + &Edit + 編集(&E) - Save as New &Version - 新規保存 (&V) + + &Quit + 終了(&Q) - 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 - - - - 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! - - - - Export &MIDI... - - - - - MeterDialog - - Meter Numerator - - - - Meter Denominator - - - - TIME SIG - 拍子 - - - - MeterModel - - Numerator - - - - Denominator - - - - - MidiController - - MIDI Controller - MIDIコントローラ - - - 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. - 設定ダイアログ (編集->設定) でデフォルトのサウンドフォントを設定していません。そのため、MIDIファイルをインポート後に音声が再生されません。一般的なMIDIサウンドフォントをダウンロードして設定ダイアログにて指定し、その後で再試行してください。 - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - - - - 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サーバーはシャットダウンしたようです。 - - - - 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 - - - - Base velocity - - - - - MidiSetupWidget - - DEVICE - デバイス - - - - MonstroInstrument - - Osc 1 Volume - Osc 1 の音量 - - - 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 の音量 - - - 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 の波形 - - - Osc 2 Sync Hard - - - - Osc 2 Sync Reverse - - - - Osc 3 Volume - Osc 3 の音量 - - - Osc 3 Panning - - - - Osc 3 Coarse detune - - - - Osc 3 Stereo phase offset - - - - Osc 3 Sub-oscillator mix - - - - Osc 3 Waveform 1 - Osc 3 の波形 1 - - - Osc 3 Waveform 2 - Osc 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 2 Waveform - LFO 2 の波形 - - - 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. - オシレーター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 - - - - 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 - Phase - - - Pre-delay - Pre-delay - - - Hold - Hold - - - Decay - Decay - - - Sustain - Decay - - - Release - Release - - - Slope - Slope - - - Modulation amount - Modulation amount - - - - MultitapEchoControlDialog - - Length - Length - - - Step length: - Step length: - - - Dry - Dry - - - Dry Gain: - Dry Gain: - - - Stages - - - - Lowpass stages: - - - - Swap inputs - - - - Swap left and right input channel for reflections - - - - - NesInstrument - - Channel 1 Coarse detune - - - - Channel 1 Volume - チャンネル 1 の音量 - - - Channel 1 Envelope length - - - - Channel 1 Duty cycle - - - - Channel 1 Sweep amount - - - - Channel 1 Sweep rate - - - - Channel 2 Coarse detune - - - - Channel 2 Volume - チャンネル 2 の音量 - - - Channel 2 Envelope length - - - - Channel 2 Duty cycle - - - - Channel 2 Sweep amount - - - - Channel 2 Sweep rate - - - - Channel 3 Coarse detune - - - - Channel 3 Volume - チャンネル 3 の音量 - - - Channel 4 Volume - チャンネル 4 の音量 - - - Channel 4 Envelope length - - - - Channel 4 Noise frequency - - - - Channel 4 Noise frequency sweep - - - - Master volume - マスター音量 - - - Vibrato - - - - - NesInstrumentView - - Volume - 音量 - - - Coarse detune - - - - 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 + + Esc - Enable envelope 4 loop + + &Insert Mode - Quantize noise frequency when using note frequency + + F - Use note frequency for noise + + &Velocity Mode - Noise mode - - - - Master Volume - マスター音量 - - - Vibrato - - - - - 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 - + + D + D - Modulation type %1 + + Select All - Osc %1 waveform - Osc %1 の波形 - - - Osc %1 harmonic - + + A + A PatchesDialog + + Qsynth: Channel Preset + + Bank selector + + Bank - + バンク + + Program selector + + Patch パッチ + + Name 名前 + + OK OK + + Cancel キャンセル - - 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) - パッチファイル (*.pat) - - - - PatternView - - Open in piano-roll - ピアノロールで開く - - - Clear all notes - すべてのノートをクリア - - - Reset name - 名前をリセット - - - Change name - 名前を変更 - - - Add steps - ステップを追加 - - - Remove steps - ステップを削除 - - - Clone Steps - ステップを複製 - - - - PeakController - - Peak Controller - ピークコントローラー - - - Peak Controller Bug - ピークコントローラーのバグ - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - - - - - PeakControllerDialog - - PEAK - PEAK - - - LFO Controller - LFOコントローラー - - - - PeakControllerEffectControlDialog - - BASE - BASE - - - Base amount: - Base amount: - - - Modulation amount: - Modulation amount: - - - Attack: - アタック: - - - Release: - リリース: - - - AMNT - AMNT - - - MULT - MULT - - - Amount Multiplicator: - - - - ATCK - ATCK - - - DCAY - ATCK - - - Treshold: - スレショルド: - - - TRSH - TRSH - - - - PeakControllerEffectControls - - Base value - - - - Modulation amount - Modulation amount - - - Mute output - - - - Attack - - - - Release - Release - - - Abs Value - - - - Amount Multiplicator - - - - Treshold - - - - - 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 - - - - Select all notes on this key - このキーのすべてのノートを選択 - - - - PianoRollWindow - - Play/pause current pattern (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) - 現在のパターンの再生を停止 (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 - - - - Timeline controls - タイムラインコントロール - - - Zoom and note controls - - - - Piano-Roll - %1 - ピアノロール - %1 - - - Piano-Roll - no pattern - ピアノロール - パターン無し - - - Quantize - クオンタイズ - - - - PianoView - - Base note - - - - - Plugin - - Plugin not found - プラグインが見つかりません - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - プラグイン "%1" は見つからないか読み込みができません! -原因: "%2" - - - Error while loading plugin - プラグイン読み込み中のエラー - - - Failed to load plugin "%1"! - プラグイン "%1" の読み込みに失敗しました! - - PluginBrowser - Instrument browser - 楽器ブラウザ + + no description + 説明なし - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - 楽器をソング エディターやビート+ベースライン エディターまたは存在する楽器トラックにドラッグしてください。 + + A native amplifier plugin + ネイティブのアンププラグイン - Instrument Plugins + + 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 です + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + コントロール + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + 設定 + + + + Use Chunks + + + + + Audio: + + + + + Fixed-Size Buffer + + + + + Force Stereo (needs reload) + + + + + MIDI: + + + + + Map Program Changes + + + + + Send Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + + + + + Save State + + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + 種類: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: PluginFactory + Plugin not found. - + プラグインが見つかりませんでした + LMMS plugin %1 does not have a plugin descriptor named %2! - ProjectNotes + PluginListDialog - Edit Actions - 編集機能 + + Carla - Add New + - &Undo - 元に戻す(&U) + + Requirements + - %1+Z - %1+Z + + With Custom GUI + - &Redo - やり直し(&R) + + With CV Ports + - %1+Y - %1+Y + + Real-time safe only + - &Copy - コピー(&C) + + Stereo only + - %1+C - %1+C + + With Inline Display + - Cu&t - 切り取り(&t) + + Favorites only + - %1+X - %1+X + + (Number of Plugins go here) + - &Paste - 貼り付け(&P) + + &Add Plugin + - %1+V - %1+V + + Cancel + - Format Actions - フォーマット機能 + + Refresh + - &Bold - 太字(&B) + + Reset filters + - %1+B - %1+B + + + + + + + + + + + + + + + + + TextLabel + - &Italic - 斜体(&I) + + Format: + - %1+I - %1+I + + Architecture: + - &Underline - 下線(&U) + + Type: + - %1+U - %1+U + + MIDI Ins: + - &Left - 左揃え(&L) + + Audio Ins: + - %1+L - %1+L + + CV Outs: + - C&enter - 中央揃え(&e) + + MIDI Outs: + - %1+E - %1+E + + Parameter Ins: + - &Right - 右揃え(&R) + + Parameter Outs: + - %1+R - %1+R + + Audio Outs: + - &Justify - 両端揃え(&J) + + CV Ins: + - %1+J - %1+J + + UniqueID: + - &Color... - 文字色(&C)... + + Has Inline Display: + - Project Notes - プロジェクトノート + + Has Custom GUI: + - Enter project notes here + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + + + + + Parameter Name + + + + + TextLabel + + + + + ... + + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + オン/オフ + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: 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) + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin - Compressed MP3-File (*.mp3) + + Show GUI + GUI を表示 + + + + Help + ヘルプ + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) QWidget + + Name: 名前: + Maker: 作成者: + Copyright: - + 著作権表示: + Requires Real Time: + + + Yes はい + + + No いいえ + Real Time Capable: + In Place Broken: + Channels In: 入力チャンネル: + Channels Out: 出力チャンネル: - File: - ファイル: - - + File: %1 ファイル: %1 - - - RenameDialog - Rename... - 名前の変更... + + File: + ファイル: - ReverbSCControlDialog + XYControllerW - Input - 入力 - - - Input Gain: - 入力ゲイン: - - - Size - - - - Size: - - - - Color - - - - Color: - - - - Output - 出力 - - - Output Gain: - 出力ゲイン: - - - - ReverbSCControls - - Input Gain - - - - Size - - - - Color - - - - Output Gain - - - - - 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 - - - - - SampleTCOView - - double-click to select sample - ダブルクリックでサンプル選択 - - - Delete (middle mousebutton) - 削除 (マウス中ボタン) - - - Cut - 切り取り - - - Copy - コピー - - - Paste - 貼り付け - - - Mute/unmute (<%1> + middle click) - ミュート/ミュート解除 (<%1> + 中ボタンクリック) - - - - SampleTrack - - Sample track - サンプルトラック - - - Volume - 音量 - - - Panning - パニング - - - - SampleTrackView - - Track volume - トラック音量 - - - Channel volume: - チャンネル音量: - - - VOL - 音量 - - - Panning - パニング - - - Panning: - パニング: - - - PAN - PAN - - - - SetupDialog - - Setup LMMS - LMMS 設定 - - - 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 - - - - 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 - 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 - - - - Display volume as dBFS - 音量を dBFS で表示する - - - Enable auto-save - 自動保存を有効にする - - - Allow auto-save while playing - 再生中の自動保存を許可する - - - Disabled - - - - Auto-save interval: %1 - 自動保存の間隔: %1 - - - 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. - - - - - 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! - - - - Select directory for writing exported tracks... - エクスポートされたトラックの書き込み先のディレクトリを選択... - - - untitled - 無題 - - - Select file for project-export... - プロジェクトをエクスポートするファイルを選択してください... - - - The following errors occured while loading: - 読み込み中に以下のエラーが発生しました: - - - MIDI File (*.mid) - - - - LMMS Error report - - - - Save project - プロジェクトを保存 - - - - 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 - テンポ/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. - %1 は LMMS %2 で作成されたものです。 - - - - 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 - - - - Edit actions - 編集機能 - - - Timeline controls - タイムラインコントロール - - - Zoom controls - ズームコントロール - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - SpectrumAnalyzerControls - - Linear spectrum - - - - Linear Y axis - - - - Channel mode - - - - - SubWindow - - Close - - - - Maximize - - - - Restore - - - - - TabWidget - - Settings for %1 - %1の設定 - - - - 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分音符に同期 - - - - TimeDisplayWidget - - click to change time units - 時間単位を変更するにはクリック - - - MIN - - - - SEC - - - - MSEC - - - - BAR - - - - BEAT - - - - TICK - - - - - 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. - インポート中のファイル %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 Track %1 (%2/Total %3) - トラックの読み込み中 %1 (%2/Total %3) - - - - TrackContentObject - - Mute - ミュート - - - - TrackContentObjectView - - 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) - - - Delete (middle mousebutton) - 削除 (マウス中ボタン) - - - Cut - 切り取り - - - Copy - コピー - - - Paste - 貼り付け - - - Mute/unmute (<%1> + middle click) - ミュート/ミュート解除(<%1> + 中ボタンクリック) - - - - 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 - FX %1: %2 - - - Turn all recording on - - - - Turn all recording off - - - - Assign to new FX Channel - 新規FXチャンネルにアサインする - - - - 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 - - - - Synchronize oscillator 1 with 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 - - - - Synchronize oscillator 2 with 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. - - - - 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 - 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. - - - - 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. - Moogライクなのこぎり波を現在のオシレータで使用します。 - - - 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 - バージョン番号を小さくする - - - already exists. Do you want to replace it? - すでに存在しています。置き換えますか? - - - - 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. - - - - 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)を開きたいときは、ここをクリックしてください。 - - - 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に現在 読み込まれているプリセットを選択するには、ここをクリックしてください。 - - - 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プラグインをコントロール - - - 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)を開きたいときは、ここをクリックしてください。 - - - 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 /> - - - - VstPlugin - - Loading plugin - プラグインを読み込み中 - - - 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プラグインの読み込みの間お待ちください... - - - The VST plugin %1 could not be loaded. - VSTプラグイン %1 は読み込めません。 - - - - WatsynInstrument - - Volume A1 - 音量 A1 - - - Volume A2 - 音量 A2 - - - Volume B1 - 音量 B1 - - - Volume B2 - 音量B2 - - - Panning A1 - パニングA1 - - - Panning A2 - パニングA2 - - - Panning B1 - パニングB1 - - - Panning B2 - パニングB2 - - - Freq. multiplier A1 - - - - Freq. multiplier A2 - - - - Freq. multiplier B1 - - - - Freq. multiplier B2 - - - - Left detune A1 - - - - Left detune A2 - - - - Left detune B1 - - - - Left detune B2 - - - - Right detune A1 - - - - Right detune A2 - - - - Right detune B1 - - - - Right detune B2 - - - - A-B Mix - - - - A-B Mix envelope amount - - - - A-B Mix envelope attack - - - - A-B Mix envelope hold - - - - A-B Mix envelope decay - - - - A1-B2 Crosstalk - - - - A2-A1 modulation - - - - B2-B1 modulation - - - - Selected graph - 選択されたグラフ - - - - WatsynView - - 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 + + XY Controller - Normalize - ノーマライズ - - - Click to normalize - ノーマライズするにはここをクリック - - - Invert + + X Controls: - Click to invert + + Y Controls: + Smooth - Click to smooth + + &Settings - Sine wave - サイン波 - - - Click for sine wave + + Channels - Triangle wave - 三角波 - - - Click for triangle wave + + &File - Click for saw wave + + Show MIDI &Keyboard - Square wave - 矩形波 - - - Click for square wave + + (All) + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + Volume - 音量 + + Panning - パニング - - - Freq. multiplier - Left detune + + Left gain - cents - - - - Right detune - - - - A-B Mix - - - - Mix envelope amount - - - - Mix envelope attack - - - - Mix envelope hold - - - - Mix envelope decay - - - - Crosstalk + + Right gain - ZynAddSubFxInstrument - - Portamento - - - - Filter Frequency - - - - Filter Resonance - - - - Bandwidth - - - - FM Gain - - - - Resonance Center Frequency - - - - Resonance Bandwidth - - - - 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: - - - - FREQ - 周波数 - - - Filter Resonance: - - - - RES - - - - Bandwidth: - - - - BW - - - - FM Gain: - - - - FM GAIN - - - - Resonance center frequency: - - - - RES CF - - - - Resonance bandwidth: - - - - RES BW - - - - Forward MIDI Control Changes - - - - - audioFileProcessor + lmms::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 + + Sample not found - bitInvader + lmms::AudioJack - Samplelength - サンプルの長さ + + 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 + - bitInvaderView + lmms::AudioOss - Sample Length - サンプルの長さ - - - Sine wave - サイン波 - - - Triangle wave - 三角波 - - - Saw wave - のこぎり波 - - - Square wave - 矩形波 - - - White noise wave - ホワイトノイズ波 - - - User defined wave - ユーザー定義波形 - - - Smooth + + Device - Click here to smooth waveform. + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + Interpolation + Normalize - ノーマライズ - - - 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 + lmms::BitcrushControls + Input gain - 入力ゲイン + + + Input noise + + + + Output gain - 出力ゲイン + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + 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 + lmms::Effect - Assign to: + + Effect enabled - New FX Channel + + Wet/Dry mix + + + + + Gate + + + + + Decay - graphModel + lmms::EffectChain - Graph - グラフ + + Effects enabled + - kickerInstrument + lmms::Engine + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + Start frequency + End frequency - Gain - ゲイン - - + Length - 長さ - - - Distortion Start - Distortion End + + Start distortion - Envelope Slope + + End distortion + + Gain + + + + + Envelope slope + + + + Noise - ノイズ + + Click - Frequency Slope + + Frequency slope + Start from note + End to note - kickerInstrumentView + lmms::LOMMControls - Start frequency: + + Depth - End frequency: + + Time - Gain: - ゲイン: - - - Frequency Slope: + + Input Volume - Envelope Length: + + Output Volume - Envelope Slope: + + Upward Depth - Click: + + Downward Depth - Noise: - ノイズ: - - - Distortion Start: + + High/Mid Split - Distortion End: + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band - ladspaBrowserView + lmms::LadspaControl - 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. + + Link channels - - Type: - 種類: - - ladspaDescription + lmms::LadspaEffect - Plugins - プラグイン - - - Description - 説明 + + Unknown LADSPA plugin %1 requested. + - ladspaPortDialog - - Ports - - - - Name - 名前 - - - Rate - レート - - - Direction - 向き - - - Type - 種類 - - - Min < Default < Max - 最小 < デフォルト < 最大 - - - Logarithmic - - - - SR Dependent - - - - Audio - オーディオ - - - Control - コントロール - - - Input - 入力 - - - Output - 出力 - - - Toggled - - - - Integer - 整数 - - - Float - - - - Yes - はい - - - - lb302Synth + lmms::Lb302Synth + VCF Cutoff Frequency + VCF Resonance + VCF Envelope Mod + VCF Envelope Decay + Distortion + Waveform - 波形 + + Slide Decay + Slide + Accent + Dead + 24dB/oct Filter - lb302SynthView + lmms::LfoController - Cutoff Freq: + + LFO Controller - Resonance: - レゾナンス: - - - Env Mod: + + Base value - Decay: - ディケイ: - - - 303-es-que, 24dB/octave, 3 pole filter + + Oscillator speed - Slide Decay: + + Oscillator amount - DIST: + + Oscillator phase - Saw wave - のこぎり波 - - - Click here for a saw-wave. + + Oscillator waveform - Triangle wave - 三角波 - - - Click here for a triangle-wave. - クリックして三角波を使用します。 - - - Square wave - 矩形波 - - - Click here for a square-wave. - クリックして矩形波を使用します。 - - - Rounded square wave + + Frequency Multiplier - 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. + + Sample not found - malletsInstrument + lmms::MalletsInstrument + Hardness + Position - 位置 - - - Vibrato Gain - Vibrato Freq + + Vibrato gain - Stick Mix + + Vibrato frequency + + Stick mix + + + + Modulator + Crossfade - LFO Speed + + LFO speed - LFO Depth + + LFO depth + ADSR + Pressure + Motion + Speed - 速さ + + Bowed + + Instrument + + + + Spread - Marimba - マリンバ - - - Vibraphone - ビブラフォン - - - Agogo - アゴゴ - - - Wood1 + + Randomness + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + 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 + lmms::MeterModel - Instrument - 楽器 - - - Spread + + Numerator - Spread: + + Denominator - - 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! - Stkのインストールが未完了のようです。Stkパッケージがすべてインストールされていることを確認してください! - - manageVSTEffectView + lmms::Microtuner - - VST parameter control - - VST パラメータ コントロール + + Microtuner + - VST Sync - VST同期 + + Microtuner on / off + - Click here if you want to synchronize all parameters with VST plugin. - すべてのパラメータをVSTプラグインと同期したいときは、ここをクリックしてください。 + + Selected scale + - Automated - オートメーション済 - - - Click here if you want to display automated parameters only. - オートメーション適用済のパラメータだけを表示したいときは、ここをクリックしてください。 - - - Close - 閉じる - - - Close VST effect knob-controller window. - VSTエフェクトの、ノブ コントローラー ウインドウ を閉じます。 + + Selected keyboard mapping + - manageVestigeInstrumentView + lmms::MidiController - - VST plugin control - - VST プラグイン コントロール + + MIDI Controller + - 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プラグインの、ノブ コントローラー ウインドウ を閉じます。 + + unnamed_midi_controller + - opl2instrument + lmms::MidiImport + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + Patch - パッチ - - - Op 1 Attack - Op 1 Decay + + Op 1 attack - Op 1 Sustain + + Op 1 decay - Op 1 Release + + Op 1 sustain - Op 1 Level + + Op 1 release - Op 1 Level Scaling + + Op 1 level - Op 1 Frequency Multiple + + Op 1 level scaling - Op 1 Feedback + + Op 1 frequency multiplier - Op 1 Key Scaling Rate + + Op 1 feedback - Op 1 Percussive Envelope + + Op 1 key scaling rate - Op 1 Tremolo + + Op 1 percussive envelope - Op 1 Vibrato + + Op 1 tremolo - Op 1 Waveform - Op 1 Waveform - - - Op 2 Attack + + Op 1 vibrato - Op 2 Decay + + Op 1 waveform - Op 2 Sustain + + Op 2 attack - Op 2 Release + + Op 2 decay - Op 2 Level + + Op 2 sustain - Op 2 Level Scaling + + Op 2 release - Op 2 Frequency Multiple + + Op 2 level - Op 2 Key Scaling Rate + + Op 2 level scaling - Op 2 Percussive Envelope + + Op 2 frequency multiplier - Op 2 Tremolo + + Op 2 key scaling rate - Op 2 Vibrato + + Op 2 percussive envelope - Op 2 Waveform + + Op 2 tremolo + + Op 2 vibrato + + + + + Op 2 waveform + + + + FM - Vibrato Depth + + Vibrato depth - Tremolo Depth + + Tremolo depth - opl2instrumentView - - Attack - - - - Decay - ディケイ - - - Release - Release - - - Frequency multiplier - - - - - organicInstrument + lmms::OrganicInstrument + Distortion + Volume - 音量 + - organicInstrumentView + lmms::OscillatorObject - Distortion: + + Osc %1 waveform - Volume: - 音量: - - - Randomise + + Osc %1 harmonic - Osc %1 waveform: - Osc %1 の波形: - - - Osc %1 volume: - Osc %1 の音量: - - - Osc %1 panning: + + + Osc %1 volume - 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. + + + Osc %1 panning + Osc %1 stereo detuning - Osc %1 harmonic: + + 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 - FreeBoyInstrument + lmms::PatternTrack - Sweep time + + Pattern %1 - Sweep direction + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller - Sweep RtShift amount + + Peak Controller Bug - Wave Pattern Duty + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value - Channel 1 volume - チャンネル1の音量 - - - Volume sweep direction + + Modulation amount - Length of each step in sweep + + Attack - Channel 2 volume - チャンネル2の音量 - - - Channel 3 volume - チャンネル3の音量 - - - Channel 4 volume - チャンネル4の音量 - - - Right Output level + + Release - Left Output level + + Treshold - Channel 1 to SO2 (Left) + + Mute output - Channel 2 to SO2 (Left) + + Absolute value - Channel 3 to SO2 (Left) + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found - Channel 4 to SO2 (Left) + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" - Channel 1 to SO1 (Right) + + Error while loading plugin - Channel 2 to SO1 (Right) + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain - Channel 3 to SO1 (Right) + + Size - Channel 4 to SO1 (Right) + + Color - Treble + + Output gain + + + + + lmms::SaControls + + + Pause + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + Bass - ベース + - Shift Register width + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning - FreeBoyInstrumentView + lmms::SampleClip - Sweep Time: + + Sample not found - - 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 + lmms::SampleTrack - Qsynth: Channel Preset + + Volume - Bank selector + + Panning + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + 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 - - Bank - - - - Patch - パッチ - - + Gain - ゲイン + + Reverb - リバーブ - - - Reverb Roomsize - Reverb Damping + + Reverb room size - Reverb Width + + Reverb damping - Reverb Level + + Reverb width + + Reverb level + + + + Chorus - コーラス - - - Chorus Lines - Chorus Level + + Chorus voices - Chorus Speed + + Chorus level - Chorus Depth + + Chorus speed + + Chorus depth + + + + A soundfont %1 could not be loaded. - sf2InstrumentView + lmms::SfxrInstrument - 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: - - - - Open SoundFont file - サウンドフォント ファイルを開く - - - SoundFont2 Files (*.sf2) + + Wave - sfxrInstrument + lmms::SidInstrument - Wave Form - 波形 - - - - sidInstrument - - Cutoff - カットオフ + + Cutoff frequency + + Resonance - レゾナンス + + Filter type - フィルターの種類 + + Voice 3 off + Volume - 音量 + + Chip model - sidInstrumentView + lmms::SlicerT - Volume: - 音量: - - - Resonance: - レゾナンス: - - - Cutoff frequency: + + Note threshold - High-Pass filter - High-Passフィルター - - - Band-Pass filter - Band-Passフィルター - - - Low-Pass filter - Low-Passフィルター - - - Voice3 Off + + FadeOut - 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. + + Original bpm - Decay: - ディケイ: - - - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. + + Slice snap - Sustain: - サスティン: - - - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. + + BPM sync - Release: - リリース: - - - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. + + + slice_%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. - - - - 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. + + Sample not found: %1 - stereoEnhancerControlDialog + lmms::Song - WIDE + + Tempo - Width: + + 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: - stereoEnhancerControls + lmms::StereoEnhancerControls + Width - stereoMatrixControlDialog - - Left to Left Vol: - 左から左の音量: - - - Left to Right Vol: - 左から右の音量: - - - Right to Left Vol: - 右から左の音量: - - - Right to Right Vol: - 右から右の音量: - - - - stereoMatrixControls + lmms::StereoMatrixControls + Left to Left - 左から左 + + Left to Right - 左から右 + + Right to Left - 右から左 + + Right to Right - 右から右 + - vestigeInstrument + lmms::Track + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + Loading plugin - プラグインを読み込んでいます + - Please wait while loading VST-plugin... - VSTプラグインを読み込む間お待ちください... + + Please wait while loading the VST plugin... + - vibed + lmms::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 - Octave %1 - オクターブ %1 + + String %1 + - 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. - -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 + lmms::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 + lmms::VstPlugin - INPUT - 入力 - - - Input gain: - 入力ゲイン: - - - OUTPUT - 出力 - - - Output gain: - 出力ゲイン: - - - Reset waveform - 波形をリセット - - - Click here to reset the wavegraph back to default + + + The VST plugin %1 could not be loaded. - Smooth waveform + + Open Preset - Click here to apply smoothing to wavegraph + + + VST Plugin Preset (*.fxp *.fxb) - Increase graph amplitude by 1dB + + : default - Click here to increase wavegraph amplitude by 1dB + + Save Preset - Decrease graph amplitude by 1dB + + .fxp - Click here to decrease wavegraph amplitude by 1dB + + .FXP - Clip input + + .FXB - Clip input signal to 0dB + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... - waveShaperControls + lmms::WatsynInstrument - Input gain - 入力ゲイン + + Volume A1 + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + Output gain - 出力ゲイン + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + \ No newline at end of file diff --git a/data/locale/ka.ts b/data/locale/ka.ts new file mode 100644 index 000000000..bd7890457 --- /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 + + + + + MixerChannelView + + + Channel send amount + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + + + + MixerChannelLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + 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 + + + + + InstrumentTuningView + + + MASTER PITCH + + + + + Enables the use of master pitch + + + + + InstrumentSoundShaping + + + VOLUME + + + + + Volume + + + + + CUTOFF + + + + + + Cutoff frequency + + + + + RESO + + + + + Resonance + + + + + Envelopes/LFOs + + + + + Filter type + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 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..b45bfb769 100644 --- a/data/locale/ko.ts +++ b/data/locale/ko.ts @@ -1,9332 +1,19057 @@ - - - + 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 - 누구나 쉽게 할 수 있는 음악 제작. + LMMS - 누구나 쉽게 음악을 제작할 수 있습니다. + Copyright © %1. - 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! 송현진 (Hyunjin Song) <tteu.ingog@gmail.com> 방성범 (Bang Seongbeom) <bangseongbeom@gmail.com> +이정희 (Junghee Lee) <daemul72@gmail.com> +LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 싶다면 저희를 도와주세요! LMMS 관리자에게 연락하기만 하면 됩니다! + + + + License + 라이선스 + + + + AboutJuceDialog + + + About JUCE + JUCE 정보 + + + + <b>About JUCE</b> + <b>JUCE 정보</b> + + + + This program uses JUCE version 3.x.x. + 이 프로그램은 JUCE 버전 3.x.x를 사용합니다. + + + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. -LMMS를 다른 언어로 번역하고 싶다거나 기존 번역을 개선하고 싶다면 저희를 도와주세요! LMMS 관리자와의 연락을 통해 참여하실 수 있습니다. +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + + + + + This program uses JUCE version + 이 프로그램은 JUCE 버전을 사용합니다. - AmplifierControlDialog + AudioDeviceSetupWidget - VOL - 음량 - - - Volume: - 음량: - - - PAN - 패닝 - - - Panning: - 패닝: - - - LEFT - 왼쪽 - - - Left gain: - 왼쪽 이득: - - - RIGHT - 오른쪽 - - - Right gain: - 오른쪽 이득: + + [System Default] + - AmplifierControls + CarlaAboutW - Volume - 음량 + + About Carla + Carla 정보 - Panning - 패닝 + + About + 정보 - Left gain - 왼쪽 이득 + + About text here + 텍스트에 대한 정보 - Right gain - 오른쪽 이득 + + Extended licensing here + 여기에서 확장된 라이선싱 + + + + Artwork + 아트워크 + + + + Using KDE Oxygen icon set, designed by Oxygen Team. + Oxygen Team이 디자인한 KDE Oxygen 아이콘 세트를 사용합니다. + + + + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. + Calf Studio Gear, OpenAV 및 OpenOctave 프로젝트의 노브, 배경 및 기타 작은 아트워크가 포함되어 있습니다. + + + + VST is a trademark of Steinberg Media Technologies GmbH. + VST는 Steinberg Media Technologies GmbH의 상표입니다. + + + + Special thanks to António Saraiva for a few extra icons and artwork! + 몇 가지 추가 아이콘과 아트워크를 제공한 António Saraiva에게 특별한 감사를 드립니다! + + + + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. + LV2 로고는 Peter Shorthose의 컨셉을 바탕으로 Thorsten Wilms가 디자인했습니다. + + + + MIDI Keyboard designed by Thorsten Wilms. + Thorsten Wilms가 디자인한 MIDI 키보드. + + + + Carla, Carla-Control and Patchbay icons designed by DoosC. + DoosC에서 디자인한 Carla, Carla-Control 및 Patchbay 아이콘입니다. + + + + Features + 기능 + + + + AU/AudioUnit: + AU/AudioUnit: + + + + LADSPA: + LADSPA: + + + + + + + + + + + TextLabel + TextLabel + + + + VST2: + VST2: + + + + DSSI: + DSSI: + + + + LV2: + LV2: + + + + VST3: + VST3: + + + + OSC + OSC + + + + Host URLs: + 호스트 URL: + + + + Valid commands: + 올바른 명령: + + + + valid osc commands here + 여기에서 올바른 osc 명령 + + + + 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 + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +this service if you wish), that you receive source code or can get it +if you want it, that you can change the software or use pieces of it +in new free programs; and that you know you can do these things. + + To protect your rights, we need to make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. You must make sure that they, too, receive or can get the +source code. And you must show them these terms so they know their +rights. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute verbatim copies of the Program's +source code as you receive it, in any medium, provided that you +conspicuously and appropriately publish on each copy an appropriate +copyright notice and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + +Each version is given a distinguishing version number. If the Program +specifies a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY +FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN +OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES +PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED +OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS +TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE +PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, +REPAIR OR CORRECTION. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, +INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING +OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED +TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY +YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER +PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE +POSSIBILITY OF SUCH DAMAGES. + + END OF TERMS AND CONDITIONS + + + + + OSC Bridge Version + OSC Bridge 버전 + + + + Plugin Version + 플러그인 버전 + + + + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> + <br>버전 %1<br>Carla는 모든 기능을 갖춘 오디오 플러그인 호스트%2입니다.<br><br>Copyright (C) 2011-2019 falkTX<br> + + + + + (Engine not running) + (엔진이 실행되지 않음) + + + + Everything! (Including LRDF) + 모든 것! (LRDF 포함) + + + + Everything! (Including CustomData/Chunks) + 모든 것! (사용자지정데이터/청크 포함) + + + + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + 약 110&#37; 완료 (사용자 지정 확장 사용중)<br/>구현된 기능/확장:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + + + + + + Using Juce host + Juce 호스트 사용 중 + + + + About 85% complete (missing vst bank/presets and some minor stuff) + 약 85% 완료 (vst 뱅크/프리셋 및 일부 마이너 스터프 누락) - AudioAlsaSetupWidget + CarlaHostW - DEVICE - 장치 + + MainWindow + 기본 창 - CHANNELS - 채널 + + Rack + - - - AudioFileProcessorView - Reverse sample - 샘플 역으로 + + Patchbay + Patchbay - Disable loop - 반복 비활성화 + + Logs + 로그 - Enable loop - 반복 활성화 + + Loading... + 불러오는 중... - Continue sample playback across notes - 샘플을 여러 음표에 걸쳐 계속 재생 + + Save + 저장하기 - Amplify: - 증폭: - - - Loopback point: - 루프 시작점: - - - Open sample - 샘플 열기 - - - Enable ping-pong loop - 양방향 반복 활성화 - - - Start point: - 시작점: - - - End point: - 끝점: - - - - AudioFileProcessorWaveView - - Sample length: - 샘플 길이: - - - - AudioJack - - JACK client restarted - JACK 클라이언트 다시 시작됨 - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - 알 수 없는 이유로 인해 LMMS와 JACK과의 연결이 끊겼습니다. LMMS의 JACK 드라이버를 다시 시작합니다. 수동으로 연결을 시도할 수도 있습니다. - - - JACK server down - JACK 서버 다운됨 - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - JACK 서버가 종료된 것 같습니다. 더 이상 작업을 진행할 수 없습니다. 프로젝트를 저장한 뒤 JACK과 LMMS를 다시 시작하세요. - - - CLIENT-NAME - 클라이언트 이름 - - - CHANNELS - 채널 - - - - AudioOss - - DEVICE - 장치 - - - CHANNELS - 채널 - - - - AudioPortAudio::setupWidget - - BACKEND - 드라이버 - - - DEVICE - 장치 - - - - AudioPulseAudio - - DEVICE - 장치 - - - CHANNELS - 채널 - - - - AudioSdl::setupWidget - - DEVICE - 장치 - - - - AudioSndio - - DEVICE - 장치 - - - CHANNELS - 채널 - - - - AudioSoundIo::setupWidget - - BACKEND - 드라이버 - - - DEVICE - 장치 - - - - AutomatableModel - - &Reset (%1%2) - 초기화 (%1%2)(&R) - - - &Copy value (%1%2) - 값 복사 (%1%2)(&C) - - - &Paste value (%1%2) - 값 붙여넣기 (%1%2)(&P) - - - 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! - 컨트롤의 컨텍스트 메뉴에서 오토메이션 패턴을 여시기 바랍니다! - - - Values copied - 값 복사됨 - - - All selected values were copied to the clipboard. - 선택한 모든 값이 클립보드에 복사되었습니다. - - - - AutomationEditorWindow - - Play/pause current pattern (Space) - 현재 패턴 재생/일시정지 (Space) - - - Stop playing of current pattern (Space) - 현재 패턴 정지 (Space) - - - Edit actions - 편집 동작 - - - Draw mode (Shift+D) - 그리기 모드 (Shift+D) - - - Erase mode (Shift+E) - 지우기 모드 (Shift+E) - - - 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 - - - - Quantization controls - - - - Quantization - - - - Automation Editor - no pattern - 오토메이션 편집기 - 패턴 없음 - - - Automation Editor - %1 - 오토메이션 편집기 - %1 - - - Model is already connected to this pattern. - 대상이 이미 패턴에 연결되어 있습니다. - - - Horizontal zooming - - - - Vertical zooming - - - - - AutomationPattern - - Drag a control while pressing <%1> - <%1> 키를 누른 채로 드래그 - - - - AutomationPatternView - - Open in Automation editor - 오토메이션 편집기에서 열기 - - - Clear + + Clear 지우기 - Reset name - 이름 초기화 + + Ctrl+L + - Change name - 이름 바꾸기 + + Auto-Scroll + - Set/clear record - 녹음 설정/해제 + + Buffer Size: + 버퍼 크기: - Flip Vertically (Visible) - 상하 반전 + + Sample Rate: + 샘플 레이트: - Flip Horizontally (Visible) - 좌우 반전 + + ? Xruns + ? Xruns - %1 Connections - %1개의 연결 + + DSP Load: %p% + DSP 불러오기: %p% - Disconnect "%1" - "%1" 연결 해제 + + &File + 파일(&F) - Model is already connected to this pattern. - 대상이 이미 패턴과 연결되어 있습니다. + + &Engine + 엔진(&E) + + + + &Plugin + 플러그인(&P) + + + + Macros (all plugins) + 매크로 (모든 플러그인) + + + + &Canvas + 캔버스(&C) + + + + Zoom + 확대/축소 + + + + &Settings + 설정(&S) + + + + &Help + 도움말(&H) + + + + Tool Bar + + + + + Disk + 디스크 + + + + + Home + + + + + Transport + 트랜스포트 + + + + Playback Controls + 플레이백 컨트롤 + + + + Time Information + 시간 정보 + + + + Frame: + 프레임: + + + + 000'000'000 + 000'000'000 + + + + Time: + 시간: + + + + 00:00:00 + 00:00:00 + + + + BBT: + BBT: + + + + 000|00|0000 + 000|00|0000 + + + + Settings + 설정 + + + + BPM + BPM + + + + Use JACK Transport + JACK 트랜스포트 사용하기 + + + + Use Ableton Link + Ableton 링크 사용하기 + + + + &New + 새로 만들기(&N) + + + + Ctrl+N + Ctrl+N + + + + &Open... + 열기(&O)... + + + + + Open... + 열기... + + + + Ctrl+O + Ctrl+O + + + + &Save + 저장(&S) + + + + Ctrl+S + Ctrl+S + + + + Save &As... + 다른 이름으로 저장(&A)... + + + + + Save As... + 다른 이름으로 저장하기... + + + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Quit + 종료(&Q) + + + + Ctrl+Q + Ctrl+Q + + + + &Start + 시작(&S) + + + + F5 + F5 + + + + St&op + 중지(&O) + + + + F6 + F6 + + + + &Add Plugin... + 플러그인 추가(&A)... + + + + Ctrl+A + Ctrl+A + + + + &Remove All + 모두 제거(&R) + + + + Enable + 활성화 + + + + Disable + 비활성화 + + + + 0% Wet (Bypass) + 0% 웨트 (바이패스) + + + + 100% Wet + 100% 웨트 + + + + 0% Volume (Mute) + 0% 볼륨 (음소거) + + + + 100% Volume + 100% 볼륨 + + + + Center Balance + 중앙 밸런스 + + + + &Play + 연주(&P) + + + + Ctrl+Shift+P + Ctrl+Shift+P + + + + &Stop + 중지(&S) + + + + Ctrl+Shift+X + Ctrl+Shift+X + + + + &Backwards + 반대방향(&B) + + + + Ctrl+Shift+B + Ctrl+Shift+B + + + + &Forwards + 정방향(&F) + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + 편곡(&A) + + + + Ctrl+G + Ctrl+G + + + + + &Refresh + 새로고침(&R) + + + + Ctrl+R + Ctrl+R + + + + Save &Image... + 이미지 저장(&I)... + + + + Auto-Fit + 자동-맞춤 + + + + Zoom In + 확대 + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + 축소 + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + 100% 확대/축소 + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + 도구모음 표시(&T) + + + + &Configure Carla + Carla 구성(&C) + + + + &About + 정보(&A) + + + + About &JUCE + JUCE 정보(&J) + + + + About &Qt + Qt 정보(&Q) + + + + Show Canvas &Meters + 캔버스 미터 표시(&M) + + + + Show Canvas &Keyboard + 캔버스 키보드 표시(&K) + + + + Show Internal + 내부 표시하기 + + + + Show External + 외부 표시하기 + + + + Show Time Panel + 시간 패널 표시하기 + + + + Show &Side Panel + 측면 패널 표시(&S) + + + + Ctrl+P + + + + + &Connect... + 연결(&C)... + + + + Compact Slots + 콤팩트 슬롯 + + + + Expand Slots + 슬롯 확장 + + + + Perform secret 1 + 시크릿 1 연주하기 + + + + Perform secret 2 + 시크릿 2 연주하기 + + + + Perform secret 3 + 시크릿 3 연주하기 + + + + Perform secret 4 + 시크릿 4 연주하기 + + + + Perform secret 5 + 시크릿 5 연주하기 + + + + Add &JACK Application... + JACK 응용프로그램 추가(&J)... + + + + &Configure driver... + 드라이버 구성(&C)... + + + + Panic + 패닉 + + + + Open custom driver panel... + 사용자 지정 드라이버 패널 열기... + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + - AutomationTrack + CarlaHostWindow - Automation track - 오토메이션 트랙 + + Export as... + 다른 이름으로 내보내기... + + + + + + + Error + 오류 + + + + Failed to load project + 프로젝트를 불러오지 못했습니다 + + + + Failed to save project + 프로젝트를 저장하지 못했습니다 + + + + Quit + 종료 + + + + Are you sure you want to quit Carla? + Carla를 종료하시겠습니까? + + + + Could not connect to Audio backend '%1', possible reasons: +%2 + 오디오 백엔드 '%1'에 연결할 수 없습니다. 가능한 이유: +%2 + + + + Could not connect to Audio backend '%1' + 오디오 백엔드 '%1'에 연결할 수 없습니다 + + + + Warning + 경고 + + + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + 아직 일부 플러그인이 불려와 있으므로, 엔진을 중지하려면 해당 플러그인을 제거해야 합니다. +지금 이 작업을 하시겠습니까? - BBEditor + CarlaSettingsW - Beat+Bassline Editor - 비트/베이스 라인 편집기 + + Settings + 설정 - Play/pause current beat/bassline (Space) - 현재 비트/베이스 라인 재생/일시정지 (Space) + + main + 기본 - Stop playback of current beat/bassline (Space) - 현재 비트/베이스 라인 정지 (Space) + + canvas + 캔버스 - Beat selector - 비트 선택기 + + engine + 엔진 - Track and step actions - + + osc + osc - Add beat/bassline - 비트/베이스 라인 추가 + + file-paths + 파일 경로 - Add sample-track - 샘플 트랙 추가 + + plugin-paths + 플러그인 경로 - Add automation-track - 오토메이션 트랙 추가 + + wine + wine - Remove steps - + + experimental + 실험적 - Add steps - + + Widget + 위젯 - Clone Steps - + + + Main + 기본 + + + + + Canvas + 캔버스 + + + + + Engine + 엔진 + + + + File Paths + 파일 경로 + + + + Plugin Paths + 플러그인 경로 + + + + Wine + Wine + + + + + Experimental + 실험적 + + + + <b>Main</b> + <b>기본</b> + + + + Paths + 경로 + + + + Default project folder: + 기본 프로젝트 폴더: + + + + Interface + 인터페이스 + + + + Use "Classic" as default rack skin + + + + + Interface refresh interval: + 인터페이스 새로고침 간격: + + + + + ms + ms + + + + Show console output in Logs tab (needs engine restart) + 로그 탭에 콘솔 출력 표시하기 (엔진 시작해야 함) + + + + Show a confirmation dialog before quitting + 종료 전에 확인 대화상자 표시하기 + + + + + Theme + 테마 + + + + Use Carla "PRO" theme (needs restart) + Carla "PRO" 테마 사용하기 (다시 시작해야 함) + + + + Color scheme: + 색상 구성표: + + + + Black + 검정 + + + + System + 시스템 + + + + Enable experimental features + 실험적 기능 활성화 + + + + <b>Canvas</b> + <b>캔버스</b> + + + + Bezier Lines + 베지어 라인 + + + + Theme: + 테마: + + + + Size: + 크기: + + + + 775x600 + 775x600 + + + + 1550x1200 + 1550x1200 + + + + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 + + + + + Options + 옵션 + + + + Auto-hide groups with no ports + 포트가 없는 그룹 자동 숨김 + + + + Auto-select items on hover + 마우스 오버 시 항목 자동 선택하기 + + + + Basic eye-candy (group shadows) + Basic eye-candy (그룹 섀도우) + + + + Render Hints + 렌더 힌트 + + + + Anti-Aliasing + 앤티앨리어싱 + + + + Full canvas repaints (slower, but prevents drawing issues) + 전체 캔버스 다시 그리기 (느리지만 그리기 문제 방지) + + + + <b>Engine</b> + <b>엔진</b> + + + + + Core + 코어 + + + + Single Client + 단일 클라이언트 + + + + Multiple Clients + 여러 클라이언트 + + + + + Continuous Rack + Continuous Rack + + + + + Patchbay + Patchbay + + + + Audio driver: + 오디오 드라이버: + + + + Process mode: + 프로세스 모드: + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + 내장된 '편집' 대화상자에서 허용할 매개변수의 최대 개수 + + + + Max Parameters: + 최대 매개변수: + + + + ... + ... + + + + Reset Xrun counter after project load + 프로젝트 불러온 후 Xrun 카운터 재설정 + + + + Plugin UIs + 플러그인 UI + + + + + How much time to wait for OSC GUIs to ping back the host + OSC GUI가 호스트를 ping back할 때까지 기다려야 하는 시간 + + + + UI Bridge Timeout: + UI 브리지 시간초과: + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + 가능한 경우 OSC-GUI 브리지를 사용하여, DSP 코드에서 UI를 분리합니다 + + + + Use UI bridges instead of direct handling when possible + 가능한 경우 직접 취급하지 않고 UI 브리지 사용하기 + + + + Make plugin UIs always-on-top + 플러그인 UI를 항상 위에 표시 + + + + Make plugin UIs appear on top of Carla (needs restart) + Carla 상단에 플러그인 UI 표시 (다시 시작해야 함) + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + 참고: 플러그인 브리지 UI는 macOS의 Carla에서 관리할 수 없습니다 + + + + + Restart the engine to load the new settings + 새 설정을 불러오려면 엔진을 다시 시작합니다 + + + + <b>OSC</b> + <b>OSC</b> + + + + Enable OSC + OSC 활성화 + + + + Enable TCP port + TCP 포트 활성화 + + + + + Use specific port: + 특정 포트 사용: + + + + Overridden by CARLA_OSC_TCP_PORT env var + CARLA_OSC_TCP_PORT env var에 의해 재정의됨 + + + + + Use randomly assigned port + 무작위로 할당된 포트 사용하기 + + + + Enable UDP port + UDP 포트 활성화 + + + + Overridden by CARLA_OSC_UDP_PORT env var + CARLA_OSC_UDP_PORT env var에 의해 재정의됨 + + + + DSSI UIs require OSC UDP port enabled + DSSI UI에는 OSC UDP 포트가 활성화되어 있어야 합니다 + + + + <b>File Paths</b> + <b>파일 경로</b> + + + + Audio + 오디오 + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + "오디오파일" 플러그인에 사용됨 + + + + Used for the "midifile" plugin + "미디파일" 플러그인에 사용됨 + + + + + Add... + 추가하기... + + + + + Remove + 제거하기 + + + + + Change... + 변경하기... + + + + <b>Plugin Paths</b> + <b>플러그인 경로</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + 새 플러그인을 찾기위해 Carla 다시 시작 + + + + <b>Wine</b> + <b>Wine</b> + + + + Executable + 실행 가능 + + + + Path to 'wine' binary: + 'wine' 바이너리 경로: + + + + Prefix + 접두사 + + + + Auto-detect Wine prefix based on plugin filename + 플러그인 파일 이름을 기반으로 Wine 접두사 자동 감지 + + + + Fallback: + 폴백: + + + + Note: WINEPREFIX env var is preferred over this fallback + 참고: WINEPREFIX env var는 이 폴백보다 선호됩니다 + + + + Realtime Priority + 실시간 우선순위 + + + + Base priority: + 기본 우선순위: + + + + WineServer priority: + WineServer 우선순위: + + + + These options are not available for Carla as plugin + 이 옵션은 Carla를 플러그인으로 사용할 수 없습니다 + + + + <b>Experimental</b> + <b>실험적</b> + + + + Experimental options! Likely to be unstable! + 실험적인 옵션입니다! 불안정할 가능성이 있습니다! + + + + Enable plugin bridges + 플러그인 브리지 활성화 + + + + Enable Wine bridges + Wine 브리지 활성화 + + + + Enable jack applications + JACK 응용프로그램 활성화 + + + + Export single plugins to LV2 + 단일 플러그인을 LV2로 내보내기 + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + 전역 네임스페이스에 Carla 백엔드 불러오기 (권장하지 않음) + + + + Fancy eye-candy (fade-in/out groups, glow connections) + Fancy eye-candy (페이드-인/아웃 그룹, 글로 연결) + + + + Use OpenGL for rendering (needs restart) + 렌더링에 OpenGL 사용하기 (다시 시작해야 함) + + + + High Quality Anti-Aliasing (OpenGL only) + 고화질 앤티앨리어싱 (OpenGL만 해당) + + + + Render Ardour-style "Inline Displays" + Render Ardour 스타일의 "인라인 디스플레이" + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + 동시에 2개의 인스턴스를 실행하여 모노 플러그인을 스테레오로 강제 실행합니다. +이 모드는 VST 플러그인에 사용할 수 없습니다. + + + + Force mono plugins as stereo + 모노 플러그인을 스테레오로 강제 적용 + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + 가능한 경우 브리지 모드에서 플러그인 실행 + + + + + + + Add Path + 경로 추가하기 - BBTCOView + Dialog - Open in Beat+Bassline-Editor - 비트/베이스 라인 편집기에서 열기 + + Carla Control - Connect + Carla 컨트롤 - 연결하기 - Reset name - 이름 초기화 + + Remote setup + 원격 셋업 - Change name - 이름 바꾸기 + + UDP Port: + UDP 포트: - Change color - 색상 바꾸기 + + Remote host: + 원격 호스트: - Reset color to default - 색상을 기본값으로 되돌리기 + + TCP Port: + TCP 포트: + + + + Set value + 값 지정하기 + + + + TextLabel + TextLabel + + + + Scale Points + 스케일 포인트 - BBTrack + DriverSettingsW - Beat/Bassline %1 - 비트/베이스 라인 %1 + + Driver Settings + 드라이버 설정 - Clone of %1 - %1의 복제 - - - - BassBoosterControlDialog - - FREQ - 주파수 + + Device: + 디바이스: - Frequency: - 주파수: - - - GAIN - 이득 - - - Gain: - 이득: - - - RATIO - 비율 - - - Ratio: - 비율: - - - - BassBoosterControls - - Frequency - 주파수 - - - Gain - 이득 - - - Ratio - 비율 - - - - BitcrushControlDialog - - IN - 입력 - - - OUT - 출력 - - - GAIN - 이득 - - - NOISE - 잡음 - - - CLIP - 클리핑 - - - FREQ - 주파수 + + Buffer size: + 버퍼 크기: + Sample rate: 샘플 레이트: - STEREO - 스테레오 + + Triple buffer + 트리플 버퍼 - Stereo difference: - 좌우 차이: + + Show Driver Control Panel + 드라이버 제어판 표시하기 - QUANT - - - - Levels: - - - - Input gain: - 입력 이득: - - - Input noise: - - - - Output gain: - 출력 이득: - - - Output clip: - - - - Rate enabled - - - - Enable sample-rate crushing - - - - Depth enabled - - - - Enable bit-depth crushing - - - - - BitcrushControls - - Input gain - 입력 이득 - - - Input noise - - - - Output gain - 출력 이득 - - - Output clip - - - - Sample rate - - - - Stereo difference - - - - Levels - - - - Rate enabled - - - - Depth enabled - - - - - CarlaInstrumentView - - Show GUI - GUI 표시 - - - - Controller - - Controller %1 - 컨트롤러 %1 - - - - ControllerConnectionDialog - - Connection Settings - 연결 설정 - - - MIDI CONTROLLER - MIDI 컨트롤러 - - - Input channel - 입력 채널 - - - CHANNEL - 채널 - - - Input controller - 입력 컨트롤러 - - - CONTROLLER - 컨트롤러 - - - Auto Detect - 자동 감지 - - - MIDI-devices to receive MIDI-events from - - - - USER CONTROLLER - 사용자 지정 컨트롤러 - - - MAPPING FUNCTION - 매핑 함수 - - - OK - 확인 - - - Cancel - 취소 - - - LMMS - LMMS - - - Cycle Detected. - 순환 연결이 감지되었습니다. - - - - ControllerRackView - - Controller Rack - 컨트롤러 랙 - - - Add - 추가 - - - Confirm Delete - 삭제 확인 - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - 정말 삭제하시겠습니까? 이 컨트롤러와의 연결이 존재합니다. 이 동작은 취소할 수 없습니다. - - - - ControllerView - - Controls - 컨트롤 - - - Rename controller - 컨트롤러 이름 바꾸기 - - - Enter the new name for this controller - 컨트롤러의 새 이름을 입력하세요 - - - LFO - LFO - - - &Remove this controller - 컨트롤러 제거(&R) - - - Re&name this controller - 컨트롤러 이름 바꾸기(&N) - - - - CrossoverEQControlDialog - - Band 1/2 crossover: - - - - 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 - - Feedback - 피드백 - - - Output gain - 출력 이득 - - - Delay samples - - - - LFO frequency - LFO 주파수 - - - LFO amount - - - - - DelayControlsDialog - - DELAY - 지연 - - - FDBK - 피드백 - - - RATE - - - - AMNT - - - - Gain - 이득 - - - Delay time - - - - Feedback amount - - - - LFO frequency - - - - LFO amount - - - - Out gain - 출력 이득 - - - - DualFilterControlDialog - - FREQ - 주파수 - - - Cutoff frequency - 차단 주파수 - - - RESO - 공명 - - - Resonance - 공명 - - - GAIN - 이득 - - - Gain - 이득 - - - MIX - - - - Mix - - - - Filter 1 enabled - 필터 1 활성화됨 - - - Filter 2 enabled - 필터 2 활성화됨 - - - Enable/disable filter 1 - - - - Enable/disable filter 2 - - - - - DualFilterControls - - Filter 1 enabled - 필터 1 활성화됨 - - - Filter 1 type - 필터 1 종류 - - - Q/Resonance 1 - 필터 1 Q/공명 - - - Gain 1 - 이득 1 - - - Mix - - - - Filter 2 enabled - 필터 2 활성화됨 - - - Filter 2 type - 필터 2 종류 - - - Q/Resonance 2 - Q/공명 2 - - - Gain 2 - 이득 2 - - - Notch - 노치 - - - Moog - Moog - - - 2x Moog - 2x Moog - - - 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 - 효과 활성화됨 - - - - EffectRackView - - EFFECTS CHAIN - 효과 체인 - - - Add effect - 효과 추가 - - - - EffectSelectDialog - - Add effect - 효과 추가 - - - Name - 이름 - - - Type - 형태 - - - Description - 요약 - - - Author - 개발자 - - - - EffectView - - On/Off - 켬/끔 - - - W/D - - - - Wet Level: - - - - DECAY - - - - Time: - - - - GATE - 게이트 - - - Gate: - 게이트: - - - Controls - 컨트롤 - - - Move &up - 위로 이동(&U) - - - Move &down - 아래로 이동(&D) - - - &Remove this plugin - 플러그인 제거(&R) - - - - EnvelopeAndLfoParameters - - Env pre-delay - - - - Env attack - - - - Env hold - - - - Env decay - - - - Env sustain - - - - Env release - - - - Env mod amount - - - - LFO pre-delay - - - - LFO attack - - - - LFO frequency - - - - LFO mod amount - - - - LFO wave shape - - - - LFO frequency x 100 - - - - Modulate env amount - - - - - EnvelopeAndLfoView - - DEL - - - - 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: - 주파수: - - - Multiply LFO frequency by 100 - - - - MODULATE ENV AMOUNT - - - - Control envelope amount by this LFO - - - - Drag and drop a sample into this window. - - - - - EqControls - - Input gain - 입력 이득 - - - Output gain - 출력 이득 - - - Peak 1 gain - 피크 1 이득 - - - Peak 2 gain - 피크 2 이득 - - - Peak 3 gain - 피크 3 이득 - - - Peak 4 gain - 피크 4 이득 - - - HP res - 고역 필터 공명 - - - Peak 1 BW - 피크 1 대역폭 - - - Peak 2 BW - 피크 2 대역폭 - - - Peak 3 BW - 피크 3 대역폭 - - - Peak 4 BW - 피크 4 대역폭 - - - LP res - 저역 필터 공명 - - - HP freq - 고역 필터 주파수 - - - Peak 1 freq - 피크 1 주파수 - - - Peak 2 freq - 피크 2 주파수 - - - Peak 3 freq - 피크 3 주파수 - - - Peak 4 freq - 피크 4 주파수 - - - LP freq - 저역 필터 주파수 - - - HP active - - - - Peak 1 active - 피크 1 활성화 - - - Peak 2 active - 피크 2 활성화 - - - Peak 3 active - 피크 3 활성화 - - - Peak 4 active - 피크 4 활성화 - - - 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 - - - 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 - - - - Peak 1 - 피크 1 - - - Peak 2 - 피크 2 - - - Peak 3 - 피크 3 - - - Peak 4 - 피크 4 - - - LP - - - - Gain - 이득 - - - Bandwidth: - 대역폭: - - - Octave - 옥타브 - - - Resonance : - 공명 : - - - Frequency: - 주파수: - - - Low-shelf - - - - High-shelf - - - - Input gain - 입력 이득 - - - Output gain - 출력 이득 - - - LP group - - - - HP group - - - - - EqHandle - - Reso: - 공명: - - - BW: - 대역폭: - - - Freq: - 주파수: + + Restart the engine to load the new settings + 새 설정을 불러오려면 엔진을 다시 시작합니다 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 - 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 between loop markers - 반복 마커 사이 구간만 내보내기 - - - 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(으)로 프로젝트 내보내기 - - - 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비트 실수 + + 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 - + 0차 홀드 + Sinc worst (fastest) - + Sinc 최저 (가장 빠름) + Sinc medium (recommended) - + Sinc 중간 (권장됨) + Sinc best (slowest) - + Sinc 최고 (가장 느림) - Oversampling: - + + Start + 시작 - ( Fastest - biggest ) - - - - ( Slowest - smallest ) - - - - - Fader - - Please enter a new value between %1 and %2: - %1부터 %2까지의 값을 입력하세요: - - - Set value - 값 설정 - - - - FileBrowser - - Browser - 탐색기 - - - Search - 검색 - - - Refresh list - 목록 새로고침 - - - - FileBrowserTreeWidget - - Send to active instrument-track - 활성화된 악기 트랙에서 열기 - - - Open in new instrument-track/Song Editor - 새로운 악기 트랙이나 노래 편집기에서 열기 - - - Open in new instrument-track/B+B Editor - 새로운 악기 트랙이나 비트/베이스 라인 편집기에서 열기 - - - Loading sample - 샘플을 로딩하는 중 - - - Please wait, loading sample for preview... - 미리보기를 위하여 샘플을 로딩하는 중입니다. 잠시 기다려 주세요... - - - Error - 오류 - - - does not appear to be a valid - - - - file - 파일 - - - --- Factory files --- - - - - - FlangerControls - - Seconds - - - - Regen - - - - Noise - 잡음 - - - Invert - 파형 반전 - - - Delay samples - - - - LFO frequency - LFO 주파수 - - - - FlangerControlsDialog - - DELAY - 지연 - - - RATE - - - - Period: - - - - AMNT - - - - Amount: - - - - FDBK - 피드백 - - - NOISE - 잡음 - - - 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 - - - - Right output level - - - - Left output level - - - - - 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 - - - - 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) - - - - 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 - - Channel send amount - - - - Move &left - 왼쪽으로 이동(&L) - - - Move &right - 오른쪽으로 이동(&R) - - - Rename &channel - 채널 이름 바꾸기(&C) - - - R&emove channel - 채널 제거(&R) - - - Remove &unused channels - 사용하지 않는 채널 제거(&U) - - - - FxLineLcdSpinBox - - Assign to: - 채널 할당: - - - New FX Channel - 새 FX 채널 - - - - FxMixer - - Master - 마스터 - - - FX %1 - FX %1 - - - Volume - 음량 - - - Mute - 음소거 - - - Solo - 독주 - - - - FxMixerView - - FX-Mixer - FX-믹서 - - - FX Fader %1 - FX 페이더 %1 - - - Mute - 음소거 - - - Mute this FX channel - 이 채널 음소거 - - - Solo - 독주 - - - Solo FX channel - 이 채널 독주 - - - - FxRoute - - Amount to send from channel %1 to channel %2 - 채널 %1에서 채널 %2(으)로 보낼 양 - - - - GigInstrument - - Bank - 뱅크 - - - Patch - 패치 - - - Gain - 이득 - - - - GigInstrumentView - - Open GIG file - GIG 파일 열기 - - - GIG Files (*.gig) - GIG 파일 (*.gig) - - - Choose patch - - - - Gain: - 이득: - - - - GuiApplication - - Working directory - 작업 경로 - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - LMMS 작업 경로 %1이(가) 존재하지 않습니다. 지금 만드시겠습니까? 나중에 편집 -> 설정에서 변경할 수 있습니다. - - - Preparing UI - UI 준비 - - - Preparing song editor - 노래 편집기 준비 - - - Preparing mixer - 믹서 준비 - - - Preparing controller rack - 컨트롤러 랙 준비 - - - Preparing project notes - 프로젝트 노트 준비 - - - Preparing beat/bassline editor - 비트/베이스 라인 편집기 준비 - - - Preparing piano roll - 피아노 롤 준비 - - - Preparing automation editor - 오토메이션 편집기 준비 - - - - InstrumentFunctionArpeggio - - Arpeggio - 아르페지오 - - - Arpeggio type - 아르페지오 형태 - - - Arpeggio range - 아르페지오 범위 - - - 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) - 옥타브 - - - CYCLE - - - - Cycle notes: - - - - note(s) - - - - SKIP - - - - Skip rate: - - - - % - % - - - MISS - - - - Miss rate: - - - - TIME - 시간 - - - Arpeggio time: - 아르페지오 시간: - - - ms - ms - - - GATE - 게이트 - - - Arpeggio gate: - 아르페지오 게이트: - - - Chord: - 코드: - - - Direction: - 방향: - - - Mode: - 모드: + + Cancel + 취소 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 - + 장조 5음 + Minor pentatonic - + 단조 5음 + Jap in sen - + 일본 음계 + Major bebop - + 장조 비밥 + Dominant bebop - + 딸림음 비밥 + Blues - + 블루스 + Arabic - + 아라비아풍 + Enigmatic - + 수수께끼 + Neopolitan - + 네오폴리탄 + Neopolitan minor - + 네오폴리탄 단조 + Hungarian minor - + 헝가리 단조 + Dorian - + 도리아 선법 + Phrygian - + 프리지안 + Lydian - + 리디아 선법 + Mixolydian - + 믹솔리디아 선법 + Aeolian - + 에올리아 선법 + Locrian - + 로크리아 선법 + Minor - + 단조 + Chromatic - + 반음 + Half-Whole Diminished - + 반음 감 + 5 5 + Phrygian dominant - + 프리지안 딸림음 + Persian - - - - Chords - 코드 - - - Chord type - 코드 종류 - - - Chord range - 코드 범위 - - - - InstrumentFunctionNoteStackingView - - STACKING - 코드 쌓기 - - - Chord: - 코드: - - - RANGE - 범위 - - - Chord range: - 코드 범위: - - - octave(s) - 옥타브 - - - - InstrumentMidiIOView - - ENABLE MIDI INPUT - MIDI 입력 활성화 - - - CHANNEL - 채널 - - - VELOCITY - 벨로시티 - - - ENABLE MIDI OUTPUT - MIDI 출력 활성화 - - - PROGRAM - 프로그램 - - - NOTE - - - - 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. - - - - - InstrumentMiscView - - MASTER PITCH - 마스터 피치 - - - Enables the use of master pitch - 마스터 피치 사용 + 페르시안 InstrumentSoundShaping + VOLUME - 음량 + 볼륨 + Volume - 음량 + 볼륨 + CUTOFF 컷오프 + Cutoff frequency 차단 주파수 + RESO 공명 + + Resonance + 공명 + + + + JackAppDialog + + + Add JACK Application + + + + + Note: Features not implemented yet are greyed out + + + + + Application + + + + + Name: + + + + + Application: + + + + + From template + + + + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + 셋업 + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + + + + + JuceAboutW + + + This program uses JUCE version %1. + 이 프로그램은 JUCE 버전 %1을(를) 사용합니다. + + + + MidiPatternW + + + MIDI Pattern + MIDI 패턴 + + + + Time Signature: + 박자표: + + + + + + 1/4 + 1/4 + + + + 2/4 + 2/4 + + + + 3/4 + 3/4 + + + + 4/4 + 4/4 + + + + 5/4 + 5/4 + + + + 6/4 + 6/4 + + + + Measures: + 소절: + + + + + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + + 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) + + + + Esc + + + + + &Insert Mode + 삽입 모드(&I) + + + + F + F + + + + &Velocity Mode + 벨로시티 모드(&V) + + + + D + D + + + + Select All + 모두 선택하기 + + + + A + A + + + + PatchesDialog + + + + Qsynth: Channel Preset + Qsynth: 채널 프리셋 + + + + + 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 Patchbay 악기 + + + + Carla Rack Instrument + Carla Rack 악기 + + + + A dynamic range compressor. + 동적 범위 컴프레서입니다. + + + + A 4-band Crossover Equalizer + 4밴드 크로스오버 이퀄라이저 + + + + A native delay plugin + 기본 내장 딜레이 플러그인 + + + + A Dual filter plugin + 이원화된 필터 플러그인 + + + + plugin for processing dynamics in a flexible way + 유연한 방식으로 동적 프로세싱을 위한 플러그인 + + + + A native eq plugin + 기본 내장 EQ 플러그인 + + + + 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 + 불완전한 모노포닉 이미테이션 TB-303 + + + + plugin for using arbitrary LV2-effects inside LMMS. + LMMS 내에서 임의의 LV2 효과를 사용하기 위한 플러그인입니다. + + + + plugin for using arbitrary LV2 instruments inside LMMS. + LMMS 내에서 임의의 LV2 기기를 사용하기 위한 플러그인입니다. + + + + Filter for exporting MIDI-files from LMMS + MIDI 파일을 LMMS에서 내보내기 위한 필터링 + + + + 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 + Sean Costello의 리버브 알고리즘 + + + + Player for SoundFont files + 사운드폰트 파일용 재생기 + + + + LMMS port of sfxr + sfxr의 LMMS 포트 + + + + Emulation of the MOS6581 and MOS8580 SID. +This chip was used in the Commodore 64 computer. + MOS6581 및 MOS8580 SID의 에뮬레이션. +이 칩은 Commodore 64 컴퓨터에 사용되었습니다. + + + + A graphical spectrum analyzer. + 그래픽 스펙트럼 분석기. + + + + Plugin for enhancing stereo separation of a stereo input file + 스테레오 입력 파일의 스테레오 분리를 향상시키기 위한 플러그인 + + + + Plugin for freely manipulating stereo output + 스테레오 출력을 자유롭게 조작하기 위한 플러그인 + + + + Tuneful things to bang on + 듣기 좋은 것들 + + + + Three powerful oscillators you can modulate in several ways + 다양한 방식으로 변조할 수 있는 3개의 강력한 오실레이터 + + + + A stereo field visualizer. + 스테레오 필드 시각화 도구. + + + + VST-host for using VST(i)-plugins within LMMS + LMMS 내에서 VST(i) 플러그인을 사용하기 위한 VST 호스트 + + + + Vibrating string modeler + 진동 스트링 모델러 + + + + plugin for using arbitrary VST effects inside LMMS. + LMMS 내에서 임의의 VST 효과를 사용하기 위한 플러그인입니다. + + + + 4-oscillator modulatable wavetable synth + 4-오실레이터 조절 가능한 웨이브테이블 신시사이저 + + + + plugin for waveshaping + 웨이브쉐이핑을 위한 플러그인 + + + + Mathematical expression parser + 수리적인 익스프레션 파서 + + + + Embedded ZynAddSubFX + ZynAddSubFX 포함됨 + + + + An all-pass filter allowing for extremely high orders. + 올패스 필터로 매우 높은 오더를 처리할 수 있습니다. + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + + + + + PluginEdit + + + Plugin Editor + 플러그인 편집기 + + + + Edit + 편집하기 + + + + Control + 컨트롤 + + + + MIDI Control Channel: + MIDI 컨트롤 채널: + + + + N + N + + + + Output dry/wet (100%) + 출력 드라이/웨트 (100%) + + + + Output volume (100%) + 출력 볼륨 (100%) + + + + Balance Left (0%) + 밸런스 좌측 (0%) + + + + + Balance Right (0%) + 밸런스 우측 (0%) + + + + Use Balance + 밸런스 사용하기 + + + + Use Panning + 패닝 사용하기 + + + + Settings + 설정 + + + + Use Chunks + 청크 사용하기 + + + + Audio: + 오디오: + + + + Fixed-Size Buffer + 고정 크기 버퍼 + + + + Force Stereo (needs reload) + 스테레오 강제 적용 (다시 불러와야 함) + + + + MIDI: + MIDI: + + + + Map Program Changes + 맵 프로그램 변경 + + + + Send Notes + + + + + Send Bank/Program Changes + 뱅크/프로그램 변경사항 전송하기 + + + + Send Control Changes + 제어 변경사항 전송하기 + + + + Send Channel Pressure + 채널 누름 전송하기 + + + + Send Note Aftertouch + 노트 애프터터치 전송하기 + + + + Send Pitchbend + 피치밴드 전송하기 + + + + Send All Sound/Notes Off + 모든 사운드/노트 끔 전송하기 + + + + +Plugin Name + + +플러그인 이름 + + + + + Program: + 프로그램: + + + + MIDI Program: + MIDI 프로그램: + + + + Save State + 상태 저장하기 + + + + Load State + 상태 불러오기 + + + + Information + 정보 + + + + Label/URI: + 레이블/URI: + + + + Name: + 이름: + + + + Type: + 유형: + + + + Maker: + 제작자: + + + + Copyright: + 저작권: + + + + Unique ID: + 고유 ID: + + + + PluginFactory + + + Plugin not found. + 플러그인을 찾을 수 없습니다. + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + LMMS 플러그인 %1은(는) 이름이 %2인 플러그인 디스크립터를 가지고 있지 않습니다! + + + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + 필터 재설정 + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + 형태 + + + + Parameter Name + 매개변수 이름 + + + + TextLabel + + + + + ... + ... + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + 프레임 + + + + Enable + 활성화 + + + + On/Off + 켬/끔 + + + + + + + PluginName + 플러그인이름 + + + + MIDI + MIDI + + + + AUDIO IN + 오디오 입력 + + + + AUDIO OUT + 오디오 출력 + + + + GUI + GUI + + + + Edit + 편집하기 + + + + Remove + 제거하기 + + + + Plugin Name + 플러그인 이름 + + + + Preset: + 프리셋: + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + %1의 설정 + + + + QObject + + + Reload Plugin + 플러그인 다시 불러오기 + + + + Show GUI + GUI 표시하기 + + + + Help + 도움말 + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + 이름: + + + + Maker: + 제작자: + + + + Copyright: + 저작권: + + + + Requires Real Time: + 실시간 필요: + + + + + + Yes + + + + + + + No + 아니오 + + + + Real Time Capable: + 실시간 가능: + + + + In Place Broken: + 깨진 곳에 위치: + + + + Channels In: + 채널 입력: + + + + Channels Out: + 채널 출력: + + + + File: %1 + 파일: %1 + + + + File: + 파일: + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + 설정(&S) + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + 볼륨 + + + + Panning + 패닝 + + + + Left gain + 좌측 게인 + + + + Right gain + 우측 게인 + + + + lmms::AudioFileProcessor + + + Amplify + 증폭하기 + + + + Start of sample + 샘플의 시작 + + + + End of sample + 샘플의 끝 + + + + Loopback point + 루프백 포인트 + + + + Reverse sample + 리버스 샘플 + + + + Loop mode + 루프 모드 + + + + Stutter + Stutter + + + + Interpolation mode + 인터폴레이션 모드 + + + + None + 없음 + + + + Linear + 리니어 + + + + Sinc + Sinc + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + JACK 클라이언트 다시 시작됨 + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS는 알 수 없는 이유로 JACK에 의해 중지되었습니다. 그 결과 LMMS의 JACK 백엔드가 다시 시작되었습니다. 수동 연결을 다시 설정해야 합니다. + + + + JACK server down + JACK 서버 다운 + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + JACK 서버가 종료되어 새 인스턴스 시작에 실패한 것 같습니다. 따라서 LMMS를 진행할 수 없습니다. 사용자의 프로젝트를 저장하고 JACK 및 LMMS를 다시 시작해야 합니다. + + + + Client name + 클라이언트 이름 + + + + Channels + 채널 + + + + lmms::AudioOss + + + Device + 디바이스 + + + + Channels + 채널 + + + + lmms::AudioPortAudio::setupWidget + + + Backend + 백엔드 + + + + Device + 디바이스 + + + + lmms::AudioPulseAudio + + + Device + 디바이스 + + + + Channels + 채널 + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + 디바이스 + + + + Channels + 채널 + + + + lmms::AudioSoundIo::setupWidget + + + Backend + 백엔드 + + + + Device + 디바이스 + + + + lmms::AutomatableModel + + + &Reset (%1%2) + 재설정 (%1%2)(&R) + + + + &Copy value (%1%2) + 값 복사하기 (%1%2)(&C) + + + + &Paste value (%1%2) + 값 붙여넣기 (%1%2)(&P) + + + + &Paste value + 값 붙여넣기(&P) + + + + Edit song-global automation + 노래 전반 오토메이션 편집하기 + + + + Remove song-global automation + 노래 전반 오토메이션 제거하기 + + + + Remove all linked controls + 모든 링크된 컨트롤 제거하기 + + + + Connected to %1 + %1에 연결됨 + + + + Connected to controller + 컨트롤러에 연결됨 + + + + Edit connection... + 연결 편집하기... + + + + Remove connection + 연결 제거하기 + + + + Connect to controller... + 컨트롤러에 연결하기... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + <%1> 키를 누른 상태에서 컨트롤 드래그 + + + + lmms::AutomationTrack + + + Automation track + 오토메이션 트랙 + + + + lmms::BassBoosterControls + + + Frequency + 주파수 + + + + Gain + 게인 + + + + Ratio + 레시오 + + + + lmms::BitInvader + + + Sample length + 샘플 길이 + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + 입력 게인 + + + + Input noise + 입력 잡음 + + + + Output gain + 출력 게인 + + + + Output clip + 출력 클립 + + + + Sample rate + 샘플 레이트 + + + + Stereo difference + 스테레오 차이 + + + + Levels + 레벨 + + + + Rate enabled + 레이트 활성화됨 + + + + Depth enabled + 깊이 활성화됨 + + + + lmms::Clip + + + Mute + 음소거 + + + + lmms::CompressorControls + + + Threshold + 스레시홀드 + + + + Ratio + 레시오 + + + + Attack + 어택 + + + + Release + 릴리즈 + + + + Knee + 니(Knee) + + + + Hold + 홀드 + + + + Range + 범위 + + + + RMS Size + RMS 크기 + + + + Mid/Side + 중간/측면 + + + + Peak Mode + 피크 모드 + + + + Lookahead Length + 룩어헤드 길이 + + + + Input Balance + 입력 밸런스 + + + + Output Balance + 출력 밸런스 + + + + Limiter + 리미터 + + + + Output Gain + 출력 게인 + + + + Input Gain + 입력 게인 + + + + Blend + 섞기 + + + + Stereo Balance + 스테레오 밸런스 + + + + Auto Makeup Gain + 자동 메이크업 게인 + + + + Audition + 오디션 + + + + Feedback + 피드백 + + + + Auto Attack + 자동 어택 + + + + Auto Release + 자동 릴리즈 + + + + Lookahead + 룩어헤드 + + + + Tilt + 틸트 + + + + Tilt Frequency + 틸트 주파수 + + + + Stereo Link + 스테레오 링크 + + + + Mix + 믹스 + + + + lmms::Controller + + + Controller %1 + 컨트롤러 %1 + + + + lmms::DelayControls + + + Delay samples + 딜레이 샘플 + + + + Feedback + 피드백 + + + + LFO frequency + LFO 주파수 + + + + LFO amount + LFO 양 + + + + Output gain + 출력 게인 + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + 주파수 + + + Resonance 공명 - Envelopes/LFOs - 엔벨로프/LFO + + Feedback + 피드백 - Filter type - 필터 종류 + + DC Offset Removal + DC 오프셋 제거 + + + + lmms::DualFilterControls + + + Filter 1 enabled + 필터 1 활성화됨 - Q/Resonance - Q/공명 + + Filter 1 type + 필터 1 유형 + + Cutoff frequency 1 + 컷오프 주파수 1 + + + + Q/Resonance 1 + Q/공명 1 + + + + Gain 1 + 게인 1 + + + + Mix + 믹스 + + + + Filter 2 enabled + 필터 2 활성화됨 + + + + Filter 2 type + 필터 2 유형 + + + + Cutoff frequency 2 + 컷오프 주파수 2 + + + + Q/Resonance 2 + Q/공명 2 + + + + Gain 2 + 게인 2 + + + + + Low-pass + 로패스 + + + + + Hi-pass + 하이패스 + + + + + Band-pass csg + 밴드패스 csg + + + + + Band-pass czpg + 밴드패스 czpg + + + + Notch 노치 + + + All-pass + 올패스 + + + + Moog - 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 + 2x 모그 + + + 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 + lmms::DynProcControls - TARGET - 대상 + + Input gain + 입력 게인 - FILTER - 필터 + + Output gain + 출력 게인 - FREQ - 주파수 + + Attack time + 어택 시간 - Hz - Hz + + Release time + 릴리즈 시간 - Envelopes, LFOs and filters are not supported by the current instrument. - 이 악기는 엔벨로프, LFO, 필터를 지원하지 않습니다. + + Stereo mode + 스테레오 모드 + + + + lmms::Effect + + + Effect enabled + 이펙트 활성화됨 - Cutoff frequency: - 차단 주파수: + + Wet/Dry mix + 웨트/드라이 믹스 - Q/RESO + + Gate + 게이트 + + + + Decay + 디케이 + + + + lmms::EffectChain + + + Effects enabled + 이펙트 활성화됨 + + + + lmms::Engine + + + Generating wavetables + 웨이브테이블 생성 중 + + + + Initializing data structures + 데이터 구조 초기화 중 + + + + Opening audio and midi devices + 오디오 및 MIDI 디바이스 여는 중 + + + + Launching audio engine threads + 오디오 엔진 스레드 실행 중 + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Env 프리-딜레이 + + + + Env attack + Env 어택 + + + + Env hold + Env 홀드 + + + + Env decay + Env 디케이 + + + + Env sustain + Env 서스테인 + + + + Env release + Env 릴리즈 + + + + Env mod amount + Env mod 양 + + + + LFO pre-delay + LFO 프리-딜레이 + + + + LFO attack + LFO 어택 + + + + LFO frequency + LFO 주파수 + + + + LFO mod amount + LFO mod 양 + + + + LFO wave shape + LFO 웨이브 형태 + + + + LFO frequency x 100 + LFO 주파수 x 100 + + + + Modulate env amount + Env 양 조절하기 + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + 입력 게인 + + + + Output gain + 출력 게인 + + + + Low-shelf gain + 로셀프 게인 + + + + Peak 1 gain + 피크 1 게인 + + + + Peak 2 gain + 피크 2 게인 + + + + Peak 3 gain + 피크 3 게인 + + + + Peak 4 gain + 피크 4 게인 + + + + High-shelf gain + 하이-셸프 게인 + + + + HP res + HP 공명 + + + + Low-shelf res + 로셀프 공명 + + + + Peak 1 BW + 피크 1 대역폭 + + + + Peak 2 BW + 피크 2 대역폭 + + + + Peak 3 BW + 피크 3 대역폭 + + + + Peak 4 BW + 피크 4 대역폭 + + + + High-shelf res + 하이셸프 공명 + + + + LP res + LP 공명 + + + + HP freq + HP 주파수 + + + + Low-shelf freq + 로셀프 주파수 + + + + Peak 1 freq + 피크 1 주파수 + + + + Peak 2 freq + 피크 2 주파수 + + + + Peak 3 freq + 피크 3 주파수 + + + + Peak 4 freq + 피크 4 주파수 + + + + High-shelf freq + 하이셸프 주파수 + + + + LP freq + LP 주파수 + + + + HP active + HP 활성 + + + + Low-shelf active + 로셀프 활성 + + + + Peak 1 active + 피크 1 활성 + + + + Peak 2 active + 피크 2 활성 + + + + Peak 3 active + 피크 3 활성 + + + + Peak 4 active + 피크 4 활성 + + + + High-shelf active + 하이셸프 활성 + + + + LP active + LP 활성 + + + + LP 12 + LP 12 + + + + LP 24 + LP 24 + + + + LP 48 + LP 48 + + + + HP 12 + HP 12 + + + + HP 24 + HP 24 + + + + HP 48 + HP 48 + + + + Low-pass type + 로패스 유형 + + + + High-pass type + 하이패스 유형 + + + + Analyse IN + 입력 신호 분석 + + + + Analyse OUT + 출력 신호 분석 + + + + lmms::FlangerControls + + + Delay samples + 딜레이 샘플 + + + + LFO frequency + LFO 주파수 + + + + Amount + + + + + Stereo phase + 스테레오 페이즈 + + + + Feedback + + + + + Noise + 잡음 + + + + Invert + 반전 + + + + lmms::FreeBoyInstrument + + + Sweep time + 스위프 시간 + + + + Sweep direction + 스위프 방향 + + + + Sweep rate shift amount + 스위프 레이트 시프트 양 + + + + + Wave pattern duty cycle + 웨이브 패턴 듀티 사이클 + + + + Channel 1 volume + 채널 1 볼륨 + + + + + + Volume sweep direction + 볼륨 스위프 방향 + + + + + + Length of each step in sweep + 스위프에서 각 스텝의 길이 + + + + Channel 2 volume + 채널 2 볼륨 + + + + Channel 3 volume + 채널 3 볼륨 + + + + Channel 4 volume + 채널 4 볼륨 + + + + Shift Register width + 시프트 레지스터 너비 + + + + Right output level + 우측 출력 레벨 + + + + Left output level + 좌측 출력 레벨 + + + + Channel 1 to SO2 (Left) + 채널 1 → SO2 (좌측) + + + + Channel 2 to SO2 (Left) + 채널 2 → SO2 (좌측) + + + + Channel 3 to SO2 (Left) + 채널 3 → SO2 (좌측) + + + + Channel 4 to SO2 (Left) + 채널 4 → SO2 (좌측) + + + + Channel 1 to SO1 (Right) + 채널 1 → SO1 (우측) + + + + Channel 2 to SO1 (Right) + 채널 2 → SO1 (우측) + + + + Channel 3 to SO1 (Right) + 채널 3 → SO1 (우측) + + + + Channel 4 to SO1 (Right) + 채널 4 → SO1 (우측) + + + + Treble + 트레블 + + + + Bass + 베이스 + + + + lmms::GigInstrument + + + Bank + 뱅크 + + + + Patch + 패치 + + + + Gain + 게인 + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + 아르페지오 + + + + Arpeggio type + 아르페지오 유형 + + + + Arpeggio range + 아르페지오 범위 + + + + Note repeats + 노트 반복 + + + + Cycle steps + 사이클 스탭 + + + + Skip rate + 스킵 비율 + + + + Miss rate + 누락 비율 + + + + Arpeggio time + 아르페지오 시간 + + + + Arpeggio gate + 아르페지오 게이트 + + + + Arpeggio direction + 아르페지오 방향 + + + + Arpeggio mode + 아르페지오 모드 + + + + Up + 위로 + + + + Down + 아래로 + + + + Up and down + 위 다음 아래 + + + + Down and up + 아래 다음 위 + + + + Random + 무작위 + + + + Free + 자유 + + + + Sort + 정렬 + + + + Sync + 싱크 + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + 코드 + + + + Chord type + 코드 유형 + + + + Chord range + 코드 범위 + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + 엔벨로프/LFO + + + + Filter type + 필터 유형 + + + + Cutoff frequency + 컷오프 주파수 + + + + Q/Resonance Q/공명 - Q/Resonance: - Q/공명: + + Low-pass + 로패스 + + + + Hi-pass + 하이패스 + + + + Band-pass csg + 밴드패스 csg + + + + Band-pass czpg + 밴드패스 czpg + + + + Notch + 노치 + + + + All-pass + 올패스 + + + + Moog + 모그 + + + + 2x Low-pass + 2x 로패스 + + + + RC Low-pass 12 dB/oct + RC 로패스 12 dB/oct + + + + RC Band-pass 12 dB/oct + RC 밴드패스 12 dB/oct + + + + RC High-pass 12 dB/oct + RC 하이패스 12 dB/oct + + + + RC Low-pass 24 dB/oct + RC 로패스 24 dB/oct + + + + RC Band-pass 24 dB/oct + RC 밴드패스 24 dB/oct + + + + RC High-pass 24 dB/oct + RC 하이패스 24 dB/oct + + + + Vocal Formant + 보컬 포르만트 + + + + 2x Moog + 2x 모그 + + + + SV Low-pass + SV 로패스 + + + + SV Band-pass + SV 밴드패스 + + + + SV High-pass + SV 하이패스 + + + + SV Notch + SV 노치 + + + + Fast Formant + 패스트 포르만트 + + + + Tripole + 트리폴 - InstrumentTrack - - With this knob you can set the volume of the opened channel. - 이 노브를 이용하여 트랙의 음량을 조절할 수 있습니다. - + lmms::InstrumentTrack + + unnamed_track - 이름 없는 트랙 + 이름없는_트랙 + Base note - 기준 음 + 기본 노트 + + First note + 처음 노트 + + + + Last note + 마지막 노트 + + + Volume - 음량 + 볼륨 + Panning 패닝 + Pitch 피치 + Pitch range 피치 범위 - FX channel - FX 채널 - - - Default preset - 기본 프리셋 + + Mixer channel + 믹서 채널 + Master pitch 마스터 피치 - - - InstrumentTrackView - Volume - 음량 + + Enable/Disable MIDI CC + MIDI CC 활성화/비활성화 - Volume: - 음량: + + CC Controller %1 + CC 컨트롤러 %1 - VOL - 음량 - - - Panning - 패닝 - - - Panning: - 패닝: - - - PAN - 패닝 - - - MIDI - MIDI - - - Input - 입력 - - - Output - 출력 - - - FX %1: %2 - FX %1: %2 + + + Default preset + 기본 프리셋 - InstrumentTrackWindow + lmms::Keymap - 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 - 음량 - - - MIDI - MIDI + + empty + 비어 있음 - Knob + lmms::KickerInstrument - Set linear - 선형으로 설정 + + Start frequency + 시작 주파수 - Set logarithmic - 로그스케일로 설정 + + End frequency + 끝 주파수 - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - -96.0 dBFS부터 6.0 dBFS까지의 값을 입력하세요: + + Length + 길이 - Please enter a new value between %1 and %2: - %1부터 %2까지의 값을 입력하세요: + + Start distortion + 시작 디스토션 - Set value - 값 설정 + + End distortion + 끝 디스토션 + + + + Gain + 게인 + + + + Envelope slope + 엔벨로프 슬로프 + + + + Noise + 잡음 + + + + Click + 클릭 + + + + Frequency slope + 주파수 슬로프 + + + + Start from note + 시작을 노트에서 + + + + End to note + 끝을 노트까지 - LadspaControl + lmms::LOMMControls + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + Link channels - 채널 링크 + 링크 채널 - LadspaControlDialog - - Link Channels - 채널 링크 - - - Channel - 채널 - - - - LadspaControlView - - Link channels - 채널 링크 - - - Value: - 값: - - - - LadspaEffect + lmms::LadspaEffect + Unknown LADSPA plugin %1 requested. 알 수 없는 LADSPA 플러그인 %1이(가) 요청되었습니다. - LcdSpinBox + lmms::Lb302Synth - Please enter a new value between %1 and %2: - %1부터 %2까지의 값을 입력하세요: + + VCF Cutoff Frequency + VCF 컷오프 주파수 - Set value - 값 설정 + + VCF Resonance + VCF 공명 + + + + VCF Envelope Mod + VCF 엔빌로프 Mod + + + + VCF Envelope Decay + VCF 엔빌로프 디케이 + + + + Distortion + 디스토션 + + + + Waveform + 파형 + + + + Slide Decay + 슬라이드 디케이 + + + + Slide + 슬라이드 + + + + Accent + 악센트 + + + + Dead + 데드 + + + + 24dB/oct Filter + 24dB/oct 필터 - LeftRightNav - - Previous - 이전 - - - Next - 다음 - - - Previous (%1) - 이전 (%1) - - - Next (%1) - 다음 (%1) - - - - LfoController + lmms::LfoController + LFO Controller LFO 컨트롤러 + Base value - 기준 값 + 기본 값 + Oscillator speed - + 오실레이터 속도 + Oscillator amount - + 오실레이터 량 + Oscillator phase - 오실레이터 위상 + 오실레이터 페이즈 + Oscillator waveform 오실레이터 파형 + Frequency Multiplier - + 주파수 증폭기 + + + + Sample not found + - LfoControllerDialog + lmms::MalletsInstrument - LFO - LFO + + Hardness + 하드니스 - BASE - 기준 + + Position + 포지션 - AMNT - + + Vibrato gain + 비브라토 게인 - Modulation amount: - + + Vibrato frequency + 비브라토 주파수 - PHS - 위상 + + Stick mix + 스틱 믹스 - Phase offset: - 위상: + + Modulator + 모듈레이터 - Base: - + + Crossfade + 크로스페이드 - FREQ - 주파수 + + LFO speed + LFO 속도 - LFO frequency: - + + LFO depth + LFO 깊이 - degrees - + + ADSR + ADSR - Sine wave - 사인파 + + Pressure + 누름 - Triangle wave - 삼각파 + + Motion + 모션 - Saw wave - 톱니파 + + Speed + 속도 - Square wave - 사각파 + + Bowed + 활켜기 - Moog saw wave - Moog 톱니파 + + Instrument + - Exponential wave - 지수형 파형 + + Spread + 스프레드 - White noise - 화이트 노이즈 + + Randomness + - User-defined shape. -Double click to pick a file. - + + Marimba + 마림바 - Mutliply modulation frequency by 1 - + + Vibraphone + 비브라폰 - Mutliply modulation frequency by 100 - + + Agogo + 아고고 - Divide modulation frequency by 100 - + + Wood 1 + 우드 1 + + + + Reso + 레소 + + + + Wood 2 + 우드 2 + + + + Beats + 비트 + + + + Two fixed + + + + + Clump + 클럼프 + + + + Tubular bells + 튜블라 벨 + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + 글라스 + + + + Tibetan bowl + 티베탄 싱잉볼 - LmmsCore - - Generating wavetables - - - - Initializing data structures - 자료 구조 초기화 중 - - - Opening audio and midi devices - 오디오 장치와 MIDI 장치를 여는 중 - - - Launching mixer threads - 믹서 스레드를 시작하는 중 - - - - MainWindow - - Configuration file - 설정 파일 - - - Error while parsing configuration file at line %1:%2: %3 - 설정 파일 분석 중 오류 발생 (행 %1:%2: %3) - - - Could not open file - 파일을 열 수 없음 - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - 파일 %1을(를) 쓰기 위하여 열 수 없습니다. -경로에 파일이 존재하고 파일에 쓸 수 있는 권한이 있는지 확인 후 다시 시도하시기 바랍니다! - - - Project recovery - 프로젝트 복구 - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - 복구 파일이 존재합니다. 이전에 LMMS가 비정상 종료되었거나 여러 개의 LMMS 인스턴스가 동시에 실행 중인 것 같습니다. 복구 파일로부터 프로젝트를 복구하시겠습니까? - - - Recover - 복구 - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - 파일을 복구합니다. 다른 LMMS 인스턴스가 실행 중이지 않은 상태에서 선택하시기 바랍니다. - - - Discard - 저장하지 않음 - - - Launch a default session and delete the restored files. This is not reversible. - 복구 파일을 삭제하고 기본 프로젝트를 불러옵니다. 이 동작은 되돌릴 수 없습니다. - - - Version %1 - 버전 %1 - - - Preparing plugin browser - 플러그인 탐색기 준비 - - - Preparing file browsers - 파일 탐색기 준비 - - - My Projects - 내 프로젝트 - - - My Samples - 내 샘플 - - - My Presets - 내 사전 설정 - - - My Home - 내 홈 디렉터리 - - - Root directory - 최상위 디렉토리 - - - Volumes - 음량 - - - My Computer - 내 컴퓨터 - - - Loading background artwork - 배경 아트워크를 불러오는 중 - - - &File - 파일(&F) - - - &New - 새로 만들기(&N) - - - New from template - 템플릿에서 새 프로젝트 생성 - - - &Open... - 열기(&O)... - - - &Recently Opened Projects - 최근에 사용한 프로젝트(&R) - - - &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 - 메트로놈 - - - 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 Denominator - 박자표 분모 - - - TIME SIG - 박자 - - - Meter numerator - 박자표 분자 - - - Meter denominator - 박자표 분모 - - - - MeterModel + lmms::MeterModel + Numerator 분자 + Denominator 분모 - MidiController + lmms::Microtuner + + Microtuner + 마이크로튜너 + + + + Microtuner on / off + 마이크로튜너 켬/끔 + + + + Selected scale + 선택된 스케일 + + + + Selected keyboard mapping + 선택된 키보드 매핑 + + + + lmms::MidiController + + MIDI Controller MIDI 컨트롤러 + unnamed_midi_controller - 이름 없는 MIDI 컨트롤러 + 이름없는_MIDI_컨트롤러 - MidiImport + lmms::MidiImport + + Setup incomplete - 설정 불완전 + 셋업 미완료 + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + 설정 대화상자(편집->설정)에서 기본 사운드폰트를 설정하지 않았습니다. 그러므로 이 MIDI 파일을 가져오면 사운드가 연주되지 않습니다. 일반 MIDI 사운드폰트를 다운로드하여 설정 대화상자에서 지정한 후 다시 시도해야 합니다. + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - LMMS가 SoundFont2 플레이어 지원 없이 컴파일되었습니다. MIDI 파일에서 가져온 트랙은 기본적으로 SoundFont2 플레이어로 재생되므로 MIDI 파일을 가져온 뒤 재생하면 아무 소리도 재생되지 않을 것입니다. + 가져온 MIDI 파일에 기본 사운드를 추가하는 데 사용되는 SoundFont2 재생기를 지원하는 LMMS를 컴파일하지 않았습니다. 그러므로 이 MIDI 파일을 가져온 후에는 사운드가 연주되지 않습니다. + + MIDI Time Signature Numerator + MIDI 박자표 분자 + + + + MIDI Time Signature Denominator + MIDI 박자표 분모 + + + + Numerator + 분자 + + + + Denominator + 분모 + + + + + Tempo + 템포 + + + Track 트랙 - - 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. - - - MidiJack + lmms::MidiJack + JACK server down When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JAK 서버 종료 + 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 서버가 종료된 것 같습니다. - MidiPort + lmms::MidiPort + Input channel 입력 채널 + Output channel 출력 채널 + Input controller 입력 컨트롤러 + Output controller 출력 컨트롤러 + Fixed input velocity - 입력 벨로시티 고정값 + 고정된 입력 벨로시티 + Fixed output velocity - 출력 벨로시티 고정값 + 고정된 출력 벨로시티 + Fixed output note - 출력 음높이 고정값 + 고정된 출력 노트 + Output MIDI program 출력 MIDI 프로그램 + Base velocity 기준 벨로시티 + Receive MIDI-events - MIDI 이벤트 받기 + MIDI 이벤트 수신하기 + Send MIDI-events - MIDI 이벤트 보내기 + MIDI 이벤트 전송하기 - MidiSetupWidget + lmms::Mixer - DEVICE - 장치 + + Master + 마스터 + + + + + + Channel %1 + 채널 %1 + + + + Volume + 볼륨 + + + + Mute + 음소거 + + + + Solo + 솔로 연주 - MonstroInstrument + lmms::MixerRoute + + + Amount to send from channel %1 to channel %2 + %1 채널에서 %2 채널로 전송할 양 + + + + lmms::MonstroInstrument + + + Osc 1 volume + Osc 1 볼륨 + + + + Osc 1 panning + Osc 1 패닝 + + + + Osc 1 coarse detune + Osc 1 코어스 디튠 + + + + Osc 1 fine detune left + Osc 1 파인 디튠 좌측 + + + + Osc 1 fine detune right + Osc 1 파인 디튠 우측 + + + + Osc 1 stereo phase offset + Osc 1 스테레오 페이즈 오프셋 + + + + Osc 1 pulse width + Osc 1 펄스 폭 + + + + Osc 1 sync send on rise + 상승 시 Osc 1 싱크 전송하기 + + + + Osc 1 sync send on fall + 하강 시 OSC 1 싱크 전송하기 + + + + Osc 2 volume + Osc 2 볼륨 + + + + Osc 2 panning + Osc 2 패닝 + + + + Osc 2 coarse detune + Osc 2 코어스 디튠 + + + + Osc 2 fine detune left + Osc 2 파인 디튠 좌측 + + + + Osc 2 fine detune right + Osc 2 파인 디튠 우측 + + + + Osc 2 stereo phase offset + Osc 2 스테레오 페이즈 오프셋 + + + + Osc 2 waveform + Osc 2 파형 + + + + Osc 2 sync hard + Osc 2 싱크 하드 + + + + Osc 2 sync reverse + Osc 2 싱크 리버스 + + + + Osc 3 volume + Osc 3 볼륨 + + + + Osc 3 panning + Osc 3 패닝 + + + + Osc 3 coarse detune + Osc 3 코어스 디튠 + + + Osc 3 Stereo phase offset - + Osc 3 스테리오 페이즈 오프셋 + + Osc 3 sub-oscillator mix + Osc 3 서브 오실레이터 믹스 + + + + Osc 3 waveform 1 + Osc 3 파형 1 + + + + Osc 3 waveform 2 + Osc 3 파형 2 + + + + Osc 3 sync hard + Osc 3 싱크 하드 + + + + Osc 3 Sync reverse + Osc 3 싱크 리버스 + + + + LFO 1 waveform + LFO 1 파형 + + + + LFO 1 attack + LFO 1 어택 + + + + LFO 1 rate + LFO 1 레이트 + + + + LFO 1 phase + LFO 1 페이즈 + + + + LFO 2 waveform + LFO 2 파형 + + + + LFO 2 attack + LFO 2 어택 + + + + LFO 2 rate + LFO 2 레이트 + + + + LFO 2 phase + LFO 2 페이즈 + + + + Env 1 pre-delay + Env 1 프리-딜레이 + + + + Env 1 attack + Env 1 어택 + + + + Env 1 hold + Env 1 홀드 + + + + Env 1 decay + Env 1 디케이 + + + + Env 1 sustain + Env 1 서스테인 + + + + Env 1 release + Env 1 릴리즈 + + + + Env 1 slope + Env 1 슬로프 + + + + Env 2 pre-delay + Env 2 프리-딜레이 + + + + Env 2 attack + Env 2 어택 + + + + Env 2 hold + Env 2 홀드 + + + + Env 2 decay + Env 2 디케이 + + + + Env 2 sustain + Env 2 서스테인 + + + + Env 2 release + Env 2 릴리즈 + + + + Env 2 slope + Env 2 슬로프 + + + + Osc 2+3 modulation + Osc 2+3 모듈레이션 + + + Selected view - + 선택된 항목 보기 + + Osc 1 - Vol env 1 + Osc 1 - Vol env 1 + + + + Osc 1 - Vol env 2 + Osc 1 - Vol env 2 + + + + Osc 1 - Vol LFO 1 + Osc 1 - Vol LFO 1 + + + + Osc 1 - Vol LFO 2 + Osc 1 - Vol LFO 2 + + + + Osc 2 - Vol env 1 + Osc 2 - Vol env 1 + + + + Osc 2 - Vol env 2 + Osc 2 - Vol env 2 + + + + Osc 2 - Vol LFO 1 + Osc 2 - Vol LFO 1 + + + + Osc 2 - Vol LFO 2 + Osc 2 - Vol LFO 2 + + + + Osc 3 - Vol env 1 + Osc 3 - Vol env 1 + + + + Osc 3 - Vol env 2 + Osc 3 - Vol env 2 + + + + Osc 3 - Vol LFO 1 + Osc 3 - Vol LFO 1 + + + + Osc 3 - Vol LFO 2 + Osc 3 - Vol LFO 2 + + + + Osc 1 - Phs env 1 + Osc 1 - Phs env 1 + + + + Osc 1 - Phs env 2 + Osc 1 - Phs env 2 + + + + Osc 1 - Phs LFO 1 + Osc 1 - Phs LFO 1 + + + + Osc 1 - Phs LFO 2 + Osc 1 - Phs LFO 2 + + + + Osc 2 - Phs env 1 + Osc 2 - Phs env 1 + + + + Osc 2 - Phs env 2 + Osc 2 - Phs env 2 + + + + Osc 2 - Phs LFO 1 + Osc 2 - Phs LFO 1 + + + + Osc 2 - Phs LFO 2 + Osc 2 - Phs LFO 2 + + + + Osc 3 - Phs env 1 + Osc 3 - Phs env 1 + + + + Osc 3 - Phs env 2 + Osc 3 - Phs env 2 + + + + Osc 3 - Phs LFO 1 + Osc 3 - Phs LFO 1 + + + + Osc 3 - Phs LFO 2 + Osc 3 - Phs LFO 2 + + + + Osc 1 - Pit env 1 + Osc 1 - Pit env 1 + + + + Osc 1 - Pit env 2 + Osc 1 - Pit env 2 + + + + Osc 1 - Pit LFO 1 + Osc 1 - Pit LFO 1 + + + + Osc 1 - Pit LFO 2 + Osc 1 - Pit LFO 2 + + + + Osc 2 - Pit env 1 + Osc 2 - Pit env 1 + + + + Osc 2 - Pit env 2 + Osc 2 - Pit env 2 + + + + Osc 2 - Pit LFO 1 + Osc 2 - Pit LFO 1 + + + + Osc 2 - Pit LFO 2 + Osc 2 - Pit LFO 2 + + + + Osc 3 - Pit env 1 + Osc 3 - Pit env 1 + + + + Osc 3 - Pit env 2 + Osc 3 - Pit env 2 + + + + Osc 3 - Pit LFO 1 + Osc 3 - Pit LFO 1 + + + + Osc 3 - Pit LFO 2 + Osc 3 - Pit LFO 2 + + + + Osc 1 - PW env 1 + Osc 1 - PW env 1 + + + + Osc 1 - PW env 2 + Osc 1 - PW env 2 + + + + Osc 1 - PW LFO 1 + Osc 1 - PW LFO 1 + + + + Osc 1 - PW LFO 2 + Osc 1 - PW LFO 2 + + + + Osc 3 - Sub env 1 + Osc 3 - Sub env 1 + + + + Osc 3 - Sub env 2 + Osc 3 - Sub env 2 + + + + Osc 3 - Sub LFO 1 + Osc 3 - Sub LFO 1 + + + + Osc 3 - Sub LFO 2 + Osc 3 - Sub LFO 2 + + + + Sine wave 사인파 + Bandlimited Triangle wave - 대역 제한 삼각파 + 밴드리밋된 삼각파 + Bandlimited Saw wave - 대역 제한 톱니파 + 밴드리밋된 톱니파 + Bandlimited Ramp wave - 대역 제한 역톱니파 + 밴드리밋된 램프파 + Bandlimited Square wave - 대역 제한 사각파 + 밴드리밋된 사각파 + Bandlimited Moog saw wave - 대역 제한 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 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 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 - - - - 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 - + 무작위로 부드럽게 - MonstroView + lmms::NesInstrument - Operators view - - - - Matrix view - - - - Volume - 음량 - - - Panning - 패닝 - - - Coarse detune - - - - semitones - 반음 - - - cents - 센트 - - - 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 - - - - - MultitapEchoControlDialog - - Length - 길이 - - - Step length: - - - - Dry - - - - Stages - - - - Swap inputs - 좌우 입력 바꾸기 - - - Dry gain: - - - - Low-pass stages: - - - - Swap left and right input channels for reflections - - - - - NesInstrument - - Channel 2 Coarse detune - - - - Channel 2 Volume - - - - Channel 4 Volume - - - - Master volume - 마스터 음량 - - - Vibrato - 비브라토 + + Channel 1 enable + + Channel 1 coarse detune - + 채널 1 코어스 디튠 + Channel 1 volume - + 채널 1 볼륨 + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + Channel 1 envelope length - + 채널 1 엔벨로프 길이 + Channel 1 duty cycle - + 채널 1 듀티 사이클 + + Channel 1 sweep enable + + + + Channel 1 sweep amount - + 채널 1 스위프 양 + Channel 1 sweep rate - + 채널 1 스위프 레이트 + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + Channel 2 envelope length - + 채널 2 엔벨로프 길이 + Channel 2 duty cycle - + 채널 2 듀티 사이클 + + Channel 2 sweep enable + + + + Channel 2 sweep amount - + 채널 2 스위프 양 + Channel 2 sweep rate - + 채널 2 스위프 레이트 + + Channel 3 enable + + + + Channel 3 coarse detune - + 채널 3 코어스 디튠 + Channel 3 volume - + 채널 3 볼륨 + + Channel 4 enable + + + + Channel 4 volume - + 채널 4 볼륨 + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + Channel 4 envelope length - + 채널 4 엔벨로프 길이 + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + Channel 4 noise frequency - + 채널 4 잡음 주파수 + Channel 4 noise frequency sweep - - - - - NesInstrumentView - - Volume - 음량 + 채널 4 잡음 주파수 스위프 - Coarse detune - + + Channel 4 quantize + - Envelope length - - - - Enable channel 1 - 채널 1 활성화 - - - Enable envelope 1 - 엔벨로프 1 활성화 - - - Enable envelope 1 loop - - - - Enable sweep 1 - - - - Sweep amount - - - - Sweep rate - - - - 12.5% Duty cycle - - - - 25% Duty cycle - - - - 50% Duty cycle - - - - 75% Duty cycle - - - - Enable channel 2 - 채널 2 활성화 - - - Enable envelope 2 - 엔벨로프 2 활성화 - - - Enable envelope 2 loop - - - - Enable sweep 2 - - - - Enable channel 3 - 채널 3 활성화 - - - Noise Frequency - - - - Frequency sweep - - - - Enable channel 4 - 채널 4 활성화 - - - Enable envelope 4 - 엔벨로프 4 활성화 - - - Enable envelope 4 loop - - - - Quantize noise frequency when using note frequency - - - - Use note frequency for noise - - - - Noise mode - + + Master volume + 마스터 볼륨 + Vibrato 비브라토 - - Master volume - 마스터 음량 - - 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 - - - - PatchesDialog - - Qsynth: Channel Preset - - - - Bank selector - - - - Bank - 뱅크 - - - Program selector - - + lmms::OpulenzInstrument + Patch 패치 - Name - 이름 + + Op 1 attack + Op 1 어택 - OK - 확인 + + Op 1 decay + Op 1 디케이 - Cancel - 취소 + + Op 1 sustain + Op 1 서스테인 + + + + Op 1 release + Op 1 릴리즈 + + + + Op 1 level + Op 1 레벨 + + + + Op 1 level scaling + Op 1 레벨 스케일링 + + + + Op 1 frequency multiplier + Op 1 주파수 증폭기 + + + + Op 1 feedback + Op 1 피드백 + + + + Op 1 key scaling rate + Op 1 키 스케일링 레이트 + + + + Op 1 percussive envelope + Op 1 퍼커시브 엔벨로프 + + + + Op 1 tremolo + Op 1 트레몰로 + + + + Op 1 vibrato + Op 1 비브라토 + + + + Op 1 waveform + Op 1 파형 + + + + Op 2 attack + Op 2 어택 + + + + Op 2 decay + Op 2 디케이 + + + + Op 2 sustain + Op 2 서스테인 + + + + Op 2 release + Op 2 릴리즈 + + + + Op 2 level + Op 2 레벨 + + + + Op 2 level scaling + Op 2 레벨 스케일링 + + + + Op 2 frequency multiplier + Op 2 주파수 증폭기 + + + + Op 2 key scaling rate + Op 2 키 스케일링 레이트 + + + + Op 2 percussive envelope + Op 2 퍼커시브 엔벨로프 + + + + Op 2 tremolo + Op 2 트레몰로 + + + + Op 2 vibrato + Op 2 비브라토 + + + + Op 2 waveform + Op 2 파형 + + + + FM + FM + + + + Vibrato depth + 비브라토 깊이 + + + + Tremolo depth + 트레몰로 깊이 - PatmanView + lmms::OrganicInstrument - Loop - 루프 + + Distortion + 디스토션 - Loop mode - 루프 모드 - - - Tune - - - - Tune mode - - - - No file selected - 파일이 선택되지 않음 - - - Open patch file - 패치 파일 열기 - - - Patch-Files (*.pat) - 패치 파일 (*.pat) - - - Open patch - + + Volume + 볼륨 - PatternView + lmms::OscillatorObject - Open in piano-roll - 피아노-롤에서 열기 + + Osc %1 waveform + Osc %1 파형 - Clear all notes - 전체 음표 지우기 + + Osc %1 harmonic + Osc %1 하모닉 - Reset name - 이름 초기화 + + + Osc %1 volume + Osc %1 볼륨 - Change name - 이름 바꾸기 + + + Osc %1 panning + Osc %1 패닝 - Add steps - + + Osc %1 stereo detuning + - Remove steps - + + Osc %1 coarse detuning + Osc %1 코어스 디튜닝 - Clone Steps - + + Osc %1 fine detuning left + Osc %1 파인 디튜닝 좌측 - Set as ghost in piano-roll - + + Osc %1 fine detuning right + Osc %1 파인 디튜닝 우측 + + + + Osc %1 phase-offset + Osc %1 페이즈-오프셋 + + + + Osc %1 stereo phase-detuning + Osc %1 스테레오 페이즈-디튜닝 + + + + Osc %1 wave shape + Osc %1 웨이브 형태 + + + + Modulation type %1 + 모듈레이션 유형 %1 - PeakController + lmms::PatternTrack + + Pattern %1 + 패턴 %1 + + + + Clone of %1 + %1의 클론 + + + + lmms::PeakController + + Peak Controller 피크 컨트롤러 + Peak Controller Bug 피크 컨트롤러 버그 + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - 이전 버전 LMMS의 버그로 인해 피크 컨트롤러가 제대로 연결되지 않았을 수 있습니다. 피크 컨트롤러가 제대로 연결되었는지 확인 후 파일을 다시 저장해 주시기 바랍니다. 불편을 드려 죄송합니다. + 이전 버전 LMMS의 버그로 인해 피크 컨트롤러가 제대로 연결되지 않았을 수 있습니다. 피크 컨트롤러가 제대로 연결되었는지 확인 후 이 파일을 다시 저장해 주시기 바랍니다. 불편을 드려 죄송합니다. - PeakControllerDialog - - PEAK - - - - LFO Controller - LFO 컨트롤러 - - - - PeakControllerEffectControlDialog - - BASE - 기준 - - - AMNT - - - - Modulation amount: - - - - MULT - - - - ATCK - - - - Attack: - - - - DCAY - - - - Release: - - - - TRSH - - - - Treshold: - - - - Base: - - - - Amount multiplicator: - - - - Mute output - 출력 음소거 - - - Absolute value - - - - - PeakControllerEffectControls + lmms::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 scale - 음계 없음 - - - No chord - 코드 없음 - - - Velocity: %1% - 벨로시티: %1% - - - Panning: %1% left - 패닝: %1% 왼쪽 - - - Panning: %1% right - 패닝: %1% 오른쪽 - - - Panning: center - 패닝: 가운데 - - - Please open a pattern by double-clicking on it! - 더블클릭하여 패턴을 열어주세요! - - - Please enter a new value between %1 and %2: - %1부터 %2까지의 값을 입력하세요: - - - - PianoRollWindow - - Play/pause current pattern (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) - 현재 패턴 정지 (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 - - - - 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) - - - Horizontal zooming - - - - Quantization - - - - Note length - 음표 길이 - - - Scale - - - - Chord - - - - Clear ghost notes - - - - - PianoView - - Base note - 기준 음 - - - - Plugin + lmms::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 + "%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. - 플러그인을 노래 편집기, 비트/베이스 라인 편집기, 이미 존재하는 악기 트랙 중 하나로 드래그하세요. - - - - PluginFactory - - Plugin not found. - 플러그인을 찾을 수 없습니다. - - - LMMS plugin %1 does not have a plugin descriptor named %2! - LMMS 플러그인 %1은(는) 이름이 %2인 플러그인 디스크립터를 가지고 있지 않습니다! - - - - 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 - 여기에 프로젝트 노트를 입력하세요 - - - - ProjectRenderer - - WAV (*.wav) - WAV (*.wav) - - - FLAC (*.flac) - FLAC (*.flac) - - - OGG (*.ogg) - OGG (*.ogg) - - - MP3 (*.mp3) - MP3 (*.mp3) - - - - QWidget - - Name: - 이름: - - - Maker: - 제작자: - - - Copyright: - 저작권: - - - Requires Real Time: - - - - Yes - - - - No - 아니오 - - - Real Time Capable: - 실제 시간 가능: - - - In Place Broken: - 깨진 곳에 위치: - - - Channels In: - 입력 채널: - - - Channels Out: - 출력 채널: - - - File: %1 - 파일: %1 - - - File: - 파일: - - - - RenameDialog - - Rename... - 이름 바꾸기... - - - - ReverbSCControlDialog - - Input - 입력 - - - Size - 크기 - - - Size: - 크기: - - - Color - 음색 - - - Color: - 음색: - - - Output - 출력 - - - Input gain: - 입력 이득: - - - Output gain: - 출력 이득: - - - - ReverbSCControls - - Size - 크기 - - - Color - 음색 - + lmms::ReverbSCControls + Input gain - 입력 이득 + 입력 게인 + + Size + 크기 + + + + Color + 색상 + + + Output gain - 출력 이득 + 출력 게인 - SampleBuffer + lmms::SaControls - Fail to open file - 파일을 열 수 없음 + + Pause + 일시정지 - Audio files are limited to %1 MB in size and %2 minutes of playing time - 오디오 파일은 %1MB보다 작고 %2분보다 짧아야 합니다 + + Reference freeze + 레퍼런스 프리즈 - Open audio file - 오디오 파일 열기 + + Waterfall + 워터폴 - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - 모든 오디오 파일 (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + Averaging + 애버리징 - Wave-Files (*.wav) - Wave 파일(*.wav) + + Stereo + 스테레오 - OGG-Files (*.ogg) - OGG 파일(*.ogg) + + Peak hold + 피크 홀드 - DrumSynth-Files (*.ds) - DrumSynth 파일(*.ds) + + Logarithmic frequency + 로가리듬 주파수 - FLAC-Files (*.flac) - FLAC 파일(*.flac) + + Logarithmic amplitude + 로가리듬 진폭 - SPEEX-Files (*.spx) - SPEEX 파일(*.spx) + + Frequency range + 주파수 범위 - VOC-Files (*.voc) - VOC 파일(*.voc) + + Amplitude range + 진폭 범위 - AIFF-Files (*.aif *.aiff) - AIFF 파일 (*.aif *.aiff) + + FFT block size + FFT 블록 크기 - AU-Files (*.au) - AU 파일 (*.au) + + FFT window type + FFT 창 유형 - RAW-Files (*.raw) - RAW 파일 (*.raw) + + Peak envelope resolution + 피크 엔벨로프 레졸루션 + + + + Spectrum display resolution + 스펙트럼 디스플레이 레졸루션 + + + + Peak decay multiplier + 피크 디케이 증폭기 + + + + Averaging weight + 애버리징 위젯 + + + + Waterfall history size + 워터폴 히스토리 크기 + + + + Waterfall gamma correction + 워터폴 감마 보정 + + + + FFT window overlap + FFT 창 오버랩 + + + + FFT zero padding + FFT 제로 패딩 + + + + + Full (auto) + 전체 (자동) + + + + + + Audible + 잘 들리게 + + + + Bass + 최저음 + + + + Mids + 중간음 + + + + High + 최고음 + + + + Extended + 늘어지게 + + + + Loud + 크게 + + + + Silent + 조용하게 + + + + (High time res.) + (최고음 시간 res.) + + + + (High freq. res.) + (최고음 주파수 res.) + + + + Rectangular (Off) + 렉탱귤러 (끔) + + + + + Blackman-Harris (Default) + 블랙맨-해리스 (기본값) + + + + Hamming + 해밍 + + + + Hanning + 해닝 - SampleTCOView + lmms::SampleClip - Delete (middle mousebutton) - 삭제(마우스 가운데 버튼) - - - Cut - 잘라내기 - - - Copy - 복사 - - - Paste - 붙여넣기 - - - Mute/unmute (<%1> + middle click) - 음소거/해제 (<%1> + 마우스 가운데 버튼) - - - Double-click to open sample - 더블클릭하여 샘플 열기 + + Sample not found + - SampleTrack + lmms::SampleTrack + Volume - 음량 + 볼륨 + Panning 패닝 + + Mixer channel + 믹서 채널 + + + + Sample track 샘플 트랙 + + + lmms::Scale - FX channel - FX 채널 + + empty + 비어 있음 - SampleTrackView + lmms::Sf2Instrument - Track volume - 트랙 음량 + + Bank + 뱅크 - Channel volume: - 채널 음량: + + Patch + 패치 - VOL - 음량 + + Gain + 게인 - Panning - 패닝 + + Reverb + 리버브 - Panning: - 패닝: + + Reverb room size + 리버브 공간 크기 - PAN - 패닝 + + Reverb damping + 리버브 진폭 감소 - FX %1: %2 - FX %1: %2 + + Reverb width + 리버브 폭 + + + + Reverb level + 리버브 레벨 + + + + Chorus + 코러스 + + + + Chorus voices + 코러스 보이스 + + + + Chorus level + 코러스 레벨 + + + + Chorus speed + 코러스 속도 + + + + Chorus depth + 코러스 깊이 + + + + A soundfont %1 could not be loaded. + %1 사운드폰트를 불러올 수 없습니다. - SampleTrackWindow + lmms::SfxrInstrument - GENERAL SETTINGS - 일반 설정 - - - Sample volume - 샘플 음량 - - - Volume: - 음량: - - - VOL - 음량 - - - Panning - 패닝 - - - Panning: - 패닝: - - - PAN - 패닝 - - - FX channel - FX 채널 - - - FX - FX + + Wave + 웨이브 - SaveOptionsWidget + lmms::SidInstrument - Discard MIDI connections - MIDI 연결 제거 + + Cutoff frequency + 컷오프 주파수 + + + + Resonance + 공명 + + + + Filter type + 필터 유형 + + + + Voice 3 off + 보이스 3 끔 + + + + Volume + 볼륨 + + + + Chip model + 칩 모델 - SetupDialog + lmms::SlicerT - Setup LMMS - LMMS 설정 + + Note threshold + - General settings - 일반 설정 + + FadeOut + - BUFFER SIZE - 버퍼 크기 + + Original bpm + - MISC - 기타 + + Slice snap + - Use built-in NaN handler - + + BPM sync + - PLUGIN EMBEDDING - + + + slice_%1 + - No embedding - - - - Embed using Qt API - - - - Embed using native Win32 API - - - - Embed using XEmbed protocol - - - - LANGUAGE - 언어 - - - 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 - 비활성화됨 - - - Auto-save interval: %1 - 자동 저장 간격: %1 - - - Reset to default value - - - - Keep plugin windows on top when not embedded - + + Sample not found: %1 + - Song + lmms::Song + Tempo 템포 + Master volume - 마스터 음량 + 마스터 볼륨 + Master pitch 마스터 피치 + + Aborting project load + 프로젝트 불러오기 중단하는 중 + + + + Project file contains local paths to plugins, which could be used to run malicious code. + 프로젝트 파일에는 악성 코드를 실행하는 데 사용될 수 있는 플러그인의 로컬 경로가 포함되어 있습니다. + + + + Can't load project: Project file contains local paths to plugins. + 프로젝트 불러올 수 없음: 프로젝트 파일에 플러그인에 대한 로컬 경로가 포함되어 있습니다. + + + LMMS Error report LMMS 오류 보고 - The following errors occured while loading: - 로딩 중 다음과 같은 오류가 발생하였습니다: + + (repeated %1 times) + (%1번 반복됨) + + + + The following errors occurred while loading: + 불러오는 동안 다음 오류가 발생했습니다: - SongEditor + lmms::StereoEnhancerControls - Could not open file - 파일을 열 수 없음 - - - Could not open file %1. You probably have no permissions to read this file. - Please make sure to have at least read permissions to the file and try again. - 파일 %1을(를) 열 수 없습니다. 파일을 읽을 수 있는 권한이 없기 때문일 수 있습니다. 파일을 읽을 수 있는 권한이 있는지 확인 후 다시 시도하시기 바랍니다. - - - 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을(를) 쓰기 위하여 열 수 없습니다. 파일을 쓸 수 있는 권한이 없기 때문일 수 있습니다. 파일에 쓸 수 있는 권한이 있는지 확인 후 다시 시도하시기 바랍니다. - - - 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 단위의 템포 + + Width + - SongEditorWindow + lmms::StereoMatrixControls - Song-Editor - 노래 편집기 + + Left to Left + 좌측 → 좌측 - Play song (Space) - 노래 재생 (Space) + + Left to Right + 좌측 → 우측 - Record samples from Audio-device - 오디오 장치로부터 샘플 녹음 + + Right to Left + 우측 → 좌측 - 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 - 그리기 모드 - - - Edit mode (select and move) - 편집 모드 (선택 및 이동) - - - Timeline controls - - - - Zoom controls - - - - Horizontal zooming - + + Right to Right + 우측 → 우측 - SpectrumAnalyzerControlDialog - - Linear spectrum - 선형 스펙트럼 - - - Linear Y axis - 선형 Y축 - - - - SpectrumAnalyzerControls - - Linear spectrum - 선형 스펙트럼 - - - Linear Y axis - 선형 Y축 - - - Channel mode - 채널 모드 - - - - StepRecorderWidget - - Hint - - - - Move recording curser using <Left/Right> arrows - - - - - SubWindow - - Close - 닫기 - - - Maximize - 최대화 - - - Restore - 복원 - - - - TabWidget - - Settings for %1 - %1에 대한 설정 - - - - 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분음표에 동기화됨 - - - - TimeDisplayWidget - - 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 - 루프 지점 - - - - Track + lmms::Track + Mute 음소거 + Solo - 독주 + 솔로 연주 - TrackContainer + lmms::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가 지원하는 포맷으로 변환하시기 바랍니다. + %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을(를) 읽기 열 수 없습니다. 파일을 읽을 수 있는 권한이 있는지 확인 후 다시 시도하시기 바랍니다! + 읽기 위한 %1 파일을 열 수 없습니다. +파일과 파일이 포함된 디렉터리에 대한 읽기 권한이 있는지 확인한 후 다시 시도하세요! + Loading project... - 프로젝트 로딩 중... + 프로젝트 불러오는 중... + + Cancel 취소 + + Please wait... 잠시만 기다려 주세요... + Loading cancelled - 로딩 취소됨 + 불러오는 도중 취소됨 + Project loading was cancelled. - 프로젝트 로딩이 취소되었습니다. + 프로젝트가 불러오는 도중에 취소되었습니다. + Loading Track %1 (%2/Total %3) - 트랙 %1 로딩 중 (%2/총 %3) + 트랙 %1 불러오는 중 (%2/총 %3) + Importing MIDI-file... - MIDI 파일을 가져오는중... + MIDI 파일 가져오는중... - TrackContentObject + lmms::TripleOscillator - Mute - 음소거 + + Sample not found + - TrackContentObjectView + lmms::VecControls - Current position - 현재 위치 + + Display persistence amount + 지속됨 양 화면표시 - Hint - + + Logarithmic scale + 로가리듬 스케일 - 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까지) - - - Delete (middle mousebutton) - 삭제(마우스 가운데 버튼) - - - Cut - 잘라내기 - - - Copy - 복사 - - - Paste - 붙여넣기 - - - Mute/unmute (<%1> + middle click) - 음소거/해제 (<%1> + 마우스 가운데 버튼) + + High quality + 고음질 - TrackOperationsWidget + lmms::VestigeInstrument - Mute - 음소거 + + Loading plugin + 플러그인 불러오는 중 - Solo - 독주 - - - Clone this track - 트랙 복제 - - - Remove this track - 트랙 제거 - - - Clear this track - 트랙 초기화 - - - FX %1: %2 - FX %1: %2 - - - Assign to new FX 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. - - - - Actions - + + Please wait while loading the VST plugin... + VST 플러그인을 불러오는 동안 잠시 기다려 주세요... - TripleOscillatorView + lmms::Vibed - Synchronize oscillator 1 with oscillator 2 - + + String %1 volume + 스트링 %1 볼륨 - Synchronize oscillator 2 with oscillator 3 - + + String %1 stiffness + 스트링 %1 스티프니스 - Osc %1 volume: - 오실레이터 %1 음량: + + Pick %1 position + 픽 %1 포지션 - Osc %1 panning: - 오실레이터 %1 패닝: + + Pickup %1 position + 픽업 %1 포지션 - Osc %1 coarse detuning: - + + String %1 panning + 스트링 %1 패닝 - semitones - 반음 + + String %1 detune + 스트링 %1 디튠 - Osc %1 fine detuning left: - + + String %1 fuzziness + 스트링 %1 퍼지니스 - cents - 센트 + + String %1 length + 스트링 %1 길이 - Osc %1 fine detuning right: - + + Impulse %1 + 임펄스 %1 - 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 - 사용자 지정 파형 + + String %1 + 스트링 %1 - VersionedSaveDialog + lmms::VoiceObject - Increment version number - 버전 증가 + + Voice %1 pulse width + 보이스 %1 펄스 폭 - Decrement version number - 버전 감소 + + Voice %1 attack + 보이스 %1 어택 - already exists. Do you want to replace it? - 이(가) 이미 존재합니다. 덮어쓰시겠습니까? + + Voice %1 decay + 보이스 %1 디케이 - Save Options - 저장 옵션 + + 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 테스트 - VestigeInstrumentView - - Previous (-) - 이전 (-) - - - Save preset - 프리셋 저장 - - - Next (+) - 다음 (+) - - - Show/hide GUI - GUI 보이기/숨기기 - - - Turn off all notes - 모든 음 끄기 - - - DLL-files (*.dll) - DLL 파일 (*.dll) - - - EXE-files (*.exe) - EXE 파일 (*.exe) - - - 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 - 보이기/숨기기 - - - 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 + lmms::VstPlugin + + The VST plugin %1 could not be loaded. VST 플러그인 %1을 불러올 수 없습니다. + Open Preset 프리셋 열기 - Vst Plugin Preset (*.fxp *.fxb) + + + 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 플러그인을 읽을 동안 잠시 기다려 주세요... + VST 플러그인을 불러오는 동안 잠시 기다려 주세요... - WatsynInstrument + lmms::WatsynInstrument + Volume A1 - A1 음량 + 볼륨 A1 + Volume A2 - A2 음량 + 볼륨 A2 + Volume B1 - B1 음량 + 볼륨 B1 + Volume B2 - B2 음량 + 볼륨 B2 + Panning A1 - A1 패닝 + 패닝 A1 + Panning A2 - A2 패닝 + 패닝 A2 + Panning B1 - B1 패닝 + 패닝 B1 + Panning B2 - B2 패닝 + 패닝 B2 + Freq. multiplier A1 - + 주파수 증폭기 A1 + Freq. multiplier A2 - + 주파수 증폭기 A2 + Freq. multiplier B1 - + 주파수 증폭기 B1 + Freq. multiplier B2 - + 주파수 증폭기 B2 + Left detune A1 - + 좌측 디튠 A1 + Left detune A2 - + 좌측 디튠 A2 + Left detune B1 - + 좌측 디튠 B1 + Left detune B2 - + 좌측 디튠 B2 + Right detune A1 - + 우측 디튠 A1 + Right detune A2 - + 우측 디튠 A2 + Right detune B1 - + 우측 디튠 B1 + Right detune B2 - + 우측 디튠 B2 + A-B Mix - + A-B 믹스 + A-B Mix envelope amount - + A-B 믹스 엔벨로프 양 + A-B Mix envelope attack - + A-B 믹스 엔벨로프 어택 + A-B Mix envelope hold - + A-B 믹스 엔벨로프 홀드 + A-B Mix envelope decay - + A-B 믹스 엔벨로프 디케이 + A1-B2 Crosstalk - + A1-B2 크로스토크 + A2-A1 modulation - + A2-A1 모듈레이션 + B2-B1 modulation - + B2-B1 모듈레이션 + Selected graph 선택된 그래프 - WatsynView + lmms::WaveShaperControls - Volume - 음량 + + Input gain + 입력 게인 - 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 - - - - Mix output of B2 to B1 - - - - Draw your own waveform here by dragging your mouse on this graph. - 드래그하여 원하는 파형을 그리세요. - - - Load waveform - 파형 불러오기 - - - Phase left - 왼쪽 위상 - - - Phase right - 오른쪽 위상 - - - 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 - 톱니파 + + Output gain + 출력 게인 - Xpressive + lmms::Xpressive + Selected graph - 선택된 그래프 + 선택된 그래프 + A1 - + A1 + A2 - + A2 + A3 - + A3 + W1 smoothing - + W1 스무딩 + W2 smoothing - + W2 스무딩 + W3 smoothing - + W3 스무딩 + Panning 1 - + 패닝 1 + Panning 2 - + 패닝 2 + Rel trans - + 릴리즈 전환 - 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 + lmms::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 컨트롤 변경 이벤트 - ZynAddSubFxView - - Portamento: - 포르타멘토: - - - PORT - 포르타멘토 - - - FREQ - 주파수 - - - RES - 공명 - - - Bandwidth: - 대역폭: - - - BW - 대역폭 - - - FM GAIN - FM 이득 - - - Resonance center frequency: - 공명 중심 주파수: - - - RES CF - - - - Resonance bandwidth: - 공명 대역폭: - - - RES BW - - - - Show GUI - GUI 표시 - - - Filter frequency: - - - - Filter resonance: - - - - FM gain: - - - - Forward MIDI control changes - - - - - audioFileProcessor - - Amplify - 증폭 - - - Start of sample - 샘플 시작 - - - End of sample - 샘플 끝 - - - Loopback point - 루프 시작점 - - - Reverse sample - 샘플 역으로 - - - Loop mode - 루프 모드 - - - Stutter - - - - Interpolation mode - 보간법 - - - None - 없음 - - - Linear - 선형 - - - Sinc - Sinc - - - Sample not found: %1 - 샘플 %1을 찾을 수 없음 - - - - bitInvader - - Sample length - 샘플 길이 - - - - bitInvaderView - - 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 - 파형을 부드럽게 - - - - dynProcControlDialog - - INPUT - 입력 - - - Input gain: - 입력 이득: - - - OUTPUT - 출력 - - - Output gain: - 출력 이득: - - - ATTACK - - - - Peak attack time: - - - - RELEASE - - - - Peak release time: - - - - Process based on the maximum of both stereo channels - 두 채널의 최댓값을 기준으로 효과 적용 - - - Process based on the average of both stereo channels - 두 채널의 평균을 기준으로 효과 적용 - - - 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 - - Input gain - 입력 이득 - - - Output gain - 출력 이득 - - - Attack time - - - - Release time - - - - Stereo mode - 스테레오 모드 - - - - graphModel + lmms::graphModel + Graph 그래프 - kickerInstrument + lmms::gui::AmplifierControlDialog - Start frequency - 시작 주파수 + + VOL + 볼륨 - End frequency - 끝 주파수 + + Volume: + 볼륨: - Length - 길이 + + PAN + 패닝 - Gain - 이득 + + Panning: + 패닝: - Noise + + LEFT + + + + + Left gain: + 좌측 게인: + + + + RIGHT + + + + + Right gain: + 우측 게인: + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + 샘플 열기 + + + + Reverse sample + 리버스 샘플 + + + + Disable loop + 루프 비활성화 + + + + Enable loop + 루프 활성화 + + + + Enable ping-pong loop + 핑-퐁 루프 활성화 + + + + Continue sample playback across notes + 노트 전체에 걸쳐 샘플 재생 계속하기 + + + + Amplify: + Amplify: + + + + Start point: + 시작점: + + + + End point: + 끝점: + + + + Loopback point: + 루프백 포인트: + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + 샘플 길이: + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + 오토메이션 편집기에서 열기 + + + + Clear + 지우기 + + + + Reset name + 이름 재설정 + + + + Change name + 이름 변경하기 + + + + Set/clear record + 녹음 지정하기/지우기 + + + + Flip Vertically (Visible) + 수직으로 뒤집기 (표시됨) + + + + Flip Horizontally (Visible) + 수평으로 뒤집기 (표시됨) + + + + %1 Connections + %1 연결 + + + + Disconnect "%1" + "%1" 연결끊기 + + + + Model is already connected to this clip. + 모델이 이미 이 클립에 연결되어 있습니다. + + + + lmms::gui::AutomationEditor + + + Edit Value + 값 편집하기 + + + + New outValue + 새 출력값 + + + + New inValue + 새 입력값 + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + 현재 클립 연주하기/일시중지 (Space) + + + + Stop playing of current clip (Space) + 현재 클립 연주 중지하기 (Space) + + + + Edit actions + 편집 작업 + + + + Draw mode (Shift+D) + 그리기 모드 (Shift+D) + + + + Erase mode (Shift+E) + 지우기 모드 (Shift+E) + + + + Draw outValues mode (Shift+C) + 출력값 그리기 모드 (Shift+C) + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + 수직으로 뒤집기 + + + + Flip horizontally + 수평으로 뒤집기 + + + + Interpolation controls + 인터폴레이션 컨트롤 + + + + Discrete progression + 디스크리트 프로그레션 + + + + Linear progression + 리니어 프로그레션 + + + + Cubic Hermite progression + 큐빅 에르미트 프로그레션 + + + + Tension value for spline + 스플라인의 텐션 값 + + + + Tension: + 텐션: + + + + Zoom controls + 컨트롤 확대/축소 + + + + Horizontal zooming + 수평 주밍 + + + + Vertical zooming + 수직 주밍 + + + + Quantization controls + 퀀티제이션 컨트롤 + + + + Quantization + 퀀티제이션 + + + + Clear ghost notes + + + + + + Automation Editor - no clip + 오토메이션 편집기 - 클립 없음 + + + + + Automation Editor - %1 + 오토메이션 편집기 - %1 + + + + Model is already connected to this clip. + 모델이 이미 이 클립에 연결되어 있습니다. + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + FREQ + + + + Frequency: + 주파수: + + + + GAIN + 게인 + + + + Gain: + 게인: + + + + RATIO + 레시오 + + + + Ratio: + 레시오: + + + + lmms::gui::BitInvaderView + + + Sample length + 샘플 길이 + + + + Draw your own waveform here by dragging your mouse on this graph. + 이 그래프 위에 마우스를 드래그하여 여기에 나만의 파형을 그려보세요. + + + + + Sine wave + 사인파 + + + + + Triangle wave + 삼각파 + + + + + Saw wave + 톱니파 + + + + + Square wave + 사각파 + + + + + White noise + 백색 잡음 + + + + + User-defined wave + 사용자 정의된 파형 + + + + + Smooth waveform + 부드러운 파형 + + + + Interpolation + 인터폴레이션 + + + + Normalize + 노멀라이즈 + + + + lmms::gui::BitcrushControlDialog + + + IN + 입력 + + + + OUT + 출력 + + + + + GAIN + 게인 + + + + Input gain: + 입력 게인: + + + + NOISE 잡음 - Click - + + Input noise: + 입력 잡음: - Start from note - 음표 주파수에서 시작 + + Output gain: + 출력 게인: - End to note - 음표 주파수에서 마침 + + CLIP + 클립 - Start distortion - + + Output clip: + 출력 클립: - End distortion - + + Rate enabled + 레이트 활성화됨 - Envelope slope - + + Enable sample-rate crushing + 샘플 레이트 크러싱 활성화 - Frequency slope - + + Depth enabled + 깊이 활성화됨 + + + + Enable bit-depth crushing + 비트 깊이 크러싱 활성화 + + + + FREQ + FREQ + + + + Sample rate: + 샘플 레이트: + + + + STEREO + 스테레오 + + + + Stereo difference: + 스테레오 차이: + + + + QUANT + 퀀타이즈 + + + + Levels: + 레벨: - kickerInstrumentView + lmms::gui::CPULoadWidget - Start frequency: - 시작 주파수: + + DSP total: %1% + - End frequency: - 끝 주파수: + + - Notes and setup: %1% + - 노트 및 셋업: %1% - Gain: - 이득: + + - Instruments: %1% + - Click: - + + - Effects: %1% + - Noise: - 잡음: - - - Frequency slope: - - - - Envelope length: - 엔벨로프 길이: - - - Envelope slope: - - - - Start distortion: - 디스토션 시작 값: - - - End distortion: - 디스토션 끝 값: + + - Mixing: %1% + - ladspaBrowserView + lmms::gui::CarlaInstrumentView - Available Effects - 사용 가능한 효과 + + Show GUI + GUI 표시하기 - Unavailable Effects - 사용 불가능한 효과 + + Click here to show or hide the graphical user interface (GUI) of Carla. + Carla의 그래픽 사용자 인터페이스(GUI)를 표시하거나 숨기려면 여기를 클릭하세요. - Instruments - 악기 + + Params + 매개변수 - Analysis Tools - 분석 도구 - - - Don't know - 알 수 없음 - - - Type: - 형태: + + Available from Carla version 2.1 and up. + Carla 버전 2.1 이상부터 사용 가능합니다. - ladspaDescription + lmms::gui::CarlaParamsView - Plugins - 플러그인 + + Search.. + 검색하기.. - Description - 요약 + + Clear filter text + 필터 텍스트 지우기 + + + + Only show knobs with a connection. + 연결된 노브만 표시합니다. + + + + - Parameters + - 매개변수 - ladspaPortDialog + lmms::gui::ClipView - Ports - 포트 + + Current position + 현재 포지션 + + Current length + 현재 길이 + + + + + %1:%2 (%3:%4 to %5:%6) + %1:%2 (%3:%4 ~ %5:%6) + + + + Press <%1> and drag to make a copy. + <%1>을 누르고 드래그하여 복사합니다. + + + + Press <%1> for free resizing. + 자유롭게 크기를 조정하려면 <%1>을 누르십시오. + + + + Hint + 힌트 + + + + Delete (middle mousebutton) + 삭제하기 (마우스 가운데 버튼) + + + + Delete selection (middle mousebutton) + 선택항목 삭제하기 (마우스 가운데 버튼) + + + + Cut + 잘라내기 + + + + Cut selection + 선택항목 잘라내기 + + + + Merge Selection + 선택항목 합치기 + + + + Copy + 복사하기 + + + + Copy selection + 선택항목 복사하기 + + + + Paste + 붙여넣기 + + + + Mute/unmute (<%1> + middle click) + 음소거/음소거 해제 (<%1> + 가운데 버튼 클릭) + + + + Mute/unmute selection (<%1> + middle click) + 선택항목 음소거/음소거 해제 (<%1> + 가운데 버튼 클릭) + + + + Clip color + 클립 색상 + + + + Change + 변경하기 + + + + Reset + 재설정 + + + + Pick random + 무작위 고르기 + + + + lmms::gui::CompressorControlDialog + + + Threshold: + 스레시홀드: + + + + Volume at which the compression begins to take place + 압축이 시작되는 지점의 볼륨 + + + + Ratio: + 레시오: + + + + How far the compressor must turn the volume down after crossing the threshold + 컴프레서가 스레시홀드를 초과한 후 볼륨을 낮춰야 하는 정도 + + + + Attack: + 어택: + + + + Speed at which the compressor starts to compress the audio + 컴프레서가 오디오 압축을 시작하는 속도 + + + + Release: + 릴리즈: + + + + Speed at which the compressor ceases to compress the audio + 컴프레서가 오디오 압축을 중단하는 속도 + + + + Knee: + 니(Knee): + + + + Smooth out the gain reduction curve around the threshold + 스레시홀드 주변에서 게인 감소 곡선 부드럽게 펴기 + + + + Range: + 범위: + + + + Maximum gain reduction + 최대 게인 감소 + + + + Lookahead Length: + 룩어헤드 길이: + + + + How long the compressor has to react to the sidechain signal ahead of time + 컴프레서가 미리 사이드체인 신호에 반응해야 하는 시간 + + + + Hold: + 홀드: + + + + Delay between attack and release stages + 어택과 릴리즈 단계 사이의 딜레이 + + + + RMS Size: + RMS 크기: + + + + Size of the RMS buffer + RMS 버퍼의 크기 + + + + Input Balance: + 입력 밸런스: + + + + Bias the input audio to the left/right or mid/side + 입력 오디오를 좌/우 또는 중간/측면으로 치우치게하기 + + + + Output Balance: + 출력 밸런스: + + + + Bias the output audio to the left/right or mid/side + 출력 오디오를 좌/우 또는 중간/측면으로 치우치게하기 + + + + Stereo Balance: + 스테레오 밸런스: + + + + Bias the sidechain signal to the left/right or mid/side + 사이드 체인 신호를 좌/우 또는 중간/측면으로 치우치게하기 + + + + Stereo Link Blend: + 스테레오 링크 섞기: + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + 림크해제된/최대/평균/최소 스테레오 링킹 모드 간 섞기 + + + + Tilt Gain: + 틸트 게인: + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + 사이드체인 신호를 저주파 또는 고주파로 치우치게 합니다. -6db는 로패스, 6db는 하이패스입니다. + + + + Tilt Frequency: + 틸트 주파수: + + + + Center frequency of sidechain tilt filter + 사이드 체인 틸트 필터의 중심 주파수 + + + + Mix: + 믹스: + + + + Balance between wet and dry signals + 웨트 신호와 드라이 신호 간의 밸런스 + + + + Auto Attack: + 자동 어택: + + + + Automatically control attack value depending on crest factor + 파고율에 따른 어택 값 자동적으로 제어 + + + + Auto Release: + 자동 릴리즈: + + + + Automatically control release value depending on crest factor + 파고율에 따른 릴리즈 값 자동적으로 제어 + + + + Output gain + 출력 게인 + + + + + Gain + 게인 + + + + Output volume + 출력 볼륨 + + + + Input gain + 입력 게인 + + + + Input volume + 입력 볼륨 + + + + Root Mean Square + 제곱 평균 제곱근 + + + + Use RMS of the input + 입력의 RMS 사용하기 + + + + Peak + 피크 + + + + Use absolute value of the input + 입력의 절대값 사용하기 + + + + Left/Right + 좌/우 + + + + Compress left and right audio + 좌측 및 우측 오디오 압축하기 + + + + Mid/Side + 중간/측면 + + + + Compress mid and side audio + 중간 및 측면 오디오 압축하기 + + + + Compressor + 컴프레서 + + + + Compress the audio + 오디오 압축하기 + + + + Limiter + 리미터 + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + 레시오를 무한대로 지정 (오디오 볼륨 제한이 보장되지 않음) + + + + Unlinked + 링크 해제됨 + + + + Compress each channel separately + 각 채널 따로따로 압축하기 + + + + Maximum + 최댓값 + + + + Compress based on the loudest channel + 가장 소리가 큰 채널을 기준으로 압축하기 + + + + Average + 평균 + + + + Compress based on the averaged channel volume + 평균 채널 볼륨을 기준으로 압축 + + + + Minimum + 최솟값 + + + + Compress based on the quietest channel + 가장 조용한 채널을 기준으로 압축하기 + + + + Blend + 섞기 + + + + Blend between stereo linking modes + 스테레오 링킹 모드 간 섞기 + + + + Auto Makeup Gain + 자동 메이크업 게인 + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + 스레시홀드, 니(Knee) 및 레시오 설정에 따라 자동으로 메이크업 게인 변경 + + + + + Soft Clip + 소프트 클립 + + + + Play the delta signal + 델타 신호 연주하기 + + + + Use the compressor's output as the sidechain input + 컴프레서의 출력을 사이드체인 입력으로 사용하기 + + + + Lookahead Enabled + 룩어헤드 활성화됨 + + + + Enable Lookahead, which introduces 20 milliseconds of latency + 20밀리초의 레이턴시를 유발하는 룩어헤드 활성화 + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + 연결 설정 + + + + MIDI CONTROLLER + MIDI 컨트롤러 + + + + Input channel + 입력 채널 + + + + CHANNEL + 채널 + + + + Input controller + 입력 컨트롤러 + + + + CONTROLLER + 컨트롤러 + + + + + Auto Detect + 자동 감지 + + + + MIDI-devices to receive MIDI-events from + MIDI 이벤트를 수신할 MIDI 디바이스 + + + + USER CONTROLLER + 사용자 컨트롤러 + + + + MAPPING FUNCTION + 매핑 기능 + + + + OK + 확인 + + + + Cancel + 취소 + + + + LMMS + LMMS + + + + Cycle Detected. + 사이클이 감지되었습니다. + + + + lmms::gui::ControllerRackView + + + Controller Rack + 컨트롤러 랙 + + + + Add + 추가하기 + + + + Confirm Delete + 삭제 확인하기 + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + 삭제를 확인하시겠습니까? 이 컨트롤러와 연결된 기존 연결이 있습니다. 실행 취소할 방법이 없습니다. + + + + lmms::gui::ControllerView + + + Controls + 컨트롤 + + + + Rename controller + 컨트롤러 이름변경 + + + + Enter the new name for this controller + 이 컨트롤러의 새 이름을 입력하세요 + + + + LFO + LFO + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + 이 컨트롤러 제거(&R) + + + + Re&name this controller + 이 컨트롤러 이름 변경(&N) + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + 밴드 1/2 크로스오버: + + + + Band 2/3 crossover: + 밴드 2/3 크로스오버: + + + + Band 3/4 crossover: + 밴드 3/4 크로스오버: + + + + Band 1 gain + 밴드 1 게인 + + + + Band 1 gain: + 밴드 1 게인: + + + + Band 2 gain + 밴드 2 게인 + + + + Band 2 gain: + 밴드 2 게인: + + + + Band 3 gain + 밴드 3 게인 + + + + Band 3 gain: + 밴드 3 게인: + + + + Band 4 gain + 밴드 4 게인 + + + + Band 4 gain: + 밴드 4 게인: + + + + Band 1 mute + 밴드 1 음소거 + + + + Mute band 1 + 음소거 밴드 1 + + + + Band 2 mute + 밴드 2 음소거 + + + + Mute band 2 + 음소거 밴드 2 + + + + Band 3 mute + 밴드 3 음소거 + + + + Mute band 3 + 음소거 밴드 3 + + + + Band 4 mute + 밴드 4 음소거 + + + + Mute band 4 + 음소거 밴드 4 + + + + lmms::gui::DelayControlsDialog + + + DELAY + 딜레이 + + + + Delay time + 딜레이 시간 + + + + FDBK + FDBK + + + + Feedback amount + 피드백 양 + + + + RATE + 레이트 + + + + LFO frequency + LFO 주파수 + + + + AMNT + AMNT + + + + LFO amount + LFO 양 + + + + Out gain + 출력 게인 + + + + Gain + 게인 + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + AMOUNT + + + + Number of all-pass filters + 올패스 필터의 수 + + + + FREQ + FREQ + + + + Frequency: + 주파수: + + + + RESO + RESO + + + + Resonance: + 공명: + + + + FEED + FEED + + + + Feedback: + 피드백: + + + + DC Offset Removal + DC 오프셋 제거 + + + + Remove DC Offset + DC 오프셋 제거하기 + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + FREQ + + + + + Cutoff frequency + 컷오프 주파수 + + + + + RESO + RESO + + + + + Resonance + 공명 + + + + + GAIN + 게인 + + + + + Gain + 게인 + + + + MIX + MIX + + + + Mix + 믹스 + + + + Filter 1 enabled + 필터 1 활성화됨 + + + + Filter 2 enabled + 필터 2 활성화됨 + + + + Enable/disable filter 1 + 필터 1 활성화/비활성화 + + + + Enable/disable filter 2 + 필터 2 활성화/비활성화 + + + + lmms::gui::DynProcControlDialog + + + INPUT + 입력 + + + + Input gain: + 입력 게인: + + + + OUTPUT + 출력 + + + + Output gain: + 출력 게인: + + + + ATTACK + 어택 + + + + Peak attack time: + 피크 어택 시간: + + + + RELEASE + 릴리즈 + + + + Peak release time: + 피크 릴리즈 시간: + + + + + Reset wavegraph + 웨이브그래프 재설정 + + + + + Smooth wavegraph + 부드러운 웨이브그래프 + + + + + Increase wavegraph amplitude by 1 dB + 웨이브그래프 진폭 1dB씩 증가하기 + + + + + Decrease wavegraph amplitude by 1 dB + 웨이브그래프 진폭 1dB씩 감소하기 + + + + Stereo mode: maximum + 스테레오 모드: 최댓값 + + + + Process based on the maximum of both stereo channels + 양쪽 스테레오 채널의 최대값을 기준으로 처리하기 + + + + Stereo mode: average + 스테레오 모드: 평균값 + + + + Process based on the average of both stereo channels + 양쪽 스테레오 채널의 평균값을 기준으로 처리하기 + + + + Stereo mode: unlinked + 스테레오 모드: 링크 해제됨 + + + + Process each stereo channel independently + 각 스테레오 채널을 독자적으로 처리 + + + + lmms::gui::Editor + + + Transport controls + 트랜스포트 컨트롤 + + + + Play (Space) + 연주하기 (Space) + + + + Stop (Space) + 중지하기 (Space) + + + + Record + 녹음하기 + + + + Record while playing + 연주하면서 녹음하기 + + + + Toggle Step Recording + 스탭 녹음 전환하기 + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + 이펙트 체인 + + + + Add effect + 이펙트 추가하기 + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + Name 이름 - Rate - 종류 - - - Direction - 방향 - - + Type - 형태 + 유형 - Min < Default < Max - 최소 < 기본 < 최대 + + All + - Logarithmic - 로그 + + Search + - SR Dependent - SR 의존 + + Description + 설명 - Audio - 오디오 + + Author + 원작자 + + + + lmms::gui::EffectView + + + On/Off + 켬/끔 - Control + + W/D + W/D + + + + Wet Level: + 웨트 레벨: + + + + DECAY + 디케이 + + + + Time: + 시간: + + + + GATE + 게이트 + + + + Gate: + 게이트: + + + + Controls 컨트롤 + + Move &up + 위로 이동(&U) + + + + Move &down + 아래로 이동(&D) + + + + &Remove this plugin + 이 플러그인 제거(&R) + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + AMT + + + + + Modulation amount: + 모듈레이션 양: + + + + + DEL + DEL + + + + + Pre-delay: + 프리-딜레이: + + + + + ATT + ATT + + + + + Attack: + 어택: + + + + HOLD + HOLD + + + + Hold: + 홀드: + + + + DEC + DEC + + + + Decay: + 디케이: + + + + SUST + SUST + + + + Sustain: + 서스테인: + + + + REL + REL + + + + Release: + 릴리즈: + + + + SPD + SPD + + + + Frequency: + 주파수: + + + + FREQ x 100 + FREQ x 100 + + + + Multiply LFO frequency by 100 + LFO 주파수를 100으로 곱합니다 + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + 이 LFO로 엔벨로프 양 제어하기 + + + + Hint + 힌트 + + + + Drag and drop a sample into this window. + 샘플을 이 창으로 끌어다 놓으세요. + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + HP + + + + Low-shelf + 로셀프 + + + + Peak 1 + 피크 1 + + + + Peak 2 + 피크 2 + + + + Peak 3 + 피크 3 + + + + Peak 4 + 피크 4 + + + + High-shelf + 하이셸프 + + + + LP + LP + + + + Input gain + 입력 게인 + + + + + + Gain + 게인 + + + + Output gain + 출력 게인 + + + + Bandwidth: + 대역폭: + + + + Octave + 옥타브 + + + + Resonance: + + + + + Frequency: + 주파수: + + + + LP group + LP 그룹 + + + + HP group + HP 그룹 + + + + lmms::gui::EqHandle + + + Reso: + 공명: + + + + BW: + 대역폭: + + + + + Freq: + 주파수: + + + + lmms::gui::ExportProjectDialog + + + Could not open file + 파일을 열 수 없음 + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + 쓰기 위한 %1 파일을 열 수 없습니다. +파일 및 파일이 포함된 디렉터리에 대한 쓰기 권한이 있는지 확인한 후 다시 시도하세요! + + + + Export project to %1 + %1(으)로 프로젝트 내보내기 + + + + ( Fastest - biggest ) + ( 가장 빠름 - 최대 용량 ) + + + + ( Slowest - smallest ) + ( 가장 빠름 - 최소 용량 ) + + + + Error + 오류 + + + + Error while determining file-encoder device. Please try to choose a different output format. + 파일 인코더 디바이스를 확인하는 동안 오류가 발생했습니다. 다른 출력 형식을 선택하십시오. + + + + Rendering: %1% + 렌더링: %1% + + + + lmms::gui::Fader + + + Set value + 값 지정하기 + + + + Please enter a new value between %1 and %2: + %1부터 %2까지의 값을 입력하세요: + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + 탐색기 + + + + Search + 검색 + + + + Refresh list + 목록 새로고침 + + + + User content + 사용자 콘텐츠 + + + + Factory content + 팩토리 콘텐츠 + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + 활성 악기 트랙으로 전송하기 + + + + Open containing folder + 포함된 폴더 열기 + + + + Song Editor + 노래 편집기 + + + + Pattern Editor + 패턴 편집기 + + + + Send to new AudioFileProcessor instance + 새 AudioFileProcessor 인스턴스로 전송하기 + + + + Send to new instrument track + 새 악기 트랙으로 전송하기 + + + + (%2Enter) + (%2Enter) + + + + Send to new sample track (Shift + Enter) + 새 샘플 트랙으로 전송하기 (Shift + Enter) + + + + Loading sample + 샘플 불러오는 중 + + + + Please wait, loading sample for preview... + 잠시만 기다려 주세요. 미리보기용 샘플 불러오는 중... + + + + Error + 오류 + + + + %1 does not appear to be a valid %2 file + %1은(는) 올바른 %2 파일이 아닌 것 같습니다 + + + + --- Factory files --- + --- 팩토리 파일 --- + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + 딜레이 + + + + Delay time: + 딜레이 시간: + + + + RATE + 레이트 + + + + Period: + 주기: + + + + AMNT + AMNT + + + + Amount: + 양: + + + + PHASE + 페이즈 + + + + Phase: + 페이즈: + + + + FDBK + FDBK + + + + Feedback amount: + 피드백 양: + + + + NOISE + 잡음 + + + + White noise amount: + 백색 잡음량: + + + + Invert + 반전 + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + 스위프 시간: + + + + Sweep time + 스위프 시간 + + + + Sweep rate shift amount: + 스위프 레이트 시프트 양: + + + + Sweep rate shift amount + 스위프 레이트 시프트 양 + + + + + Wave pattern duty cycle: + 웨이브 패턴 듀티 사이클: + + + + + Wave pattern duty cycle + 웨이브 패턴 듀티 사이클 + + + + Square channel 1 volume: + 스퀘어 채널 1 볼륨: + + + + Square channel 1 volume + 스퀘어 채널 1 볼륨 + + + + + + Length of each step in sweep: + 스위프에서 각 스텝의 길이: + + + + + + Length of each step in sweep + 스위프에서 각 스텝의 길이 + + + + Square channel 2 volume: + 스퀘어 채널 2 볼륨: + + + + Square channel 2 volume + 스퀘어 채널 2 볼륨 + + + + Wave pattern channel volume: + 웨이브 패턴 채널 볼륨: + + + + Wave pattern channel volume + 웨이브 패턴 채널 볼륨 + + + + Noise channel volume: + 잡음 채널 볼륨: + + + + Noise channel volume + 잡음 채널 볼륨 + + + + SO1 volume (Right): + SO1 볼륨 (우측): + + + + SO1 volume (Right) + SO1 볼륨 (우측) + + + + SO2 volume (Left): + SO2 볼륨 (좌측): + + + + SO2 volume (Left) + SO2 볼륨 (좌측) + + + + Treble: + 트레블: + + + + Treble + 트레블 + + + + Bass: + 베이스: + + + + Bass + 베이스 + + + + Sweep direction + 스위프 방향 + + + + + + + + Volume sweep direction + 볼륨 스위프 방향 + + + + Shift register width + 시프트 레지스터 너비 + + + + Channel 1 to SO1 (Right) + 채널 1 → SO1 (우측) + + + + Channel 2 to SO1 (Right) + 채널 2 → SO1 (우측) + + + + Channel 3 to SO1 (Right) + 채널 3 → SO1 (우측) + + + + Channel 4 to SO1 (Right) + 채널 4 → SO1 (우측) + + + + Channel 1 to SO2 (Left) + 채널 1 → SO2 (좌측) + + + + Channel 2 to SO2 (Left) + 채널 2 → SO2 (좌측) + + + + Channel 3 to SO2 (Left) + 채널 3 → SO2 (좌측) + + + + Channel 4 to SO2 (Left) + 채널 4 → SO2 (좌측) + + + + Wave pattern graph + 웨이브 패턴 그래프 + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + GIG 파일 열기 + + + + Choose patch + 패치 고르기 + + + + Gain: + 게인: + + + + GIG Files (*.gig) + GIG 파일 (*.gig) + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + 작업 디렉터리 + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + LMMS 작업 디렉터리 %1이(가) 없습니다. 지금 만드시겠습니까? 나중에 편집 -> 설정을 통해 디렉터리를 변경할 수 있습니다. + + + + Preparing UI + UI 준비하는 중 + + + + Preparing song editor + 노래 편집기 준비하는 중 + + + + Preparing mixer + 믹서 준비하는 중 + + + + Preparing controller rack + 컨트롤러 랙 준비하는 중 + + + + Preparing project notes + 프로젝트 노트 준비하는 중 + + + + Preparing microtuner + 마이크로튜너 준비하는 중 + + + + Preparing pattern editor + 패턴 편집기 준비하는 중 + + + + Preparing piano roll + 피아노 롤 준비하는 중 + + + + Preparing automation editor + 오토메이션 편집기 준비하는 중 + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + 아르페지오 + + + + RANGE + 범위 + + + + Arpeggio range: + 아르페지오 범위: + + + + octave(s) + 옥타브 + + + + REP + 반복 + + + + Note repeats: + 노트 반복: + + + + time(s) + + + + + CYCLE + 사이클 + + + + Cycle notes: + 사이클 노트: + + + + note(s) + 노트 + + + + SKIP + 스킵 + + + + Skip rate: + 스킵 비율: + + + + + + % + % + + + + MISS + 누락 + + + + Miss rate: + 누락 비율: + + + + TIME + 시간 + + + + Arpeggio time: + 아르페지오 시간: + + + + ms + ms + + + + GATE + 게이트 + + + + Arpeggio gate: + 아르페지오 게이트: + + + + Chord: + 코드: + + + + Direction: + 방향: + + + + Mode: + 모드: + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + 스태킹 + + + + Chord: + 코드: + + + + RANGE + 범위 + + + + Chord range: + 코드 범위: + + + + octave(s) + 옥타브 + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + MIDI 입력 활성화 + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + 채널 + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + 벨로시티 + + + + ENABLE MIDI OUTPUT + MIDI 출력 활성화 + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + 프로그램 + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + 노트 + + + + MIDI devices to receive MIDI events from + MIDI 이벤트를 수신할 MIDI 디바이스 + + + + MIDI devices to send MIDI events to + MIDI 이벤트를 전송할 MIDI 디바이스 + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + 대상 + + + + FILTER + 필터 + + + + FREQ + FREQ + + + + Cutoff frequency: + 컷오프 주파수: + + + + Hz + Hz + + + + Q/RESO + Q/공명 + + + + Q/Resonance: + Q/공명: + + + + Envelopes, LFOs and filters are not supported by the current instrument. + 엔벨로프, LFO 및 필터는 현재 악기에서 지원되지 않습니다. + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + 볼륨 + + + + Volume: + 볼륨: + + + + VOL + 볼륨 + + + + Panning + 패닝 + + + + Panning: + 패닝: + + + + PAN + 패닝 + + + + MIDI + MIDI + + + Input 입력 + Output 출력 - Toggled - 토글 + + Open/Close MIDI CC Rack + MIDI CC 랙 열기/닫기 + + %1: %2 + %1: %2 + + + + lmms::gui::InstrumentTrackWindow + + + Volume + 볼륨 + + + + Volume: + 볼륨: + + + + VOL + 볼륨 + + + + Panning + 패닝 + + + + Panning: + 패닝: + + + + PAN + 패닝 + + + + Pitch + 피치 + + + + Pitch: + 피치: + + + + cents + 센트 + + + + PITCH + 피치 + + + + Pitch range (semitones) + 피치 범위 (반음) + + + + RANGE + 범위 + + + + Mixer channel + 믹서 채널 + + + + CHANNEL + 채널 + + + + Save current instrument track settings in a preset file + 현재 악기 트랙 설정을 프리셋 파일에 저장하기 + + + + SAVE + 저장하기 + + + + Envelope, filter & LFO + 엔벨로프, 필터 & LFO + + + + Chord stacking & arpeggio + 코드 스태킹 & 아르페지오 + + + + Effects + 이펙트 + + + + MIDI + MIDI + + + + Tuning and transposition + + + + + Save preset + 프리셋 저장하기 + + + + XML preset file (*.xpf) + XML 프리셋 파일 (*.xpf) + + + + Plugin + 플러그인 + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + 시작 주파수: + + + + End frequency: + 끝 주파수: + + + + Frequency slope: + 주파수 슬로프: + + + + Gain: + 게인: + + + + Envelope length: + 엔벨로프 길이: + + + + Envelope slope: + 엔벨로프 슬로프: + + + + Click: + 클릭: + + + + Noise: + 잡음: + + + + Start distortion: + 시작 디스토션: + + + + End distortion: + 끝 디스토션: + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + 사용 가능한 이펙트 + + + + + Unavailable Effects + 사용할 수 없는 이펙트 + + + + + Instruments + 악기 + + + + + Analysis Tools + 분석 도구 + + + + + Don't know + 알 수 없음 + + + + Type: + 유형: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + 링크 채널 + + + + Channel + 채널 + + + + lmms::gui::LadspaControlView + + + Link channels + 링크 채널 + + + + Value: + 값: + + + + lmms::gui::LadspaDescription + + + Plugins + 플러그인 + + + + Description + 설명 + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + 포트 + + + + Name + 이름 + + + + Rate + 레이트 + + + + Direction + 방향 + + + + Type + 유형 + + + + Min < Default < Max + 최소 < 기본 < 최대 + + + + Logarithmic + 로가리듬 + + + + SR Dependent + SR 종속성 + + + + Audio + 오디오 + + + + Control + 컨트롤 + + + + Input + 입력 + + + + Output + 출력 + + + + Toggled + 전환됨 + + + Integer 정수 + Float 실수 + + Yes - 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 + lmms::gui::Lb302SynthView + Cutoff Freq: - 차단 주파수: + 컷오프 주파수: + Resonance: 공명: + Env Mod: - 엔벨로프 변조: + Env Mod: + Decay: - 감쇠: + 디케이: + 303-es-que, 24dB/octave, 3 pole filter - + 303-es-que, 24dB/옥타브, 3 폴 필터 + Slide Decay: - 슬라이드 감쇠: + 슬라이드 디케이: + DIST: 디스토션: + Saw wave 톱니파 + Click here for a saw-wave. - 클릭하여 톱니파를 선택합니다. + 톱니파를 얻으려면 여기를 클릭하세요. + Triangle wave 삼각파 + Click here for a triangle-wave. - 클릭하여 삼각파를 선택합니다. + 삼각파를 얻으려면 여기를 클릭하세요. + Square wave 사각파 + Click here for a square-wave. - 클릭하여 사각파를 선택합니다. + 사각파를 얻으려면 여기를 클릭하세요. + Rounded square wave 둥근 사각파 + Click here for a square-wave with a rounded end. - 클릭하여 둥근 사각파를 선택합니다. + 끝이 둥근 사각파를 얻으려면 여기를 클릭하세요. + Moog wave - 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 + lmms::gui::LcdFloatSpinBox - Hardness - + + Set value + 값 지정하기 - Position - 위치 - - - Modulator - 모듈레이터 - - - Crossfade - 크로스페이드 - - - ADSR - ADSR - - - Pressure - 압력 - - - Motion - 모션 - - - Speed - 속도 - - - Bowed - - - - Spread - - - - Marimba - 마림바 - - - Vibraphone - 비브라폰 - - - Agogo - 아고고 - - - Reso - - - - Beats - - - - Clump - - - - 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 - + + Please enter a new value between %1 and %2: + %1부터 %2까지의 값을 입력하세요: - malletsInstrumentView + lmms::gui::LcdSpinBox - Instrument - 악기 + + Set value + 값 지정하기 - 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: - 위치: - - - 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 depth: - + + Please enter a new value between %1 and %2: + %1부터 %2까지의 값을 입력하세요: - manageVSTEffectView + lmms::gui::LeftRightNav - - VST parameter control - + + + + Previous + 이전 - Automated - + + + + Next + 다음 - Close - 닫기 + + Previous (%1) + 이전 (%1) - VST sync - VST와 동기화 + + Next (%1) + 다음 (%1) - manageVestigeInstrumentView + lmms::gui::LfoControllerDialog - - VST plugin control - + + LFO + LFO - VST Sync - VST와 동기화 + + BASE + BASE - Automated - + + Base: + 기준: - Close - 닫기 + + FREQ + FREQ - - - organicInstrument - Distortion - 디스토션 + + LFO frequency: + LFO 주파수: - Volume - 음량 + + AMNT + AMNT - - - organicInstrumentView - Distortion: - 디스토션: + + Modulation amount: + 모듈레이션 양: - Volume: - 음량: + + PHS + PHS - Randomise - 무작위 생성 + + Phase offset: + 페이즈 오프셋: - Osc %1 waveform: - 오실레이터 %1 파형: + + degrees + - Osc %1 volume: - 오실레이터 %1 음량: - - - Osc %1 panning: - 오실레이터 %1 패닝: - - - Osc %1 stereo detuning - - - - cents - 센트 - - - Osc %1 harmonic: - 오실레이터 %1 배음: - - - - patchesDialog - - Qsynth: Channel Preset - - - - Bank selector - - - - Bank - 뱅크 - - - Program selector - - - - Patch - 패치 - - - Name - 이름 - - - OK - 확인 - - - Cancel - 취소 - - - - 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 - - Bank - 뱅크 - - - Patch - 패치 - - - Gain - 이득 - - - Reverb - 리버브 - - - Chorus - 코러스 - - - A soundfont %1 could not be loaded. - 사운드폰트 %1을 불러올 수 없습니다. - - - Reverb room size - 리버브 공간 크기 - - - Reverb damping - 리버브 감쇠 - - - Reverb width - 리버브 너비 - - - Reverb level - - - - Chorus voices - - - - Chorus level - - - - Chorus speed - - - - Chorus depth - 코러스 깊이 - - - - sf2InstrumentView - - Apply reverb (if supported) - 리버브 적용(지원시) - - - Apply chorus (if supported) - 코러스 적용 (지원될 경우) - - - Open SoundFont file - 사운드폰트 파일 열기 - - - Choose patch - - - - Gain: - 이득: - - - Room size: - - - - Damping: - - - - Width: - 너비: - - - Level: - - - - Voices: - - - - Speed: - 속도: - - - Depth: - - - - SoundFont Files (*.sf2 *.sf3) - - - - - 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 - 펄스파 + + Sine wave + 사인파 + Triangle wave 삼각파 + Saw wave 톱니파 - Ring modulation - + + Square wave + 사각파 + + Moog saw wave + 모그 톱니파 + + + + Exponential wave + 지수파 + + + + White noise + 백색 잡음 + + + + User-defined shape. +Double click to pick a file. + 사용자 정의된 형태입니다. +파일을 선택하려면 두 번 클릭하세요. + + + + Multiply modulation frequency by 1 + 모듈레이션 주파수를 1로 곱합니다 + + + + Multiply modulation frequency by 100 + 모듈레이션 주파수를 100으로 곱합니다 + + + + Divide modulation frequency by 100 + 모듈레이션 주파수를 100으로 나눕니다 + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + 구성 파일 + + + + Error while parsing configuration file at line %1:%2: %3 + %1:%2 줄에서 구성 파일을 분석하는 동안 오류: %3 + + + + Could not open file + 파일을 열 수 없음 + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + 쓰기 위한 %1 파일을 열 수 없습니다. +파일 및 파일이 포함된 디렉터리에 대한 쓰기 권한이 있는지 확인한 후 다시 시도하세요! + + + + Project recovery + 프로젝트 복구 + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + 복구 파일이 존재합니다. 이전에 LMMS가 비정상 종료되었거나 여러 개의 LMMS 인스턴스가 동시에 실행 중인 것 같습니다. 복구 파일로부터 프로젝트를 복구하시겠습니까? + + + + + Recover + 복구하기 + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + 파일을 복구합니다. 이 작업을 수행할 때 LMMS의 여러 인스턴스를 실행하지 마세요. + + + + + Discard + 폐기하기 + + + + Launch a default session and delete the restored files. This is not reversible. + 기본 세션을 시작하고 복원된 파일을 삭제합니다. 이 작업은 되돌릴 수 없습니다. + + + + Version %1 + 버전 %1 + + + + Preparing plugin browser + 플러그인 탐색기 준비하는 중 + + + + Preparing file browsers + 파일 탐색기 준비하는 중 + + + + My Projects + 내 프로젝트 + + + + My Samples + 내 샘플 + + + + My Presets + 내 프리셋 + + + + My Home + 내 홈 + + + + Root Directory + + + + + Volumes + 볼륨 + + + + My Computer + 내 컴퓨터 + + + + Loading background picture + 배경 사진 불러오는 중 + + + + &File + 파일(&F) + + + + &New + 새로 만들기(&N) + + + + &Open... + 열기(&O)... + + + + &Save + 저장(&S) + + + + Save &As... + 다른 이름으로 저장(&A)... + + + + Save as New &Version + 새 버전으로 저장(&V) + + + + Save as default template + 기본 템플릿으로 저장하기 + + + + Import... + 가져오기... + + + + E&xport... + 내보내기(&X)... + + + + E&xport Tracks... + 트랙 내보내기(&X)... + + + + Export &MIDI... + MIDI 내보내기(&M)... + + + + &Quit + 종료(&Q) + + + + &Edit + 편집(&E) + + + + Undo + 실행 취소 + + + + Redo + 다시 실행 + + + + Scales and keymaps + + + + + Settings + 설정 + + + + &View + 보기(&V) + + + + &Tools + 도구(&T) + + + + &Help + 도움말(&H) + + + + Online Help + 온라인 도움말 + + + + Help + 도움말 + + + + About + 정보 + + + + Create new project + 새 프로젝트 만들기 + + + + Create new project from template + 템플릿에서 새 프로젝트 만들기 + + + + Open existing project + 기존 프로젝트 열기 + + + + Recently opened projects + 최근에 열린 프로젝트 + + + + Save current project + 현재 프로젝트 저장하기 + + + + Export current project + 현재 프로젝트 내보내기 + + + + Metronome + 메트로놈 + + + + + Song Editor + 노래 편집기 + + + + + Pattern Editor + 패턴 편집기 + + + + + Piano Roll + 피아노 롤 + + + + + Automation Editor + 오토메이션 편집기 + + + + + Mixer + 믹서 + + + + Show/hide controller rack + 컨트롤러 랙 표시하기/숨기기 + + + + Show/hide project notes + 프로젝트 노트 표시하기/숨기기 + + + + Untitled + 제목 없음 + + + + Recover session. Please save your work! + 복구 세션입니다. 프로젝트 파일을 저장해 주세요! + + + + LMMS %1 + LMMS %1 + + + + Recovered project not saved + 복구된 프로젝트가 저장되지 않음 + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + 이 프로젝트는 이전 세션에서 복구되었습니다. 현재 저장되지 않은 상태이며 저장하지 않으면 손실됩니다. 지금 저장하시겠습니까? + + + + Project not saved + 프로젝트 저장되지 않음 + + + + The current project was modified since last saving. Do you want to save it now? + 현재 프로젝트는 마지막 저장 이후 수정되었습니다. 지금 저장하시겠습니까? + + + + Open Project + 프로젝트 열기 + + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + + Save Project + 프로젝트 저장하기 + + + + LMMS Project + LMMS 프로젝트 + + + + LMMS Project Template + LMMS 프로젝트 템플릿 + + + + Save project template + 프로젝트 템플릿 저장하기 + + + + Overwrite default template? + 기본 템플릿을 덮어쓰시겠습니까? + + + + This will overwrite your current default template. + 이 작업은 현재의 기본 템플릿을 덮어씁니다. + + + + Help not available + 도움말 사용할 수 없음 + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + 현재 LMMS에서 사용할 수 있는 도움말이 없습니다. +LMMS에 대한 문서는 http://lmms.sf.net/wiki를 방문하세요. + + + + Controller Rack + 컨트롤러 랙 + + + + Project Notes + 프로젝트 노트 + + + + Fullscreen + 전체화면 + + + + Volume as dBFS + 볼륨을 dBFS 단위로 + + + + Smooth scroll + 부드러운 스크롤 + + + + Enable note labels in piano roll + 피아노 롤에서 노트 레이블 활성화 + + + + MIDI File (*.mid) + MIDI 파일 (*.mid) + + + + + untitled + 제목 없음 + + + + + Select file for project-export... + 프로젝트를 내보낼 파일 선택하기... + + + + Select directory for writing exported tracks... + 내보낸 트랙을 저장할 디렉터리 선택하기... + + + + Save project + 프로젝트 저장하기 + + + + Project saved + 프로젝트 저장됨 + + + + The project %1 is now saved. + %1 프로젝트가 저장되었습니다. + + + + Project NOT saved. + 프로젝트가 저장되지 않았습니다. + + + + The project %1 was not saved! + %1 프로젝트가 저장되지 않았습니다! + + + + Import file + 파일 가져오기 + + + + MIDI sequences + MIDI 시퀀스 + + + + Hydrogen projects + Hydrogen 프로젝트 + + + + All file types + 모든 파일 유형 + + + + lmms::gui::MalletsInstrumentView + + + Instrument + 악기 + + + + Spread + 스프레드 + + + + Spread: + 스프레드: + + + + Random + + + + + Random: + + + + + Missing files + 누락된 파일 + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + 시스템의 Stk 설치가 불완전한 것 같습니다. 전체 Stk 패키지가 설치되었는지 확인하십시오! + + + + Hardness + 하드니스 + + + + Hardness: + 하드니스: + + + + Position + 포지션 + + + + Position: + 포지션: + + + + Vibrato gain + 비브라토 게인 + + + + Vibrato gain: + 비브라토 게인: + + + + Vibrato frequency + 비브라토 주파수 + + + + Vibrato frequency: + 비브라토 주파수: + + + + Stick mix + 스틱 믹스 + + + + Stick mix: + 스틱 믹스: + + + + Modulator + 모듈레이터 + + + + Modulator: + 모듈레이터: + + + + Crossfade + 크로스페이드 + + + + Crossfade: + 크로스페이드: + + + + LFO speed + LFO 속도 + + + + LFO speed: + LFO 속도: + + + + LFO depth + LFO 깊이 + + + + LFO depth: + LFO 깊이: + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + 누름 + + + + Pressure: + 누름: + + + + Speed + 속도 + + + + Speed: + 속도: + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + - VST 매개변수 컨트롤 + + + + VST sync + VST 싱크 + + + + + Automated + 자동화됨 + + + + Close + 닫기 + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + - VST 플러그인 컨트롤 + + + + VST Sync + VST 싱크 + + + + + Automated + 자동화됨 + + + + Close + 닫기 + + + + lmms::gui::MeterDialog + + + + Meter Numerator + 미터 분자 + + + + Meter numerator + 미터 분자 + + + + + Meter Denominator + 미터 분모 + + + + Meter denominator + 미터 분모 + + + + TIME SIG + 박자표 + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + 처음 노트 + + + + + Last key + 처음 노트 + + + + + Middle key + 중간 키 + + + + + Base key + 기준 키 + + + + + + Base note frequency + 기본 노트 주파수 + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + 스케일 설명입니다. "!"로 시작할 수 없고 개행 문자를 포함할 수 없습니다. + + + + + Load + 불러오기 + + + + + Save + 저장하기 + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + 간격을 별도의 줄에 입력합니다. 소수점이 포함된 숫자는 센트로 처리됩니다. +다른 입력은 정수의 레시오(ratios)로 취급되며 'a/b' 또는 'a' 형식이어야 합니다. +단수(0.0 센트 또는 레시오 1/1)는 항상 숨겨진 첫 번째 값으로 표시되므로 수동으로 입력하지 마세요. + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + 키맵 설명입니다. "!"로 시작할 수 없고 개행 문자를 포함할 수 없습니다. + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + 별도의 줄에 키 매핑을 입력합니다. +각 줄은 가운데 키부터 시작하여 순서대로 MIDI 키에 스케일 정도를 할당합니다. +이 패턴은 명시적인 키맵 범위를 벗어난 키에 대해서도 반복됩니다. +여러 개의 키를 동일한 스케일도에 매핑할 수 있습니다. +키를 비활성화/매핑하지 않으려면 'X'를 입력합니다. + + + + FIRST + FIRST + + + + First MIDI key that will be mapped + 매핑될 첫 번째 미디 키 + + + + LAST + LAST + + + + Last MIDI key that will be mapped + 매핑될 마지막 MIDI 키 + + + + MIDDLE + MIDDLE + + + + First line in the keymap refers to this MIDI key + 키맵의 첫 번째 줄은 이 미디 키를 나타냅니다 + + + + BASE N. + BASE N. + + + + Base note frequency will be assigned to this MIDI key + 기본 노트 주파수가 이 MIDI 키에 할당됩니다 + + + + BASE NOTE FREQ + 기본 노트 주파수 + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + 스케일 분석중 오류 + + + + Scale name cannot start with an exclamation mark + 스케일 이름은 느낌표로 시작할 수 없습니다 + + + + Scale name cannot contain a new-line character + 스케일 이름은 개행 문자를 포함할 수 없습니다 + + + + Interval defined in cents cannot be converted to a number + 센트 단위로 정의된 간격은 숫자로 변환할 수 없습니다 + + + + Numerator of an interval defined as a ratio cannot be converted to a number + 레시오로 정의된 간격의 분자는 숫자로 변환할 수 없습니다 + + + + Denominator of an interval defined as a ratio cannot be converted to a number + 레시오로 정의된 간격의 분모는 숫자로 변환할 수 없습니다 + + + + Interval defined as a ratio cannot be negative + 레시오로 정의된 간격은 음수가 될 수 없습니다 + + + + Keymap parsing error + 키맵 분석중 오류 + + + + Keymap name cannot start with an exclamation mark + 키맵 이름은 느낌표로 시작할 수 없습니다 + + + + Keymap name cannot contain a new-line character + 키맵 이름은 개행 문자를 포함할 수 없습니다 + + + + Scale degree cannot be converted to a whole number + 스케일 디그리는 정수로 변환할 수 없습니다 + + + + Scale degree cannot be negative + 스케일 디그리는 음수일 수 없습니다 + + + + Invalid keymap + 잘못된 키맵 + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + 기본 키는 스케일 디그리에 매핑되지 않습니다. 노트에 레퍼런스 주파수를 할당할 방법이 없으므로 소리가 나지 않습니다. + + + + Open scale + 스케일 열기 + + + + + Scala scale definition (*.scl) + Scala 스케일 정의 (*.scl) + + + + Scale load failure + 스케일 불러오기 실패 + + + + + Unable to open selected file. + 선택한 파일을 열 수 없습니다. + + + + Open keymap + 키맵 열기 + + + + + Scala keymap definition (*.kbm) + Scala 키맵 정의 (*.kbm) + + + + Keymap load failure + 키맵 불러오기 실패 + + + + Save scale + 스케일 저장하기 + + + + Scale save failure + 스케일 저장 실패 + + + + + Unable to open selected file for writing. + 쓰기 위해 선택한 파일을 열 수 없습니다. + + + + Save keymap + 키맵 저장하기 + + + + Keymap save failure + 키맵 저장 실패 + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + MIDI CC 랙 - %1 + + + + MIDI CC Knobs: + MIDI CC 노브: + + + + CC %1 + CC %1 + + + + lmms::gui::MidiClipView + + + + Transpose + 트랜스포즈 + + + + Semitones to transpose by: + 조옮김할 반음: + + + + Open in piano-roll + 피아노-롤에서 열기 + + + + Set as ghost in piano-roll + 피아노-롤에서 고스트로 지정하기 + + + + Set as ghost in automation editor + + + + + Clear all notes + 모든 노트 지우기 + + + + Reset name + 이름 재설정 + + + + Change name + 이름 변경하기 + + + + Add steps + 스탭 추가하기 + + + + Remove steps + 스탭 제거하기 + + + + Clone Steps + 스탭 복제하기 + + + + lmms::gui::MidiSetupWidget + + + Device + 디바이스 + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + 믹서 + + + + lmms::gui::MonstroView + + + Operators view + 오퍼레이터 보기 + + + + Matrix view + 매트릭스 보기 + + + + + + Volume + 볼륨 + + + + + + Panning + 패닝 + + + + + + Coarse detune + 코어스 디튠 + + + + + + semitones + 반음 + + + + + Fine tune left + 파인 튠 좌측 + + + + + + + cents + 센트 + + + + + Fine tune right + 파인 튠 우측 + + + + + + Stereo phase offset + 스테레오 페이즈 오프셋 + + + + + + + + deg + + + + + Pulse width + 펄스 폭 + + + + Send sync on pulse rise + 펄스 상승 시 싱크 전송하기 + + + + Send sync on pulse fall + 펄스 하강 시 싱크 전송하기 + + + + Hard sync oscillator 2 + 하드 싱크 오실레이터 2 + + + + Reverse sync oscillator 2 + 리버스 싱크 오실레이터 2 + + + + Sub-osc mix + 서브-osc 믹스 + + + + Hard sync oscillator 3 + 하드 싱크 오실레이터 3 + + + + Reverse sync oscillator 3 + 리버스 싱크 오실레이터 3 + + + + + + + Attack + 어택 + + + + + Rate + 레이트 + + + + + Phase + 페이즈 + + + + + Pre-delay + 프리-딜레이 + + + + + Hold + 홀드 + + + + + Decay + 디케이 + + + + + Sustain + 서스테인 + + + + + Release + 릴리즈 + + + + + Slope + 슬로프 + + + + Mix osc 2 with osc 3 + osc 2를 osc 3로 믹스 + + + + Modulate amplitude of osc 3 by osc 2 + osc 2로 osc 3의 진폭 조절하기 + + + + Modulate frequency of osc 3 by osc 2 + osc 2로 osc 3의 주파수 조절하기 + + + + Modulate phase of osc 3 by osc 2 + osc 2로 osc 3의 페이즈 조절하기 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + 모듈레이션 양 + + + + lmms::gui::MultitapEchoControlDialog + + + Length + 길이 + + + + Step length: + 스탭 길이: + + + + Dry + 드라이 + + + + Dry gain: + 드라이 게인: + + + + Stages + 단계 + + + + Low-pass stages: + 로패스 단계: + + + + Swap inputs + 좌우 입력 바꾸기 + + + + Swap left and right input channels for reflections + 반사율을 위해 좌측 및 우측 입력 채널 바꾸기 + + + + lmms::gui::NesInstrumentView + + + + + + Volume + 볼륨 + + + + + + Coarse detune + 코어스 디튠 + + + + + + Envelope length + 엔벨로프 길이 + + + + Enable channel 1 + 채널 1 활성화 + + + + Enable envelope 1 + 엔벨로프 1 활성화 + + + + Enable envelope 1 loop + 엔벨로프 1 루프 활성화 + + + + Enable sweep 1 + 스위프 1 활성화 + + + + + Sweep amount + 스위프 양 + + + + + Sweep rate + 스위프 레이트 + + + + + 12.5% Duty cycle + 12.5% 듀티 사이클 + + + + + 25% Duty cycle + 25% 듀티 사이클 + + + + + 50% Duty cycle + 50% 듀티 사이클 + + + + + 75% Duty cycle + 75% 듀티 사이클 + + + + Enable channel 2 + 채널 2 활성화 + + + + Enable envelope 2 + 엔벨로프 2 활성화 + + + + Enable envelope 2 loop + 엔벨로프 2 루프 활성화 + + + + Enable sweep 2 + 스위프 2 활성화 + + + + Enable channel 3 + 채널 3 활성화 + + + + Noise Frequency + 잡음 주파수 + + + + Frequency sweep + 주파수 스위프 + + + + Enable channel 4 + 채널 4 활성화 + + + + Enable envelope 4 + 엔벨로프 4 활성화 + + + + Enable envelope 4 loop + 엔벨로프 4 루프 활성화 + + + + Quantize noise frequency when using note frequency + 노트 주파수를 사용할 때 잡음 주파수 퀸타이즈 + + + + Use note frequency for noise + 잡음에 노트 주파수 사용하기 + + + + Noise mode + 잡음 모드 + + + + Master volume + 마스터 볼륨 + + + + Vibrato + 비브라토 + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + 어택 + + + + + Decay + 디케이 + + + + + Release + 릴리즈 + + + + + Frequency multiplier + 주파수 증폭기 + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + 디스토션: + + + + Volume: + 볼륨: + + + + Randomise + 무작위화 + + + + + Osc %1 waveform: + Osc %1 파형: + + + + Osc %1 volume: + Osc %1 볼륨: + + + + Osc %1 panning: + Osc %1 패닝: + + + + Osc %1 stereo detuning + Osc %1 스테레오 디튜닝 + + + + cents + 센트 + + + + Osc %1 harmonic: + Osc %1 하모닉: + + + + lmms::gui::Oscilloscope + + + Oscilloscope + 오실로스코프 + + + + Click to enable + 클릭하여 활성화 + + + + lmms::gui::PatmanView + + + Open patch + 패치 열기 + + + + Loop + 루프 + + + + Loop mode + 루프 모드 + + + + Tune + + + + + Tune mode + 튠 모드 + + + + No file selected + 선택된 파일 없음 + + + + Open patch file + 패치 파일 열기 + + + + Patch-Files (*.pat) + 패치 파일 (*.pat) + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + 패턴 편집기에서 열기 + + + + Reset name + 이름 재설정 + + + + Change name + 이름 변경하기 + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + 패턴 편집기 + + + + Play/pause current pattern (Space) + 현재 패턴 연주하기/일시중지 (Space) + + + + Stop playback of current pattern (Space) + 현재 패턴의 플레이백 중지하기 (Space) + + + + Pattern selector + 패턴 선택기 + + + + Track and step actions + 트랙 및 스탭 작업 + + + + New pattern + 새 패턴 + + + + Clone pattern + 패턴 복제하기 + + + + Add sample-track + 샘플-트랙 추가하기 + + + + Add automation-track + 오토메이션-트랙 추가하기 + + + + Remove steps + 스탭 제거하기 + + + + Add steps + 스탭 추가하기 + + + + Clone Steps + 스탭 복제하기 + + + + lmms::gui::PeakControllerDialog + + + PEAK + 피크 + + + + LFO Controller + LFO 컨트롤러 + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + BASE + + + + Base: + 기준: + + + + AMNT + AMNT + + + + Modulation amount: + 모듈레이션 양: + + + + MULT + MULT + + + + Amount multiplicator: + 양 배율기: + + + + ATCK + ATCK + + + + Attack: + 어택: + + + + DCAY + DCAY + + + + Release: + 릴리즈: + + + + TRSH + TRSH + + + + Treshold: + 트레스홀드: + + + + Mute output + 출력 음소거 + + + + Absolute value + 절댓값 + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + 노트 벨로시티 + + + + Note Panning + 노트 패닝 + + + + Mark/unmark current semitone + 현재 반음 마킹하기/마킹해제 + + + + Mark/unmark all corresponding octave semitones + 해당하는 모든 옥타브 반음 마킹하기/마킹해제 + + + + Mark current scale + 현재 스케일 마킹하기 + + + + Mark current chord + 현재 코드 마킹하기 + + + + Unmark all + 모두 마킹해제 + + + + Select all notes on this key + 이 키의 노트 모두 선택하기 + + + + Note lock + 노트 잠금 + + + + Last note + 마지막 노트 + + + + No key + 키 없음 + + + + No scale + 스케일 없음 + + + + No chord + 코드 없음 + + + + Nudge + 넛지 + + + + Snap + 스냅 + + + + Velocity: %1% + 벨로시티: %1% + + + + Panning: %1% left + 패닝: %1% 좌측 + + + + Panning: %1% right + 패닝: %1% 우측 + + + + Panning: center + 패닝: 중앙 + + + + Glue notes failed + 노트 붙이기 실패 + + + + Please select notes to glue first. + 먼저 붙여넣을 노트를 선택하세요. + + + + Please open a clip by double-clicking on it! + 클립을 두 번 클릭하여 열어주세요! + + + + + Please enter a new value between %1 and %2: + %1부터 %2까지의 값을 입력하세요: + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + 현재 클립 연주하기/일시중지 (Space) + + + + Record notes from MIDI-device/channel-piano + MIDI 디바이스/채널 피아노에서 노트 녹음하기 + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + 노래 또는 패턴 트랙을 연주하는 동안 MIDI 디바이스/채널 피아노에서 노트 녹음하기 + + + + Record notes from MIDI-device/channel-piano, one step at the time + MIDI 디바이스/채널 피아노에서 한 번에 한 스탭씩 노트 녹음하기 + + + + Stop playing of current clip (Space) + 현재 클립 연주 중지하기 (Space) + + + + Edit actions + 편집 작업 + + + + Draw mode (Shift+D) + 그리기 모드 (Shift+D) + + + + Erase mode (Shift+E) + 지우기 모드 (Shift+E) + + + + Select mode (Shift+S) + 선택하기 모드 (Shift+S) + + + + Pitch Bend mode (Shift+T) + 피치 밴드 모드 (Shift+T) + + + + Quantize + 퀀타이즈 + + + + Quantize positions + 퀀타이즈 포지션 + + + + Quantize lengths + 퀀타이즈 길이 + + + + File actions + 파일 작업 + + + + Import clip + 클립 가져오기 + + + + + Export clip + 클립 내보내기 + + + + Copy paste controls + 복사 붙여넣기 컨트롤 + + + + Cut (%1+X) + 잘라내기 (%1+X) + + + + Copy (%1+C) + 복사하기 (%1+C) + + + + Paste (%1+V) + 붙여넣기 (%1+V) + + + + Timeline controls + 타임라인 컨트롤 + + + + Glue + 붙이기 + + + + Knife + 자르기 + + + + Fill + 채우기 + + + + Cut overlaps + 오버랩 잘라내기 + + + + Min length as last + 마지막 최소 길이 + + + + Max length as last + 마지막 최대 길이 + + + + Zoom and note controls + 확대/축소 및 노트 컨트롤 + + + + Horizontal zooming + 수평 주밍 + + + + Vertical zooming + 수직 주밍 + + + + Quantization + 퀀티제이션 + + + + Note length + 노트 길이 + + + + Key + + + + + Scale + 스케일 + + + + Chord + 코드 + + + + Snap mode + 스냅 모드 + + + + Clear ghost notes + 고스트 노트 지우기 + + + + + Piano-Roll - %1 + 피아노-롤 - %1 + + + + + Piano-Roll - no clip + 피아노-롤 - 클립 없음 + + + + + XML clip file (*.xpt *.xptz) + XML 클립 파일 (*.xpt *.xptz) + + + + Export clip success + 클립 내보내기 성공 + + + + Clip saved to %1 + %1에 저장된 클립 + + + + Import clip. + 클립을 가져옵니다. + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + 클립을 가져오려는 중이며, 사용자의 현재 클립을 덮어씁니다. 계속하시겠습니까? + + + + Open clip + 클립 열기 + + + + Import clip success + 클립 가져오기 성공 + + + + Imported clip %1! + %1 클립을 가져왔습니다! + + + + lmms::gui::PianoView + + + Base note + 기본 노트 + + + + First note + 처음 노트 + + + + Last note + 마지막 노트 + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + 악기 플러그인 + + + + Instrument browser + 악기 탐색기 + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + 새 악기 트랙으로 전송하기 + + + + lmms::gui::ProjectNotes + + + Project Notes + 프로젝트 노트 + + + + Enter project notes here + 여기에 프로젝트 노트를 입력하세요 + + + + Edit Actions + 편집 작업 + + + + &Undo + 실행 취소(&U) + + + + %1+Z + %1+Z + + + + &Redo + 다시 실행(&R) + + + + %1+Y + %1+Y + + + + &Copy + 복사(&C) + + + + %1+C + %1+C + + + + Cu&t + 잘라내기(&T) + + + + %1+X + %1+X + + + + &Paste + 붙여넣기(&P) + + + + %1+V + %1+V + + + + Format Actions + 포멧 작업 + + + + &Bold + 볼드체(&B) + + + + %1+B + %1+B + + + + &Italic + 기울임꼴(&I) + + + + %1+I + %1+I + + + + &Underline + 밑줄(&U) + + + + %1+U + %1+U + + + + &Left + 왼쪽 정렬(&L) + + + + %1+L + %1+L + + + + C&enter + 가운데 정렬(&E) + + + + %1+E + %1+E + + + + &Right + 오른쪽 정렬(&R) + + + + %1+R + %1+R + + + + &Justify + 양쪽 정렬(&J) + + + + %1+J + %1+J + + + + &Color... + 색상(&C)... + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + 최근에 열린 프로젝트(&R) + + + + lmms::gui::RenameDialog + + + Rename... + 이름변경... + + + + lmms::gui::ReverbSCControlDialog + + + Input + 입력 + + + + Input gain: + 입력 게인: + + + + Size + 크기 + + + + Size: + 크기: + + + + Color + 색상 + + + + Color: + 색상: + + + + Output + 출력 + + + + Output gain: + 출력 게인: + + + + lmms::gui::SaControlsDialog + + + Pause + 일시정지 + + + + Pause data acquisition + 데이터 수집 일시정지 + + + + Reference freeze + 레퍼런스 프리즈 + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + 현재 입력을 레퍼런스로 프리즈 / 피크 홀드 모드에서 폴오프를 비활성화합니다. + + + + Waterfall + 워터폴 + + + + Display real-time spectrogram + 실시간 스펙트로그램 화면표시 + + + + Averaging + 애버리징 + + + + Enable exponential moving average + 지수 이동 평균 활성화 + + + + Stereo + 스테레오 + + + + Display stereo channels separately + 스테레오 채널 따로따로 화면표시 + + + + Peak hold + 피크 홀드 + + + + Display envelope of peak values + 피크 값의 엔벨로프 화면표시 + + + + Logarithmic frequency + 로가리듬 주파수 + + + + Switch between logarithmic and linear frequency scale + 로가리듬 및 리니어 주파수 스케일 간 전환하기 + + + + + Frequency range + 주파수 범위 + + + + Logarithmic amplitude + 로가리듬 진폭 + + + + Switch between logarithmic and linear amplitude scale + 로가리듬 및 리니어 진폭 스케일 간 전환하기 + + + + + Amplitude range + 진폭 범위 + + + + + FFT block size + FFT 블록 크기 + + + + + FFT window type + FFT 창 유형 + + + + Envelope res. + 엔벨로프 res. + + + + Increase envelope resolution for better details, decrease for better GUI performance. + 더 나은 세부 정보를 위해 엔벨로프 레졸루션을 높이고 더 나은 GUI 퍼포먼스를 위해 감소시킵니다. + + + + Maximum number of envelope points drawn per pixel: + 픽셀당 그려지는 엔벨로프 포인트의 최대 개수: + + + + Spectrum res. + 스펙트럼 res. + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + 더 나은 세부 사항을 위해 스펙트럼 레졸루션을 높이고 더 나은 GUI 퍼포먼스를 위해 감소시킵니다. + + + + Maximum number of spectrum points drawn per pixel: + 픽셀당 그려지는 스펙트럼 포인트의 최대 개수: + + + + Falloff factor + 폴오프 인수 + + + + Decrease to make peaks fall faster. + 피크가 더 빨리 떨어지도록 하려면 감소시킵니다. + + + + Multiply buffered value by + 버퍼링된 값을 곱한 값 + + + + Averaging weight + 애버리징 위젯 + + + + Decrease to make averaging slower and smoother. + 애버리징을 더 느리고 부드럽게 하려면 값을 줄입니다. + + + + New sample contributes + 새 샘플 기여하기 + + + + Waterfall height + 워터폴 높이 + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + 스크롤 속도를 낮추려면 늘리고, 빠른 트랜지션을 더 잘 보려면 감소시킵니다. 경고: CPU 사용량이 중간입니다. + + + + Number of lines to keep: + 유지할 줄 수: + + + + Waterfall gamma + 워터폴 감마 + + + + Decrease to see very weak signals, increase to get better contrast. + 매우 약한 신호를 보려면 줄이고, 더 나은 대비를 얻으려면 늘리세요. + + + + Gamma value: + 감마 값: + + + + Window overlap + 창 오버랩 + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + FFT 창 모서리 근처에 도착하는 누락된 빠른 트랜지션을 방지하려면 늘립니다. 경고: CPU 사용량이 높습니다. + + + + Number of times each sample is processed: + 각 샘플이 처리된 횟수: + + + + Zero padding + 제로 패딩 + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + 스펙트럼을 더 부드럽게 보이게 하려면 증가시킵니다. 경고: CPU 사용량이 높습니다. + + + + Processing buffer is + 프로세싱 버퍼는 + + + + steps larger than input block + 입력 블록보다 더 큰 스탭 + + + + Advanced settings + 고급 설정 + + + + Access advanced settings + 고급 설정 접근 + + + + lmms::gui::SampleClipView + + + Double-click to open sample + 두 번 클릭하여 샘플 열기 + + + + Reverse sample + 리버스 샘플 + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + 트랙 볼륨 + + + + Channel volume: + 채널 볼륨: + + + + VOL + 볼륨 + + + + Panning + 패닝 + + + + Panning: + 패닝: + + + + PAN + 패닝 + + + + %1: %2 + %1: %2 + + + + lmms::gui::SampleTrackWindow + + + Sample volume + 샘플 볼륨 + + + + Volume: + 볼륨: + + + + VOL + 볼륨 + + + + Panning + 패닝 + + + + Panning: + 패닝: + + + + PAN + 패닝 + + + + Mixer channel + 믹서 채널 + + + + CHANNEL + 채널 + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + MIDI 연결 끊기 + + + + Save As Project Bundle (with resources) + 프로젝트 번들로 저장하기 (리소스 포함) + + + + lmms::gui::SetupDialog + + + Settings + 설정 + + + + + General + 일반 + + + + Graphical user interface (GUI) + 그래픽 사용자 인터페이스 (GUI) + + + + Display volume as dBFS + 볼륨을 dBFS 단위로 화면표시 + + + + Enable tooltips + 툴팁 활성화 + + + + Enable master oscilloscope by default + 기본적으로 마스터 오실로스코프 활성화 + + + + Enable all note labels in piano roll + 피아노 롤의 모든 노트 레이블 활성화 + + + + Enable compact track buttons + 콤팩트 트랙 버튼 활성화 + + + + Enable one instrument-track-window mode + 하나의 악기 트랙 창 모드 활성화 + + + + Show sidebar on the right-hand side + 우측면에 사이드바 표시하기 + + + + Let sample previews continue when mouse is released + 마우스를 놓으면 샘플 미리보기를 계속할 수 있습니다 + + + + Mute automation tracks during solo + 솔로 연주 중 오토메이션 트랙 음소거 + + + + Show warning when deleting tracks + 트랙 삭제 시 경고 표시하기 + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + 프로젝트 + + + + Compress project files by default + 기본적으로 프로젝트 파일 압축 + + + + Create a backup file when saving a project + 프로젝트를 저장할 때 백업 파일 만들기 + + + + Reopen last project on startup + 시작 시 마지막 프로젝트 다시 열기 + + + + Language + 언어 + + + + + Performance + 퍼포먼스 + + + + Autosave + 자동저장 + + + + Enable autosave + 자동저장 활성화 + + + + Allow autosave while playing + 연주 중 자동저장 허용하기 + + + + User interface (UI) effects vs. performance + 사용자 인터페이스(UI) 이펙트 대 퍼포먼스 + + + + Smooth scroll in song editor + 노래 편집기에서 부드러운 스크롤 + + + + Display playback cursor in AudioFileProcessor + AudioFileProcessor에 플레이백 커서 화면표시 + + + + Plugins + 플러그인 + + + + VST plugins embedding: + VST 플러그인 포함됨: + + + + No embedding + 임베딩 없음 + + + + Embed using Qt API + Qt API를 사용하여 포함하기 + + + + Embed using native Win32 API + 기본 내장 Win32 API를 사용하여 포함하기 + + + + Embed using XEmbed protocol + XEMbed 프로토콜을 사용하여 포함하기 + + + + Keep plugin windows on top when not embedded + 포함되지 않은 경우 플러그인 창을 맨 위에 유지하기 + + + + Keep effects running even without input + 입력 없이도 이펙트 실행 유지하기 + + + + + Audio + 오디오 + + + + Audio interface + 오디오 인터페이스 + + + + Buffer size + 버퍼 크기 + + + + Reset to default value + 기본 값으로 재설정 + + + + + MIDI + MIDI + + + + MIDI interface + MIDI 인터페이스 + + + + Automatically assign MIDI controller to selected track + 선택한 트랙에 MIDI 컨트롤러 자동적으로 할당 + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + 경로 + + + + LMMS working directory + LMMS 작업 디렉터리 + + + + VST plugins directory + VST 플러그인 디렉터리 + + + + LADSPA plugins directories + LADSPA 플러그인 디렉터리 + + + + SF2 directory + SF2 디렉터리 + + + + Default SF2 + 기본 SF2 + + + + GIG directory + GIG 디렉터리 + + + + Theme directory + 테마 디렉터리 + + + + Background artwork + 배경 아트워크 + + + + Some changes require restarting. + 일부 변경사항은 다시 시작해야 합니다. + + + + OK + 확인 + + + + Cancel + 취소 + + + + minutes + + + + + minute + + + + + Disabled + 비활성화됨 + + + + Autosave interval: %1 + 자동저장 간격: %1 + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + 프레임: %1 +레이턴시: %2 ms + + + + Choose the LMMS working directory + LMMS 작업 디렉터리 고르기 + + + + Choose your VST plugins directory + 사용자의 VST 플러그인 디렉터리 고르기 + + + + Choose your LADSPA plugins directory + 사용자의 LADSPA 플러그인 디렉터리 고르기 + + + + Choose your SF2 directory + 사용자의 SF2 디렉터리 고르기 + + + + Choose your default SF2 + 사용자의 기본 SF2 고르기 + + + + Choose your GIG directory + 사용자의 GIG 디렉터리 고르기 + + + + Choose your theme directory + 사용자의 테마 디렉터리 고르기 + + + + Choose your background picture + 사용자의 배경 사진 고르기 + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + 사운드폰트 파일 열기 + + + + Choose patch + 패치 고르기 + + + + Gain: + 게인: + + + + Apply reverb (if supported) + 리버브 적용 (지원될 경우) + + + + Room size: + 공간 크기: + + + + Damping: + 진폭 감소: + + + + Width: + 폭: + + + + + Level: + 레벨: + + + + Apply chorus (if supported) + 코러스 적용 (지원될 경우) + + + + Voices: + 보이스: + + + + Speed: + 속도: + + + + Depth: + 깊이: + + + + SoundFont Files (*.sf2 *.sf3) + 사운드폰트 파일 (*.sf2 *.sf3) + + + + lmms::gui::SidInstrumentView + + + Volume: + 볼륨: + + + + Resonance: + 공명: + + + + + Cutoff frequency: + 컷오프 주파수: + + + + High-pass filter + 하이패스 필터 + + + + Band-pass filter + 밴드패스 필터 + + + + Low-pass filter + 로패스 필터 + + + + Voice 3 off + 보이스 3 끔 + + + + MOS6581 SID + MOS6581 SID + + + + MOS8580 SID + MOS8580 SID + + + + + Attack: + 어택: + + + + + Decay: + 디케이: + + + + Sustain: + 서스테인: + + + + + Release: + 릴리즈: + + + + Pulse Width: + 펄스 폭: + + + + Coarse: + 코어스: + + + + Pulse wave + 펄스파 + + + + Triangle wave + 삼각파 + + + + Saw wave + 톱니파 + + + + Noise + 잡음 + + + + Sync + 싱크 + + + + Ring modulation + 종소리 모듈레이션 + + + + Filtered + 필터링됨 + + + + Test + 테스트 + + + Pulse width: 펄스 폭: - stereoEnhancerControlDialog + lmms::gui::SideBarWidget - Width: - 너비: + + Close + 닫기 + + + + lmms::gui::SlicerTView + + + Slice snap + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + 파일을 열 수 없음 + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + %1 파일을 열 수 없습니다. 이 파일을 읽을 수 있는 권한이 없는 것 같습니다. +최소한 파일에 대한 읽기 권한이 있는지 확인하고 다시 시도하십시오. + + + + Operation denied + 오퍼레이션 거부됨 + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + 선택한 경로에 해당 이름의 번들 폴더가 이미 존재합니다. 프로젝트 번들을 덮어쓸 수 없습니다. 다른 이름을 선택하세요. + + + + + + Error + 오류 + + + + Couldn't create bundle folder. + 번들 폴더를 만들 수 없습니다. + + + + Couldn't create resources folder. + 리소스 폴더를 만들 수 없습니다. + + + + Failed to copy resources. + 리소스를 복사하지 못했습니다. + + + + + Could not write file + 파일을 쓸 수 없음 + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + 파일에서 오류 발생 + + + + The file %1 seems to contain errors and therefore can't be loaded. + %1 파일에 오류가 있는 것 같으므로 불러올 수 없습니다. + + + + template + 템플릿 + + + + project + 프로젝트 + + + + Version difference + 버전 차이 + + + + This %1 was created with LMMS %2 + 이 %1은(는) LMMS %2(으)로 만들어졌습니다 + + + + Zoom + 확대/축소 + + + + Tempo + 템포 + + + + TEMPO + 템포 + + + + Tempo in BPM + 템포 (BPM 단위) + + + + + + Master volume + 마스터 볼륨 + + + + + + Global transposition + 전역 트랜스포지션 + + + + 1/%1 Bar + 1/%1 마디 + + + + %1 Bars + %1 마디 + + + + Value: %1% + 값: %1% + + + + Value: %1 keys + 값: %1% 키 + + + + lmms::gui::SongEditorWindow + + + Song-Editor + 노래 편집기 + + + + Play song (Space) + 노래 연주하기 (Space) + + + + Record samples from Audio-device + 오디오 디바이스에서 샘플 녹음하기 + + + + Record samples from Audio-device while playing song or pattern track + 노래 또는 패턴 트랙을 연주하는 동안 오디오 디바이스에서 샘플 녹음하기 + + + + Stop song (Space) + 노래 중지하기 (Space) + + + + Track actions + 트랙 작업 + + + + Add pattern-track + 패턴-트랙 추가하기 + + + + Add sample-track + 샘플-트랙 추가하기 + + + + Add automation-track + 오토메이션-트랙 추가하기 + + + + Edit actions + 편집 작업 + + + + Draw mode + 그리기 모드 + + + + Knife mode (split sample clips) + 자르기 모드 (샘플 클립 분할) + + + + Edit mode (select and move) + 편집 모드 (선택 및 이동) + + + + Timeline controls + 타임라인 컨트롤 + + + + Bar insert controls + 마디 삽입 컨트롤 + + + + Insert bar + 마디 삽입 + + + + Remove bar + 마디 제거하기 + + + + Zoom controls + 확대/축소 컨트롤 + + + + + Zoom + 확대/축소 + + + + Snap controls + 스냅 컨트롤 + + + + + Clip snapping size + 클립 스내핑 크기 + + + + Toggle proportional snap on/off + 비례 스냅 켬/끔 전환하기 + + + + Base snapping size + 베이스 스내핑 크기 + + + + lmms::gui::StepRecorderWidget + + + Hint + 힌트 + + + + Move recording curser using <Left/Right> arrows + <좌/우> 방향키를 사용하여 녹음 커서 이동하기 + + + + lmms::gui::StereoEnhancerControlDialog + + WIDTH - 너비 + + + + + Width: + 폭: - stereoEnhancerControls - - Width - 너비 - - - - stereoMatrixControlDialog + lmms::gui::StereoMatrixControlDialog + Left to Left Vol: - 왼쪽에서 왼쪽 음량: + 좌측 → 좌측 볼륨: + Left to Right Vol: - 왼쪽에서 오른쪽 음량: + 좌측 → 우측 볼륨: + Right to Left Vol: - 오른쪽에서 왼쪽 음량: + 우측 → 좌측 볼륨: + Right to Right Vol: - 오른쪽에서 오른쪽 음량: + 우측 → 우측 볼륨: - stereoMatrixControls + lmms::gui::SubWindow - Left to Left - 왼쪽에서 왼쪽 + + Close + 닫기 - Left to Right - 왼쪽에서 오른쪽 + + Maximize + 최대화 - Right to Left - 오른쪽에서 왼쪽 - - - Right to Right - 오른쪽에서 오른쪽 + + Restore + 복원 - testcontext + lmms::gui::TapTempoView - test string - + + 0 + 0 - - test plural %n - - - + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + 0.0 ms + + + + Mute metronome + 메트로놈 음소거 + + + + Mute + 음소거 + + + + BPM in milliseconds + + + + + 0 ms + 0 ms + + + + Frequency of BPM + + + + + 0.0000 hz + 0.0000 hz + + + + Reset + 재설정 + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + %1 ms + + + + %1 hz + %1 hz - vestigeInstrument + lmms::gui::TemplatesMenu - Loading plugin - 플러그인 읽는 중 - - - Please wait while loading the VST plugin... - VST 플러그인을 읽을 동안 잠시 기다려 주세요... + + New from template + 템플릿에서 새 프로젝트 생성 - vibed + lmms::gui::TempoSyncBarModelEditor - String %1 volume - %1번 현 음량 + + + Tempo Sync + - String %1 stiffness - + + No Sync + - Pick %1 position - + + Eight beats + - Pickup %1 position - 픽업 %1 위치 + + Whole note + - Impulse %1 - + + Half note + - String %1 panning - String %1 패닝 + + Quarter note + - String %1 detune - + + 8th note + - String %1 fuzziness - + + 16th note + - String %1 length - %1번 현 길이 + + 32nd note + - String %1 - %1번 현 + + 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 + - vibedView + lmms::gui::TempoSyncKnob - String stiffness: - + + + Tempo Sync + 템포 싱크 - Pick position: - + + No Sync + 싱크 없음 - Pickup position: - 픽업 위치: + + Eight beats + 8비트 - Octave - 옥타브 + + Whole note + 온음표 - Impulse Editor - Impulse 편집기 + + Half note + 2분음표 - Enable waveform - 파형 활성화 + + Quarter note + 4분음표 - String - + + 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분음표에 싱크됨 + + + + lmms::gui::TimeDisplayWidget + + + Time units + 시간 구성 단위 + + + + MIN + + + + + SEC + + + + + MSEC + 밀리초 + + + + BAR + 마디 + + + + BEAT + 비트 + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + 자동 스크롤링 + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + 루프 포인트 + + + + After stopping go back to beginning + 중지한 후 처음으로 돌아가기 + + + + After stopping go back to position at which playing was started + 중지한 후 연주가 시작된 위치로 돌아가기 + + + + After stopping keep position + 중지한 후 위치 유지하기 + + + + Hint + 힌트 + + + + Press <%1> to disable magnetic loop points. + 마그네틱 루프 포인트를 비활성화하려면 <%1> 키를 누릅니다. + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + 붙여넣기 + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + 이동 그립을 클릭한 상태에서 <%1> 키를 누르면 새 드래그 앤 드롭 동작이 시작됩니다. + + + + Actions + 작업 + + + + + Mute + 음소거 + + + + + Solo + 솔로 연주 + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + 트랙을 삭제하면 되돌릴 수 없습니다. 정말 "%1" 트랙을 삭제하시겠습니까? + + + + Confirm removal + 제거 확인 + + + + Don't ask again + 다시 묻지 않음 + + + + Clone this track + 이 트랙 복제하기 + + + + Remove this track + 이 트랙 제거하기 + + + + Clear this track + 이 트랙 지우기 + + + + Channel %1: %2 + 채널 %1: %2 + + + + Assign to new Mixer Channel + 새 믹서 채널에 할당하기 + + + + Turn all recording on + 모든 녹음 켜기 + + + + Turn all recording off + 모든 녹음 끄기 + + + + Track color + 트랙 색상 + + + + Change + 변경하기 + + + + Reset + 재설정 + + + + Pick random + 무작위 고르기 + + + + Reset clip colors + 클립 색상 재설정 + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + 오실레이터 2로 오실레이터 1의 페이즈 조절하기 + + + + Modulate amplitude of oscillator 1 by oscillator 2 + 오실레이터 2로 오실레이터 1의 진폭 조절하기 + + + + Mix output of oscillators 1 & 2 + 오실레이터 1 & 2의 출력 믹스 + + + + Synchronize oscillator 1 with oscillator 2 + 오실레이터 1을 오실레이터 2와 싱크로나이즈 + + + + Modulate frequency of oscillator 1 by oscillator 2 + 오실레이터 2로 오실레이터 1의 주파수 조절하기 + + + + Modulate phase of oscillator 2 by oscillator 3 + 오실레이터 3로 오실레이터 2의 페이즈 조절하기 + + + + Modulate amplitude of oscillator 2 by oscillator 3 + 오실레이터 3으로 오실레이터 2의 진폭 조절하기 + + + + Mix output of oscillators 2 & 3 + 오실레이터 2 & 3의 출력 믹스 + + + + Synchronize oscillator 2 with oscillator 3 + 오실레이터 2를 오실레이터 3과 싱크로나이즈 + + + + Modulate frequency of oscillator 2 by oscillator 3 + 오실레이터 3으로 오실레이터 2의 주파수 조절하기 + + + + Osc %1 volume: + Osc %1 볼륨: + + + + Osc %1 panning: + Osc %1 패닝: + + + + Osc %1 coarse detuning: + Osc %1 코어스 디튜닝: + + + + semitones + 반음 + + + + Osc %1 fine detuning left: + Osc %1 파인 디튜닝 왼쪽: + + + + + cents + 센트 + + + + Osc %1 fine detuning right: + Osc %1 파인 디튜닝 우측: + + + + Osc %1 phase-offset: + Osc %1 페이즈-오프셋: + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + Osc %1 스테레오 페이즈-디튜닝: + + + Sine wave 사인파 + Triangle wave 삼각파 + Saw wave 톱니파 + Square wave 사각파 - String volume: - + + Moog-like saw wave + 모그와 비슷한 톱니파 - String panning: - - - - String detune: - - - - String fuzziness: - - - - String length: - - - - Impulse - - - - Enable/disable string - + + Exponential wave + 지수파 + White noise - 화이트 노이즈 + 백색 잡음 + User-defined wave - 사용자 지정 파형 + 사용자 정의된 파형 + + Use alias-free wavetable oscillators. + 앨리어스가 없는 웨이브테이블 오실레이터를 사용합니다. + + + + lmms::gui::VecControlsDialog + + + HQ + HQ + + + + Double the resolution and simulate continuous analog-like trace. + 레졸루션을 두 배로 늘리고 연속적인 아날로그 같은 트레이스를 시뮬레이션합니다. + + + + Log. scale + Log. 스케일 + + + + Display amplitude on logarithmic scale to better see small values. + 작은 값을 더 잘 볼 수 있도록 로가리듬 스케일로 진폭을 화면표시합니다. + + + + Persist. + 지속합니다. + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + 트레이스 지속됨: 양이 많을수록 트레이스가 더 오랫동안 밝게 유지됩니다. + + + + Trace persistence + 트레이스 지속됨 + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + 버전 번호 증가 + + + + Decrement version number + 버전 번호 감소 + + + + Save Options + 저장 옵션 + + + + already exists. Do you want to replace it? + 이(가) 이미 존재합니다. 덮어쓰시겠습니까? + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + 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) + + + + SO-files (*.so) + SO 파일 (*.so) + + + + No VST plugin loaded + 불러온 VST 플러그인 없음 + + + + Preset + 프리셋 + + + + by + 만든이 + + + + - VST plugin control + - VST 플러그인 컨트롤 + + + + lmms::gui::VibedView + + + Enable waveform + 파형 활성화 + + + + Smooth waveform - 파형을 부드럽게 + 부드러운 파형 + + Normalize waveform - + 노멀라이즈 파형 + + + + + Sine wave + 사인파 + + + + + Triangle wave + 삼각파 + + + + + Saw wave + 톱니파 + + + + + Square wave + 사각파 + + + + + White noise + 백색 잡음 + + + + + User-defined wave + 사용자 정의된 파형 + + + + String volume: + 스트링 볼륨: + + + + String stiffness: + 스트링 스티프니스: + + + + Pick position: + 픽 포지션: + + + + Pickup position: + 픽업 포지션: + + + + String panning: + 스트링 패닝: + + + + String detune: + 스트링 디튠: + + + + String fuzziness: + 스트링 퍼지니스: + + + + String length: + 스트링 길이: + + + + Impulse Editor + 임펄스 편집기 + + + + Impulse + 임펄스 + + + + Enable/disable string + 스트링 활성화/비활성화 + + + + Octave + 옥타브 + + + + String + 스트링 - voiceObject + lmms::gui::VstEffectControlDialog - Voice %1 pulse width - 소리 %1 펄스 폭 + + Show/hide + 표시하기/숨기기 - Voice %1 attack - + + Control VST plugin from LMMS host + LMMS 호스트에서 VST 플러그인 제어 - Voice %1 decay - + + Open VST plugin preset + VST 플러그인 프리셋 열기 - Voice %1 sustain - + + Previous (-) + 이전 (-) - Voice %1 release - + + Next (+) + 다음 (+) - Voice %1 coarse detuning - + + Save preset + 프리셋 저장하기 - Voice %1 wave shape - 소리 %1파 + + + Effect by: + 이펙트: - Voice %1 sync - 소리 %1 동기화 - - - Voice %1 ring modulate - 소리 %1 링 모듈레이션 - - - Voice %1 filtered - 소리 %1 필터됨 - - - Voice %1 test - 소리 %1 테스트 + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - waveShaperControlDialog + lmms::gui::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 + Osc A1 선택하기 + + + + Select oscillator A2 + Osc A2 선택하기 + + + + Select oscillator B1 + Osc B1 선택하기 + + + + Select oscillator B2 + Osc B2 선택하기 + + + + Mix output of A2 to A1 + A2에서 A1로 출력 믹스 + + + + Modulate amplitude of A1 by output of A2 + A2의 출력으로 A1의 진폭 조절하기 + + + + Ring modulate A1 and A2 + 종소리 변조 A1 및 A2 + + + + Modulate phase of A1 by output of A2 + A2의 출력으로 A1의 페이즈 조절하기 + + + + Mix output of B2 to B1 + B2에서 B1로 출력 믹스 + + + + Modulate amplitude of B1 by output of B2 + B2의 출력으로 B1의 진폭 조절하기 + + + + Ring modulate B1 and B2 + 종소리 변조 B1 및 B2 + + + + Modulate phase of B1 by output of B2 + B2의 출력으로 B1의 페이즈 조절하기 + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + 이 그래프 위에 마우스를 드래그하여 나만의 파형을 그려보세요. + + + + Load waveform + 파형 불러오기 + + + + Load a waveform from a sample file + 샘플 파일에서 파형 불러오기 + + + + Phase left + 페이즈 좌측 + + + + Shift phase by -15 degrees + 페이즈를 -15도 만큼 옮기기 + + + + Phase right + 페이즈 우측 + + + + Shift phase by +15 degrees + 페이즈를 +15도 만큼 옮기기 + + + + + Normalize + 노멀라이즈 + + + + + Invert + 반전 + + + + + Smooth + 스무드 + + + + + Sine wave + 사인파 + + + + + + Triangle wave + 삼각파 + + + + Saw wave + 톱니파 + + + + + Square wave + 사각파 + + + + lmms::gui::WaveShaperControlDialog + + INPUT 입력 + Input gain: - 입력 이득: + 입력 게인: + OUTPUT 출력 + Output gain: - 출력 이득: - - - Clip input - 입력 신호 클리핑 + 출력 게인: + + Reset wavegraph - 그래프 초기화 + 웨이브그래프 재설정 + + Smooth wavegraph - 그래프를 부드럽게 + 부드러운 웨이브그래프 + + Increase wavegraph amplitude by 1 dB - + 웨이브그래프 진폭 1dB씩 증가하기 + + Decrease wavegraph amplitude by 1 dB - + 웨이브그래프 진폭 1dB씩 감소하기 + + Clip input + 클립 입력 + + + Clip input signal to 0 dB - + 클립 입력 신호 → 0dB - waveShaperControls + lmms::gui::XpressiveView - Input gain - 입력 이득 + + Draw your own waveform here by dragging your mouse on this graph. + 이 그래프 위에 마우스를 드래그하여 나만의 파형을 그려보세요. - Output gain - 출력 이득 + + Select oscillator W1 + 오실레이터 W1 선택하기 + + + + Select oscillator W2 + 오실레이터 W2 선택하기 + + + + Select oscillator W3 + 오실레이터 W3 선택하기 + + + + Select output O1 + 출력 O1 선택하기 + + + + Select output O2 + 출력 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: + 범용 1: + + + + General purpose 2: + 범용 2: + + + + General purpose 3: + 범용 3: + + + + O1 panning: + O1 패닝: + + + + O2 panning: + O2 패닝: + + + + Release transition: + 릴리즈 트랜지션: + + + + Smoothness + 스무스니스 - + + lmms::gui::ZynAddSubFxView + + + Portamento: + 포르타멘토: + + + + PORT + PORT + + + + Filter frequency: + 필터 주파수: + + + + FREQ + FREQ + + + + Filter resonance: + 필터 공명: + + + + RES + RES + + + + Bandwidth: + 대역폭: + + + + BW + 대역폭 + + + + FM gain: + FM 게인: + + + + FM GAIN + FM 게인 + + + + Resonance center frequency: + 공명 중심 주파수: + + + + RES CF + RES CF + + + + Resonance bandwidth: + 공명 대역폭: + + + + RES BW + RES BW + + + + Forward MIDI control changes + 정방향 MIDI 컨트롤 변경 + + + + Show GUI + GUI 표시하기 + + + \ No newline at end of file diff --git a/data/locale/ms_MY.ts b/data/locale/ms_MY.ts new file mode 100644 index 000000000..dc3561ea2 --- /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 + + + + + MixerChannelView + + + Channel send amount + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + + + + MixerChannelLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + 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 + + + + + InstrumentTuningView + + + 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..adfc6d856 --- /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 + + + + + MixerChannelView + + + Channel send amount + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + + + + MixerChannelLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + 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 + + + + InstrumentTuningView + + + 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..f879c6adf 100644 --- a/data/locale/nl.ts +++ b/data/locale/nl.ts @@ -1,10323 +1,18755 @@ - + AboutDialog + About LMMS Over LMMS - Version %1 (%2/%3, Qt %4, %5) - Versie %1 (%2/%3, Qt %4, %5) + + 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 + + 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 - 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 - - + 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 + AboutJuceDialog - VOL - VOL + + About JUCE + - Volume: - Volume: + + <b>About JUCE</b> + - PAN - PAN + + This program uses JUCE version 3.x.x. + - Panning: - Panning: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + - LEFT - LINKS - - - Left gain: - Linker versterking: - - - RIGHT - RECHTS - - - Right gain: - Rechter versterking: + + This program uses JUCE version + - AmplifierControls + AudioDeviceSetupWidget - Volume - Volume - - - Panning - Panning - - - Left gain - Linker versterking - - - Right gain - Rechter versterking + + [System Default] + - AudioAlsaSetupWidget + CarlaAboutW - DEVICE - APPARAAT + + About Carla + - CHANNELS - KANALEN + + 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) + - AudioFileProcessorView + CarlaHostW - Open other sample - Andere sample openen + + MainWindow + - 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. + + Rack + - Reverse sample - Sample omdraaien + + Patchbay + - 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'. + + Logs + - Amplify: - Versterken: + + Loading... + - 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!) + + Save + - Startpoint: - Beginpunt: + + Clear + - Endpoint: - Eindpunt: + + Ctrl+L + - Continue sample playback across notes - Doorgaan met afspelen van sample tussen noten + + Auto-Scroll + - 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) + + Buffer Size: + - Disable loop - Herhalen uitschakelen + + Sample Rate: + - 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. + + ? Xruns + - Enable loop - Herhalen inschakelen + + DSP Load: %p% + - 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. + + &File + &Bestand - 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. + + &Engine + - 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. + + &Plugin + - 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. + + Macros (all plugins) + - Loopback point: - Herhaalpunt: + + &Canvas + - With this knob you can set the point where the loop starts. - Met deze knop kunt u het punt instellen waar de herhaling begint. + + Zoom + - - - AudioFileProcessorWaveView - Sample length: - Sample-lengte: + + &Settings + - - - 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 - - - CHANNELS - KANALEN - - - - AudioOss::setupWidget - - DEVICE - APPARAAT - - - CHANNELS - KANALEN - - - - AudioPortAudio::setupWidget - - BACKEND - BACKEND - - - DEVICE - APPARAAT - - - - AudioPulseAudio::setupWidget - - DEVICE - APPARAAT - - - CHANNELS - KANALEN - - - - AudioSdl::setupWidget - - DEVICE - APPARAAT - - - - AudioSndio::setupWidget - - DEVICE - APPARAAT - - - CHANNELS - KANALEN - - - - AudioSoundIo::setupWidget - - BACKEND - BACKEND - - - DEVICE - APPARAAT - - - - AutomatableModel - - &Reset (%1%2) - &Herstellen (%1%2) - - - &Copy value (%1%2) - Waarde &kopiëren (%1%2) - - - &Paste value (%1%2) - Waarde &plakken (%1%2) - - - 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 - - - - AutomationEditor - - Please open an automation pattern 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) - 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) - 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 - - - Interpolation controls - Interpolatiebediening - - - Timeline controls - Tijdlijnbediening - - - Zoom controls - Zoombediening - - - 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. - - - - AutomationPattern - - Drag a control while pressing <%1> - Sleep een bediening tijdens indrukken van <%1> - - - - AutomationPatternView - - 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. - Model is reeds verbonden met dit patroon. - - - - AutomationTrack - - Automation track - Automatisering-track - - - - BBEditor - - 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 sample-track - Sample-track toevoegen - - - - BBTCOView - - 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 - - Beat/Bassline %1 - Beat/baslijn %1 - - - Clone of %1 - Kloon van %1 - - - - BassBoosterControlDialog - - FREQ - FREQ - - - Frequency: - Frequentie: - - - GAIN - GAIN - - - Gain: - Gain: - - - RATIO - RATIO - - - Ratio: - Ratio: - - - - BassBoosterControls - - Frequency - Frequentie - - - Gain - Gain - - - Ratio - Ratio - - - - BitcrushControlDialog - - IN - IN - - - OUT - UIT - - - GAIN - GAIN - - - Input Gain: - Invoer-gain: - - - 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 - - - FREQ - FREQ - - - STEREO - STEREO - - - QUANT - QUANT - - - - CaptionMenu + &Help &Help - Help (not available) - Help (niet beschikbaar) + + Tool Bar + - - - CarlaInstrumentView - Show GUI - GUI weergeven + + Disk + - 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. + + + Home + Home - - - Controller - Controller %1 - Controller %1 + + Transport + - - - ControllerConnectionDialog - Connection Settings - Verbindingsinstellingen + + Playback Controls + - MIDI CONTROLLER - MIDI-CONTROLLER + + Time Information + - Input channel - Invoerkanaal + + Frame: + - CHANNEL - KANAAL - - - Input controller - Invoercontroller - - - CONTROLLER - CONTROLLER - - - Auto Detect - Automatisch detecteren - - - MIDI-devices to receive MIDI-events from - MIDI-apparaten om MIDI-events van te ontvangen - - - USER CONTROLLER - GEBRUIKER CONTROLLER - - - MAPPING FUNCTION - MAPPING-FUNCTIE - - - OK - Ok - - - Cancel - Annuleren - - - LMMS - LMMS - - - Cycle Detected. - Cyclus gedetecteerd. - - - - ControllerRackView - - Controller Rack - Controller-rack - - - Add - Toevoegen - - - Confirm Delete - Verwijderen bevestigen - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Verwijderen bevestigen? Er zijn bestaande verbindingen geassocieerd met deze controller. Er is geen manier om dit ongedaan te maken. - - - - ControllerView - - Controls - Besturingen - - - 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 - - - &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 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 2 gain: - - - Band 3 Gain: - Band 3 gain: - - - Band 4 Gain: - Band 4 gain: - - - Band 1 Mute - Band 1 gedempt - - - Mute Band 1 - Band 1 dempen - - - Band 2 Mute - Band 2 gedempt - - - Mute Band 2 - Band 2 dempen - - - Band 3 Mute - Band 3 gedempt - - - Mute Band 3 - Band 3 dempen - - - Band 4 Mute - Band 4 gedempt - - - Mute Band 4 - Band 4 dempen - - - - DelayControls - - Delay Samples - Samples vertragen - - - Feedback - Feedback - - - Lfo Frequency - Lfo-frequentie - - - Lfo Amount - Lfo-hoeveelheid - - - Output gain - Uitvoer-gain - - - - DelayControlsDialog - - Lfo Amt - Lfo hvh - - - Delay Time - Delay-tijd - - - Feedback Amount - Feedback-hoeveelheid - - - Lfo - Lfo - - - Out Gain - Uitvoer-gain - - - Gain - Gain - - - DELAY - DELAY - - - FDBK - FDBK - - - RATE - RATIO - - - AMNT - HVHD - - - - 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 - - - - DualFilterControls - - Filter 1 enabled - Filter 1 ingeschakeld - - - Filter 1 type - Filter 1 type - - - Cutoff 1 frequency - 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-frequentie 2 - - - Q/Resonance 2 - Q/Resonantie 2 - - - Gain 2 - Gain 2 - - - LowPass - LowPass - - - HiPass - HiPass - - - BandPass csg - BandPass csg - - - BandPass czpg - Bandpass czpg - - - Notch - Notch - - - Allpass - Allpass - - - Moog - Moog - - - 2x LowPass - 2 x LowPass - - - RC LowPass 12dB - RC LowPass 12 dB - - - RC BandPass 12dB - RC BandPass 12dB - - - RC HighPass 12dB - RC HighPass 12 dB - - - RC LowPass 24dB - RC LowPass 24 dB - - - RC BandPass 24dB - RC BandPass 24 dB - - - RC HighPass 24dB - RC HighPass 24 dB - - - Vocal Formant Filter - Stemvormingsfilter - - - 2x Moog - 2 x Moog - - - SV LowPass - SV LowPass - - - SV BandPass - SV BandPass - - - SV HighPass - SV HighPass - - - SV Notch - SV Notch - - - Fast Formant - Snel vormend - - - Tripole - Tripole - - - - Editor - - Play (Space) - Afspelen (spatie) - - - Stop (Space) - Stoppen (spatie) - - - Record - Opnemen - - - Record while playing - Opnemen tijdens afspelen - - - Transport controls - Afspeelbediening - - - - Effect - - Effect enabled - Effect ingeschakeld - - - Wet/Dry mix - Wet/dry-mix - - - Gate - Gate - - - Decay - Decay - - - - EffectChain - - Effects enabled - Effecten ingeschakeld - - - - EffectRackView - - EFFECTS CHAIN - EFFECT-CHAIN - - - Add effect - Effect toevoegen - - - - EffectSelectDialog - - Add effect - Effect toevoegen - - - Name - Naam - - - Type - Type - - - Description - Beschrijving - - - Author - Auteur - - - - EffectView - - 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 + + 000'000'000 + + 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. + + 00:00:00 + - GATE - GATE + + BBT: + - Gate: - Gate: + + 000|00|0000 + - 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. + + Settings + Instellingen - Controls - Besturingen + + BPM + - 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. + + Use JACK Transport + - Move &up - Om&hoog verplaatsen + + Use Ableton Link + - Move &down - Om&laag verplaatsen + + &New + &Nieuw - &Remove this plugin - Deze plugin ve&rwijderen + + Ctrl+N + + + + + &Open... + &Openen... + + + + + Open... + + + + + Ctrl+O + + + + + &Save + Op&slaan + + + + Ctrl+S + + + + + Save &As... + Opslaan &als... + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + &Afsluiten + + + + Ctrl+Q + + + + + &Start + + + + + F5 + + + + + St&op + + + + + F6 + + + + + &Add Plugin... + + + + + Ctrl+A + + + + + &Remove All + + + + + Enable + + + + + Disable + + + + + 0% Wet (Bypass) + + + + + 100% Wet + + + + + 0% Volume (Mute) + + + + + 100% Volume + + + + + Center Balance + + + + + &Play + + + + + Ctrl+Shift+P + + + + + &Stop + + + + + Ctrl+Shift+X + + + + + &Backwards + + + + + Ctrl+Shift+B + + + + + &Forwards + + + + + Ctrl+Shift+F + + + + + &Arrange + + + + + Ctrl+G + + + + + + &Refresh + + + + + Ctrl+R + + + + + Save &Image... + + + + + Auto-Fit + + + + + Zoom In + + + + + Ctrl++ + + + + + Zoom Out + + + + + Ctrl+- + + + + + Zoom 100% + + + + + Ctrl+1 + + + + + Show &Toolbar + + + + + &Configure Carla + + + + + &About + + + + + About &JUCE + + + + + About &Qt + + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + Ctrl+P + + + + + &Connect... + + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + + + + + &Configure driver... + + + + + Panic + + + + + Open custom driver panel... + + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + - EnvelopeAndLfoParameters + CarlaHostWindow - Predelay - Predelay + + Export as... + - Attack - Attack + + + + + Error + Fout - Hold - Hold + + Failed to load project + - Decay - Decay + + Failed to save project + - Sustain - Sustain + + Quit + - Release - Release + + Are you sure you want to quit Carla? + - Modulation - Modulatie + + Could not connect to Audio backend '%1', possible reasons: +%2 + - LFO Predelay - LFO Predelay + + Could not connect to Audio backend '%1' + - LFO Attack - LFO Attack + + Warning + - LFO speed - LFO-snelheid - - - LFO Modulation - LFO-modulatie - - - LFO Wave Shape - LFO wave shape - - - Freq x 100 - Freq x 100 - - - Modulate Env-Amount - Moduleren env-intensiteit + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + - EnvelopeAndLfoView + CarlaSettingsW - DEL - DEL + + Settings + Instellingen - Predelay: - Predelay: + + main + - 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. + + canvas + - ATT - ATT + + engine + - Attack: - Attack: + + osc + - 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. + + file-paths + - HOLD - HOLD + + plugin-paths + - Hold: - Hold: + + wine + - 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. + + experimental + - DEC - DEC + + Widget + - Decay: - Decay: + + + Main + - 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. + + + Canvas + - SUST - SUST + + + Engine + - Sustain: - Sustain: + + File Paths + - 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. + + Plugin Paths + - REL - REL + + Wine + - Release: - Release: + + + Experimental + - 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. + + <b>Main</b> + - AMT - INT + + Paths + Paden - Modulation amount: - Modulatie-intensiteit: + + Default project folder: + - 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. + + Interface + - LFO predelay: - LFO predelay: + + Use "Classic" as default rack skin + - 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. + + Interface refresh interval: + - LFO- attack: - LFO-attack: + + + ms + - 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. + + Show console output in Logs tab (needs engine restart) + - SPD - SPD + + Show a confirmation dialog before quitting + - LFO speed: - LFO-snelheid: + + + Theme + - 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 Carla "PRO" theme (needs restart) + - 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. + + Color scheme: + - Click here for a sine-wave. - Klik hier voor een sinusgolf. + + Black + - Click here for a triangle-wave. - Klik hier voor een driehoeksgolf. + + System + - Click here for a saw-wave for current. - Klik hier voor een zaagtandgolf. + + Enable experimental features + - Click here for a square-wave. - Klik hier voor een blokgolf. + + <b>Canvas</b> + - 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. + + Bezier Lines + - FREQ x 100 - FREQ x 100 + + Theme: + - 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. + + Size: + Grootte: - multiply LFO-frequency by 100 - LFO-frequentie vermenigvuldigen met 100 + + 775x600 + - MODULATE ENV-AMOUNT - ENV-INTENSITEIT MOD + + 1550x1200 + - Click here to make the envelope-amount controlled by this LFO. - Klik hier om de envelope-hoeveelheid door deze LFO te laten regelen. + + 3100x2400 + - control envelope-amount by this LFO - envelope-hoeveelheid bedienen met deze LFO + + 4650x3600 + - ms/LFO: - ms/LFO: + + 6200x4800 + - Hint - Tip + + 12400x9600 + - Drag a sample from somewhere and drop it in this window. - Sleep een sample van ergens en plaats hem in dit venster. + + Options + - Click here for random wave. - Klik hier voor een willekeurige golf. + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + + + + + Anti-Aliasing + + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + + + + + + Core + + + + + Single Client + + + + + Multiple Clients + + + + + + Continuous Rack + + + + + + Patchbay + + + + + Audio driver: + + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + + + + + Reset Xrun counter after project load + + + + + Plugin UIs + + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + + + + + <b>OSC</b> + + + + + Enable OSC + + + + + Enable TCP port + + + + + + Use specific port: + + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + + + + + Audio + Audio + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + + + + + + Remove + + + + + + Change... + + + + + <b>Plugin Paths</b> + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + SF2/3 + + + + + SFZ + + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + + + + + <b>Wine</b> + + + + + Executable + + + + + Path to 'wine' binary: + + + + + Prefix + + + + + Auto-detect Wine prefix based on plugin filename + + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + + + + + High Quality Anti-Aliasing (OpenGL only) + + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + + + + + Force mono plugins as stereo + + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path + - EqControls + Dialog - Input gain - Invoer-gain + + Carla Control - Connect + - Output gain - Uitvoer-gain + + Remote setup + - Low shelf gain - Low shelf gain + + UDP Port: + - Peak 1 gain - Piek 1 gain + + Remote host: + - Peak 2 gain - Piek 2 gain + + TCP Port: + - Peak 3 gain - Piek 3 gain + + Set value + Waarde instellen - Peak 4 gain - Piek 4 gain + + TextLabel + - High Shelf gain - High shelf gain - - - HP res - HP-res - - - Low Shelf res - Low shelf res - - - Peak 1 BW - Piek 1 BW - - - Peak 2 BW - Piek 2 BW - - - Peak 3 BW - Piek 3 BW - - - Peak 4 BW - Piek 4 BW - - - High Shelf res - High shelf res - - - LP res - LP-res - - - HP freq - HP-freq - - - Low Shelf freq - Low shelf freq - - - Peak 1 freq - Piek 1 freq - - - Peak 2 freq - Piek 2 freq - - - Peak 3 freq - Piek 3 freq - - - Peak 4 freq - Piek 4 freq - - - High shelf freq - High shelf freq - - - LP freq - LP-freq - - - HP active - HP actief - - - Low shelf active - Low shelf actief - - - Peak 1 active - Piek 1 actief - - - Peak 2 active - Piek 2 actief - - - Peak 3 active - Piek 3 actief - - - Peak 4 active - Piek 4 actief - - - High shelf active - High shelf actief - - - LP active - LP actief - - - LP 12 - LP 12 - - - LP 24 - LP 24 - - - LP 48 - LP 48 - - - HP 12 - HP 12 - - - HP 24 - HP 24 - - - HP 48 - HP 48 - - - low pass type - lowpass-type - - - high pass type - highpass-type - - - Analyse IN - IN analyseren - - - Analyse OUT - UIT analyseren + + Scale Points + - EqControlsDialog + DriverSettingsW - HP - HP + + Driver Settings + - Low Shelf - Low shelf + + Device: + - Peak 1 - Piek 1 + + Buffer size: + - Peak 2 - Piek 2 + + Sample rate: + Samplerate: - Peak 3 - Piek 3 + + Triple buffer + - Peak 4 - Piek 4 + + Show Driver Control Panel + - High Shelf - High shelf - - - LP - LP - - - In Gain - Invoer-gain - - - Gain - Gain - - - Out Gain - Uitvoer-gain - - - Bandwidth: - Bandbreedte: - - - Resonance : - Resonantie: - - - Frequency: - Frequentie: - - - lp grp - lp grp - - - hp grp - hp grp - - - Octave - Octaaf - - - - EqHandle - - Reso: - Reso: - - - BW: - BW: - - - Freq: - Freq: + + Restart the engine to load the new settings + 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 - Could not open file - Kan bestand niet openen + + Render Looped Section: + Herhaalde sectie renderen: - Export project to %1 - Project exporteren naar %1 + + time(s) + keer - Error - Fout + + File format settings + Bestandsformaat-instellingen - 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. + + File format: + Bestandsformaat: - Rendering: %1% - Renderen: %1 % + + Sampling rate: + Samplerate: - 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! + + 44100 Hz + 44100 Hz - 24 Bit Integer + + 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 - Use variable bitrate - Variabele bitrate gebruiken + + 32 Bit float + 32-bit float + Stereo mode: Stereomodus: - Stereo - Stereo - - - Joint Stereo - Joint stereo - - + Mono Mono + + Stereo + Stereo + + + + Joint stereo + Joint stereo + + + Compression level: Compressieniveau: - (fastest) - (snelste) + + Bitrate: + Bitrate: - (default) - (standaard) + + 64 KBit/s + 64 kbit/s - (smallest) - (kleinste) + + 128 KBit/s + 128 kbit/s - - - Expressive - Selected graph - Geselecteerde grafiek + + 160 KBit/s + 160 kbit/s - A1 - A1 + + 192 KBit/s + 192 kbit/s - A2 - A2 + + 256 KBit/s + 256 kbit/s - A3 - A3 + + 320 KBit/s + 320 kbit/s - W1 smoothing - W1 afvlakken + + Use variable bitrate + Variabele bitrate gebruiken - W2 smoothing - W2 afvlakken + + Quality settings + Kwaliteitsinstellingen - W3 smoothing - W3 afvlakken + + Interpolation: + Interpolatie: - PAN1 - PAN1 + + Zero order hold + Zero order hold - PAN2 - PAN2 + + Sinc worst (fastest) + Sinc slechtste (snelste) - REL TRANS - REL TRANS + + Sinc medium (recommended) + Sinc medium (aanbevolen) - - - Fader - Please enter a new value between %1 and %2: - Voer een nieuwe waarde in tussen %1 en %2: + + Sinc best (slowest) + Sinc beste (traagste) - - - FileBrowser - Browser - Verkenner + + Start + Starten - Search - Zoeken - - - Refresh list - Lijst verversen - - - - 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 - - - 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 - - - file - bestand - - - - FlangerControls - - Delay Samples - Samples vertragen - - - Lfo Frequency - Lfo-frequentie - - - Seconds - Seconden - - - Regen - Regen - - - Noise - Ruis - - - Invert - Inverteren - - - - FlangerControlsDialog - - Delay Time: - Delay-tijd: - - - Feedback Amount: - Feedback-hoeveelheid: - - - White Noise Amount: - Hoeveelheid witte ruis: - - - DELAY - DELAY - - - RATE - RATIO - - - AMNT - HVHD - - - Amount: - Hoeveelheid: - - - FDBK - FDBK - - - NOISE - NOISE - - - Invert - Inverteren - - - Period: - Periode: - - - - FxLine - - 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 - - - - FxMixer - - Master - Master - - - FX %1 - FX %1 - - - Volume - Volume - - - Mute - Dempen - - - Solo - Solo - - - - FxMixerView - - FX-Mixer - FX-mixer - - - FX Fader %1 - FX-fader %1 - - - Mute - Dempen - - - Mute this FX channel - Dit FX-kanaal dempen - - - Solo - Solo - - - Solo FX channel - Solo FX-kanaal - - - - FxRoute - - Amount to send from channel %1 to channel %2 - Te zenden hoeveelheid van kanaal %1 naar kanaal %2 - - - - GigInstrument - - Bank - Bank - - - Patch - Patch - - - Gain - Gain - - - - GigInstrumentView - - Open 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 - - - GIG Files (*.gig) - GIG-bestanden (*.gig) - - - - GuiApplication - - Working directory - Werkmap - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - De LMMS-werkmap %1 bestaat niet. Nu aanmaken? U kunt de map later wijzigen via Bewerken -> Instellingen. - - - Preparing UI - UI voorbereiden - - - Preparing song editor - Song-editor voorbereiden - - - Preparing mixer - Mixer voorbereiden - - - Preparing controller rack - Controller-rack voorbereiden - - - Preparing project notes - Projectnotities voorbereiden - - - Preparing beat/bassline editor - Beat- en baslijn-editor voorbereiden - - - Preparing piano roll - Piano-roll voorbereiden - - - Preparing automation editor - Automatisering-editor voorbereiden - - - - InstrumentFunctionArpeggio - - Arpeggio - Arpeggio - - - Arpeggio type - Arpeggio type - - - Arpeggio range - Arpeggio bereik - - - 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 - - - Random - Willekeurig - - - Free - Vrij - - - Sort - Sorteren - - - Sync - Sync - - - Down and up - Omlaag en omhoog - - - Skip rate - Skip-ratio - - - Miss rate - Miss-ratio - - - Cycle steps - Stappen doorlopen - - - - 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. - - - TIME - TIJD - - - 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. - - - 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. + + Cancel + Annuleren 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 - - 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: - - - - InstrumentMidiIOView - - ENABLE MIDI INPUT - MIDI-INVOER INSCHAKELEN - - - CHANNEL - KANAAL - - - VELOCITY - SNELHEID - - - ENABLE MIDI OUTPUT - MIDI-UITVOER INSCHAKELEN - - - PROGRAM - PROGRAM - - - 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 - - - BASE VELOCITY - BASISSNELHEID - - - - InstrumentMiscView - - MASTER PITCH - MASTER-TOONHOOGTE - - - Enables the use of Master Pitch - Schakelt het gebruik van master-toonhoogte in - - InstrumentSoundShaping + VOLUME VOLUME + Volume Volume + CUTOFF CUTOFF + Cutoff frequency Cutoff-frequentie + RESO RESO + Resonance Resonantie + + + JackAppDialog - Envelopes/LFOs - Envelopes/LFO's + + Add JACK Application + - Filter type - Filtersoort + + Note: Features not implemented yet are greyed out + - Q/Resonance - Q/Resonantie + + Application + - LowPass - Lowpass + + Name: + - HiPass - Hipass + + Application: + - BandPass csg - BandPass csg + + From template + - BandPass czpg - Bandpass czpg + + Custom + - Notch - Notch + + Template: + - Allpass - Allpass + + Command: + - Moog - Moog + + Setup + - 2x LowPass - 2 x LowPass + + Session Manager: + - RC LowPass 12dB - RC LowPass 12dB + + None + - RC BandPass 12dB - RC BandPass 12dB + + Audio inputs: + - RC HighPass 12dB - RC HighPass 12 dB + + MIDI inputs: + - RC LowPass 24dB - RC LowPass 24 dB + + Audio outputs: + - RC BandPass 24dB - RC BandPass 24 dB + + MIDI outputs: + - RC HighPass 24dB - RC HighPass 24 dB + + Take control of main application window + - Vocal Formant Filter - Stemvormingsfilter + + Workarounds + - 2x Moog - 2 x Moog + + Wait for external application start (Advanced, for Debug only) + - SV LowPass - SV LowPass + + Capture only the first X11 Window + - SV BandPass - SV BandPass + + Use previous client output buffer as input for the next client + - SV HighPass - SV HighPass + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - SV Notch - SV Notch + + Error here + - Fast Formant - Snel vormend + + NSM applications cannot use abstract or absolute paths + - Tripole - Tripole + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + - InstrumentSoundShapingView + JuceAboutW - 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: - - - Envelopes, LFOs and filters are not supported by the current instrument. - Envelopes, LFO's en filters worden niet ondersteund door het huidige instrument. + + This program uses JUCE version %1. + - InstrumentTrack + MidiPatternW - unnamed_track - naamloze_track + + MIDI Pattern + - Volume - Volume + + Time Signature: + - Panning - Panning + + + + 1/4 + - Pitch - Toonhoogte + + 2/4 + - FX channel - FX-kanaal + + 3/4 + - Default preset - Standaard preset + + 4/4 + - With this knob you can set the volume of the opened channel. - Met deze knop kunt u het volume van het geopende kanaal instellen. + + 5/4 + - Base note - Grondtoon + + 6/4 + - Pitch range - Toonhoogte-bereik + + Measures: + - Master Pitch - Master-toonhoogte + + + + 1 + - - - InstrumentTrackView - Volume - Volume + + 2 + - Volume: - Volume: + + 3 + - VOL - VOL + + 4 + - Panning - Panning + + 5 + 5 - Panning: - Panning: + + 6 + 6 - PAN - PAN + + 7 + 7 - MIDI - MIDI + + 8 + - Input - Invoer + + 9 + 9 - Output - Uitvoer + + 10 + - FX %1: %2 - FX %1: %2 + + 11 + 11 - - - InstrumentTrackWindow - GENERAL SETTINGS - ALGEMENE INSTELLINGEN + + 12 + - Instrument volume - Instrument-volume + + 13 + 13 - Volume: - Volume: + + 14 + - VOL - VOL + + 15 + - Panning - Panning + + 16 + - Panning: - Panning: + + Default Length: + - PAN - PAN + + + 1/16 + - Pitch - Toonhoogte + + + 1/15 + - Pitch: - Toonhoogte: + + + 1/12 + - cents - cents + + + 1/9 + - PITCH - TOONHOOGTE + + + 1/8 + - FX channel - FX-kanaal + + + 1/6 + - FX - FX + + + 1/3 + - Save preset - Preset opslaan + + + 1/2 + - XML preset file (*.xpf) - XML-presetbestand (*.xpf) - - - Pitch range (semitones) - Toonhoogte-bereik (semitones) - - - RANGE - BEREIK - - - 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 - - - Miscellaneous - Overige - - - Plugin - Plug-in - - - - 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: - - - 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: - - - - LadspaControl - - Link channels - Kanalen koppelen - - - - LadspaControlDialog - - Link Channels - Kanalen koppelen - - - Channel - Kanaal - - - - 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. - - - - LcdSpinBox - - Please enter a new value between %1 and %2: - Voer een nieuwe waarde in tussen %1 en %2: - - - - LeftRightNav - - Previous - Vorige - - - Next - Volgende - - - Previous (%1) - Vorige (%1) - - - Next (%1) - Volgende (%1) - - - - LfoController - - LFO Controller - LFO-controller - - - Base value - Basiswaarde - - - Oscillator speed - Oscillatorsnelheid - - - Oscillator amount - Hoeveelheid oscillator - - - Oscillator phase - Oscillator-fase - - - Oscillator waveform - Oscillator-golfvorm - - - Frequency Multiplier - Frequentievermenigvuldiger - - - - LfoControllerDialog - - LFO - LFO - - - LFO Controller - LFO-controller - - - BASE - BASIS - - - Base amount: - Basishoeveelheid: - - - todo - tedoen - - - SPD - SPD - - - 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. - - - 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 - 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. - - - 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. - Klik hier voor een zaagtandgolf. - - - Click here for a square-wave. - Klik hier voor een blokgolf. - - - Click here for an exponential wave. - Klik hier voor een exponentiële golf. - - - Click here for white-noise. - Klik hier voor witte ruis. - - - Click here for a user-defined shape. -Double click to pick a file. - Klik hier voor een aangepaste vorm. -Dubbelklikken om een bestand te selecteren. - - - Click here for a moog saw-wave. - Klik hier voor een moog-zaagtandgolf. - - - AMNT - HVHD - - - - LmmsCore - - Generating wavetables - Wavetables genereren - - - Initializing data structures - Datastructuren initialiseren - - - Opening audio and midi devices - Audio- en midi-apparaten openen - - - Launching mixer threads - Mixer-threads starten - - - - MainWindow - - &New - &Nieuw - - - &Open... - &Openen... - - - &Save - Op&slaan - - - Save &As... - Opslaan &als... - - - Import... - Importeren... - - - E&xport... - E&xporteren... - - - &Quit - &Afsluiten - - - &Edit - &Bewerken - - - Settings - Instellingen - - - &Tools - &Tools - - - &Help - &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 - - - 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. - - - FX Mixer - 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. - 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 - - - Untitled - Naamloos - - - LMMS %1 - LMMS %1 - - - 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? - - - 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) - - - Version %1 - Versie %1 - - - 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 + + Quantize: + + &File &Bestand - &Recently Opened Projects - &Recent geopende projecten + + &Edit + &Bewerken - Save as New &Version - Opslaan als nieuwe &versie + + &Quit + &Afsluiten - E&xport Tracks... - Tracks e&xporteren... + + Esc + - Online Help - Online help + + &Insert Mode + - What's This? - Wat is dit? + + F + - Open Project - Project openen + + &Velocity Mode + - Save Project - Project opslaan + + D + - Project recovery - Projectherstel + + Select All + - 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 - - - Volume as dBFS - Volume als dBFS - - - 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! - - - - MeterDialog - - Meter Numerator - Meter-noemer - - - Meter Denominator - Meter-teller - - - TIME SIG - MAATSOORT - - - - MeterModel - - Numerator - Noemer - - - Denominator - Teller - - - - MidiController - - MIDI Controller - MIDI-controller - - - unnamed_midi_controller - naamloze_midi_controller - - - - 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. - 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. - - - Track - Track - - - - MidiJack - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK-server is offline - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - De JACK-server lijkt afgesloten te zijn. - - - - 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 - - - Base velocity - Basissnelheid - - - - MidiSetupWidget - - DEVICE - APPARAAT - - - - MonstroInstrument - - Osc 1 Volume - Osc 1 volume - - - Osc 1 Panning - Osc 1 panning - - - Osc 1 Coarse detune - Osc 1 grof ontstemmen - - - Osc 1 Fine detune left - Osc 1 fijn ontstemmen links - - - Osc 1 Fine detune right - Osc 1 fijn ontstemmen rechts - - - Osc 1 Stereo phase offset - Osc 1 stereo-faseverschuiving - - - Osc 1 Pulse width - Osc 1 pulsbreedte - - - Osc 1 Sync send on rise - Osc 1 synchronisatie bij stijging - - - Osc 1 Sync send on fall - Osc 1 synchronisatie bij daling - - - Osc 2 Volume - Osc 2 volume - - - Osc 2 Panning - Osc 2 panning - - - Osc 2 Coarse detune - Osc 2 grof ontstemmen - - - Osc 2 Fine detune left - Osc 2 fijn ontstemmen links - - - Osc 2 Fine detune right - Osc 2 fijn ontstemmen rechts - - - Osc 2 Stereo phase offset - Osc 2 stereo-faseverschuiving - - - Osc 2 Waveform - Osc 2 golfvorm - - - Osc 2 Sync Hard - Osc 2 sync hard - - - Osc 2 Sync Reverse - Osc 2 sync omgekeerd - - - Osc 3 Volume - Osc 3 volume - - - Osc 3 Panning - Osc 3 panning - - - Osc 3 Coarse detune - Osc 3 grof ontstemmen - - - Osc 3 Stereo phase offset - Osc 3 stereo-faseverschuiving - - - Osc 3 Sub-oscillator mix - Osc 3 sub-oscillator mix - - - Osc 3 Waveform 1 - Osc 3 golfvorm 1 - - - Osc 3 Waveform 2 - Osc 3 golfvorm 2 - - - Osc 3 Sync Hard - Osc 3 sync hard - - - Osc 3 Sync Reverse - Osc 3 sync omgekeerd - - - LFO 1 Waveform - LFO 1 golfvorm - - - LFO 1 Attack - LFO 1 attack - - - LFO 1 Rate - LFO 1 ratio - - - LFO 1 Phase - LFO 1 fase - - - LFO 2 Waveform - LFO 2 golfvorm - - - LFO 2 Attack - LFO 2 attack - - - LFO 2 Rate - LFO 2 ratio - - - LFO 2 Phase - LFO 2 fase - - - Env 1 Pre-delay - Env 1 pre-delay - - - Env 1 Attack - Env 1 attack - - - Env 1 Hold - Env 1 hold - - - Env 1 Decay - Env 1 decay - - - Env 1 Sustain - Env 1 sustain - - - Env 1 Release - Env 1 release - - - Env 1 Slope - Env 1 slope - - - Env 2 Pre-delay - Env 2 pre-delay - - - Env 2 Attack - Env 2 attack - - - Env 2 Hold - Env 2 hold - - - Env 2 Decay - Env 2 decay - - - Env 2 Sustain - Env 2 sustain - - - Env 2 Release - Env 2 release - - - Env 2 Slope - Env 2 slope - - - Osc2-3 modulation - Osc 2-3 modulatie - - - Selected view - Geselecteerde weergave - - - 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 - Phs3-Env2 - - - Phs3-LFO1 - Phs3-LFO1 - - - Phs3-LFO2 - Phs3-LFO2 - - - Pit1-Env1 - Pit1-Env1 - - - Pit1-Env2 - Pit1-Env2 - - - Pit1-LFO1 - Pit1-LFO1 - - - Pit1-LFO2 - Pit1-LFO2 - - - Pit2-Env1 - Pit2-Env1 - - - Pit2-Env2 - Pit2-Env2 - - - Pit2-LFO1 - Pit2-LFO1 - - - Pit2-LFO2 - Pit2-LFO2 - - - Pit3-Env1 - Pit3-Env1 - - - Pit3-Env2 - Pit3-Env2 - - - Pit3-LFO1 - Pit3-LFO1 - - - Pit3-LFO2 - Pit3-LFO2 - - - PW1-Env1 - PW1-Env1 - - - PW1-Env2 - PW1-Env2 - - - PW1-LFO1 - PW1-LFO1 - - - PW1-LFO2 - PW1-LFO2 - - - Sub3-Env1 - Sub3-Env1 - - - Sub3-Env2 - Sub3-Env2 - - - Sub3-LFO1 - Sub3-LFO1 - - - Sub3-LFO2 - Sub3-LFO2 - - - Sine wave - Sinusgolf - - - Bandlimited Triangle wave - Bandgelimiteerde driehoeksgolf - - - Bandlimited Saw wave - Bandgelimiteerde zaagtandgolf - - - Bandlimited Ramp wave - Bandgelimiteerde hellingsgolf - - - Bandlimited Square wave - Bandgelimiteerde blokgolf - - - Bandlimited Moog saw wave - Bandgelimiteerde moog-zaagtandgolf - - - Soft square wave - Zachte blokgolf - - - Absolute sine wave - Absolute sinusgolf - - - Exponential wave - Exponentiële golf - - - White noise - Witte ruis - - - Digital Triangle wave - Digitale driehoeksgolf - - - Digital Saw wave - Digitale zaagtandgolf - - - Digital Ramp wave - Digitale hellingsgolf - - - Digital Square wave - Digitale blokgolf - - - Digital Moog saw wave - Digitale moog-zaagtandgolf - - - Triangle wave - Driehoeksgolf - - - Saw wave - Zaagtandgolf - - - Ramp wave - Hellingsgolf - - - Square wave - Blokgolf - - - Moog saw wave - Moog-zaagtandgolf - - - Abs. sine wave - Abs. sinusgolf - - - Random - Willekeurig - - - Random smooth - Willekeurig glad - - - - MonstroView - - Operators view - Operatorweergave - - - 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 - - - Coarse detune - Grof ontstemmen - - - semitones - halve tonen - - - Finetune left - Links fijnstemmen - - - cents - cents - - - Finetune right - Rechts fijnstemmen - - - 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 - - - Modulation amount - Hoeveelheid modulatie - - - - MultitapEchoControlDialog - - Length - Lengte - - - Step length: - Stap-lengte: - - - Dry - Droog - - - Dry Gain: - Droge gain: - - - Stages - Stappen - - - Lowpass stages: - Lowpass-stappen: - - - Swap inputs - Invoeren wisselen - - - Swap left and right input channel for reflections - Linker en rechter invoerkanaal wisselen voor reflecties - - - - NesInstrument - - Channel 1 Coarse detune - Kanaal 1 grof ontstemmen - - - Channel 1 Volume - Volume kanaal 1 - - - Channel 1 Envelope length - Kanaal 1 envelope-lengte - - - Channel 1 Duty cycle - Kanaal 1 inschakeltijd - - - Channel 1 Sweep amount - Kanaal 1 hoeveelheid sweep - - - Channel 1 Sweep rate - Kanaal 1 sweep-ratio - - - Channel 2 Coarse detune - Kanaal 2 grof ontstemmen - - - Channel 2 Volume - Volume kanaal 2 - - - Channel 2 Envelope length - Kanaal 2 envelope-lengte - - - Channel 2 Duty cycle - Kanaal 2 inschakeltijd - - - Channel 2 Sweep amount - Kanaal 2 hoeveelheid sweep - - - Channel 2 Sweep rate - Kanaal 2 sweep-ratio - - - Channel 3 Coarse detune - Kanaal 3 grof ontstemmen - - - Channel 3 Volume - Volume kanaal 3 - - - Channel 4 Volume - Volume kanaal 4 - - - Channel 4 Envelope length - Kanaal 4 envelope-lengte - - - Channel 4 Noise frequency - Kanaal 4 ruisfrequentie - - - Channel 4 Noise frequency sweep - Kanaal 4 ruisfrequentie-sweep - - - Master volume - Master-volume - - - Vibrato - Vibrato - - - - NesInstrumentView - - Volume - Volume - - - Coarse detune - Grof ontstemmen - - - Envelope length - Envelope-lengte - - - Enable channel 1 - Kanaal 1 inschakelen - - - Enable envelope 1 - Envelope 1 inschakelen - - - Enable envelope 1 loop - Envelope 1 herhalen inschakelen - - - Enable sweep 1 - Sweep 1 inschakelen - - - Sweep amount - Hoeveelheid sweep - - - Sweep rate - Sweep-ratio - - - 12.5% Duty cycle - 12.5 % inschakeltijd - - - 25% Duty cycle - 25 % inschakeltijd - - - 50% Duty cycle - 50 % inschakeltijd - - - 75% Duty cycle - 75 % inschakeltijd - - - Enable channel 2 - Kanaal 2 inschakelen - - - Enable envelope 2 - Envelope 2 inschakelen - - - Enable envelope 2 loop - Envelope 2 herhalen inschakelen - - - Enable sweep 2 - Sweep 2 inschakelen - - - Enable channel 3 - Kanaal 3 inschakelen - - - Noise Frequency - Ruisfrequentie - - - Frequency sweep - Frequentie-sweep - - - Enable channel 4 - Kanaal 4 inschakelen - - - Enable envelope 4 - Envelope 4 inschakelen - - - Enable envelope 4 loop - Envelope 4 herhalen inschakelen - - - Quantize noise frequency when using note frequency - Ruisfrequentie kwantiseren wanneer nootfrequentie gebruikt wordt - - - Use note frequency for noise - Nootfrequentie gebruiken voor ruis - - - Noise mode - Ruismodus - - - Master Volume - Master-volume - - - Vibrato - Vibrato - - - - 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 + + A + PatchesDialog + + Qsynth: Channel Preset Qsynth: kanaal-preset + + Bank selector Bank-selector + + Bank Bank + + Program selector Programma-selector + + Patch Patch + + Name Naam + + OK Ok + + Cancel Annuleren - - PatmanView - - Open 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. - - - 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 - - Open in piano-roll - In piano-roll openen - - - Clear all notes - Alle noten leegmaken - - - Reset name - Naam herstellen - - - Change name - Naam wijzigen - - - Add steps - Stappen toevoegen - - - Remove steps - Stappen verwijderen - - - Clone Steps - Stappen klonen - - - - PeakController - - Peak Controller - Piek-controller - - - Peak Controller Bug - Piek-controller bug - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Door een bug in oudere versies van LMMS is het mogelijk dat piek-controllers niet goed verbonden zijn. Verzeker u ervan dat piek-controllers goed verbonden zijn en sla dit bestand opnieuw op. Sorry voor enig ongemak. - - - - PeakControllerDialog - - PEAK - PIEK - - - LFO Controller - LFO-controller - - - - PeakControllerEffectControlDialog - - BASE - BASIS - - - Base amount: - Basishoeveelheid: - - - Modulation amount: - Hoeveelheid basis: - - - Attack: - Attack: - - - Release: - Release: - - - AMNT - HVHD - - - MULT - VERM - - - Amount Multiplicator: - Hoeveelheid-vermenigvuldiger: - - - ATCK - ATCK - - - DCAY - DCAY - - - Treshold: - Treshold: - - - TRSH - TRSH - - - - 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 - - - - 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 - - - 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 - - - Select all notes on this key - Alle noten op deze sleutel selecteren - - - - PianoRollWindow - - Play/pause current pattern (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) - 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 - - - Copy paste controls - Bedieningen kopiëren en plakken - - - Timeline controls - Tijdlijnbediening - - - Zoom and note controls - Zoom- en nootbediening - - - Piano-Roll - %1 - Piano-roll - %1 - - - Piano-Roll - no pattern - Piano-roll - geen patroon - - - Quantize - Kwantiseren - - - - PianoView - - Base note - Grondtoon - - - - Plugin - - Plugin not found - Plugin niet gevonden - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - De plug-in "%1" werd niet teruggevonden of kon niet geladen worden! -Reden: "%2" - - - Error while loading plugin - Fout bij laden van plug-in - - - Failed to load plugin "%1"! - Laden van plug-in "%1" mislukt! - - PluginBrowser - Instrument 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 - - - - 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! - - - - 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 - - - - ProjectRenderer - - WAV-File (*.wav) - WAV-bestand (*.wav) - - - Compressed OGG-File (*.ogg) - Gecomprimeerd OGG-bestand (¨*.ogg) - - - FLAC-File (*.flac) - FLAC-bestand (*.flac) - - - Compressed MP3-File (*.mp3) - Gecomprimeerd MP3-bestand (*.mp3) - - - - QWidget - - Name: - Naam: - - - 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: - Bestand: - - - File: %1 - Bestand: %1 - - - - RenameDialog - - Rename... - Naam wijzigen... - - - - ReverbSCControlDialog - - Input - Invoer - - - Input Gain: - Invoer-gain: - - - Size - Grootte - - - Size: - Grootte: - - - Color - Kleur - - - Color: - Kleur: - - - Output - Uitvoer - - - Output Gain: - Uitvoer-gain: - - - - ReverbSCControls - - Input Gain - Invoer-gain - - - Size - Grootte - - - Color - Kleur - - - Output Gain - Uitvoer-gain - - - - 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 - - - Delete (middle mousebutton) - Verwijderen (middelste muisknop) - - - Cut - Knippen - - - Copy - Kopiëren - - - Paste - Plakken - - - Mute/unmute (<%1> + middle click) - Dempen/geluid aan (<%1> + middelklik) - - - - SampleTrack - - Sample track - Sample-track - - - Volume - Volume - - - Panning - Panning - - - - SampleTrackView - - Track volume - Track-volume - - - Channel volume: - Volume kanaal: - - - VOL - VOL - - - Panning - Panning - - - Panning: - Panning: - - - PAN - PAN - - - - SetupDialog - - Setup LMMS - LMMS instellen - - - General settings - Algemene instellingen - - - BUFFER SIZE - BUFFERGROOTTE - - - Reset to default-value - Standaardwaarde herstellen - - - MISC - VARIA - - - Enable tooltips - Tooltips inschakelen - - - Show restart warning after changing settings - Waarschuwing voor herstarten weergeven na wijzigen van instellingen - - - Compress project files per default - Projectbestanden standaard comprimeren - - - One instrument track window mode - Venstermodus met een instrument-track - - - HQ-mode for output audio-device - HQ-modus voor audio-apparaat-uitvoer - - - Compact track buttons - Compacte track-knoppen - - - 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 - - - LANGUAGE - TAAL - - - Paths - Paden - - - LMMS working directory - LMMS-werkmap - - - VST-plugin directory - VST-pluginmap - - - Background artwork - Achtergrondafbeelding - - - STK rawwave directory - STK-rawwave-map - - - Default Soundfont File - Standaard soundfont-bestand - - - Performance settings - Prestatie-instellingen - - - UI effects vs. performance - UI-effecten vs. prestaties - - - Smooth scroll in Song Editor - Vloeiend scrollen in song-editor - - - Show playback cursor in AudioFileProcessor - Afspeelcursor weergeven in AudioBestandProcessor - - - Audio settings - Audio-instellingen - - - AUDIO INTERFACE - AUDIO-INTERFACE - - - MIDI settings - MIDI-instellingen - - - MIDI INTERFACE - MIDI-INTERFACE - - - 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 - - - Auto-save interval: %1 - Interval automatisch opslaan: %1 - - - 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. - - - - Song - - Tempo - Tempo - - - Master volume - Master-volume - - - Master pitch - Master-toonhoogte - - - 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 - - - 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) - - - LMMS Error report - LMMS-foutrapport - - - Save project - Project opslaan - - - - 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. - - - 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. - - - - 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 - - - Edit actions - Bewerking-acties - - - Timeline controls - Tijdlijnbediening - - - Zoom controls - Zoombediening - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - Lineair spectrum - - - Linear Y axis - Lineaire Y-as - - - - SpectrumAnalyzerControls - - Linear spectrum - Lineair spectrum - - - Linear Y axis - Lineaire Y-as - - - Channel mode - Kanaalmodus - - - - SubWindow - - Close - Sluiten - - - Maximize - Maximaliseren - - - Restore - Herstellen - - - - TabWidget - - Settings for %1 - Instellingen voor %1 - - - - TempoSyncKnob - - Tempo Sync - Tempo-sync - - - No Sync - Geen sync - - - Eight beats - Acht beats - - - Whole note - Hele noot - - - Half note - Halve noot - - - Quarter note - Kwart noot - - - 8th note - 8ste noot - - - 16th note - 16de noot - - - 32nd note - 32ste noot - - - Custom... - Aangepast... - - - Custom - Aangepast - - - Synced to Eight Beats - Gesynchroniseerd met acht beats - - - Synced to Whole Note - Gesynchroniseerd met hele noot - - - Synced to Half Note - Gesynchroniseerd met halve noot - - - Synced to Quarter Note - Gesynchroniseerd met kwart noot - - - Synced to 8th Note - Gesynchroniseerd met 8ste noot - - - Synced to 16th Note - Gesynchroniseerd met 16de noot - - - Synced to 32nd Note - Gesynchroniseerd met 32ste noot - - - - TimeDisplayWidget - - click to change time units - klikken om tijd-eenheden te wijzigen - - - MIN - MIN - - - SEC - S - - - MSEC - MS - - - BAR - BAR - - - BEAT - BEAT - - - TICK - TICK - - - - TimeLineWidget - - Enable/disable auto-scrolling - Auto-scrollen in-/uitschakelen - - - Enable/disable loop-points - Loop-punten in-/uitschakelen - - - After stopping go back to begin - Na stoppen terug naar begin - - - 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 - - - - 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 Track %1 (%2/Total %3) - Track %1 laden (%2/totaal %3) - - - - TrackContentObject - - Mute - Dempen - - - - TrackContentObjectView - - 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) - - - Delete (middle mousebutton) - Verwijderen (middelste muisknop) - - - Cut - Knippen - - - Copy - Kopiëren - - - Paste - Plakken - - - Mute/unmute (<%1> + middle click) - Dempen/geluid aan (<%1> + middelklik) - - - - TrackOperationsWidget - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - Druk op <%1> tijdens het klikken op het verplaatsingsgedeelte om een nieuwe 'slepen-en-neerzetten'-handeling te starten. - - - Actions for this track - Acties voor deze track - - - Mute - Dempen - - - Solo - Solo - - - Mute this track - Deze track dempen - - - Clone this track - Deze track klonen - - - Remove this track - Deze track verwijderen - - - Clear this track - Deze track leegmaken - - - FX %1: %2 - FX %1: %2 - - - Turn all recording on - Alle opnames aanzetten - - - Turn all recording off - Alle opnames uitzetten - - - Assign to new FX Channel - Aan nieuw FX-kanaal toewijzen - - - - TripleOscillatorView - - Use phase modulation for modulating oscillator 1 with oscillator 2 - Fasemodulatie gebruiken om oscillator 1 met oscillator 2 te moduleren - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Amplitudemodulatie gebruiken om oscillator 1 met oscillator 2 te moduleren - - - Mix output of oscillator 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 - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Fasemodulatie gebruiken om oscillator 2 met oscillator 3 te moduleren - - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Amplitudemodulatie gebruiken om oscillator 2 met oscillator 3 te moduleren - - - Mix output of oscillator 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 - - - 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. - - - 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. - - - 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 a moog-like saw-wave for current oscillator. - Moog-achtige zaagandgolf gebruiken voor huidige oscillator. - - - Use an exponential wave for current oscillator. - Exponentiële golf 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. - - - - VersionedSaveDialog - - Increment version number - Versienummer verhogen - - - Decrement version number - Versienummer verlagen - - - already exists. Do you want to replace it? - bestaat reeds. Wilt u het vervangen? - - - - 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 - 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 - 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 - 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. - - - 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 - 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 - 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 /> - - - - VstPlugin - - Loading plugin - Plugin laden - - - 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... - - - The VST plugin %1 could not be loaded. - VST-plugin %1 kon niet geladen worden. - - - - WatsynInstrument - - Volume A1 - Volume A1 - - - Volume A2 - Volume A2 - - - Volume B1 - Volume B1 - - - Volume B2 - Volume B2 - - - Panning A1 - Panning A1 - - - Panning A2 - Panning A2 - - - Panning B1 - Panning B1 - - - Panning B2 - Panning B2 - - - Freq. multiplier A1 - Frequentieverm. A1 - - - Freq. multiplier A2 - Frequentieverm. A2 - - - Freq. multiplier B1 - Frequentieverm. B1 - - - Freq. multiplier B2 - Frequentieverm. B2 - - - Left detune A1 - Links ontstemmen A1 - - - Left detune A2 - Links ontstemmen A2 - - - Left detune B1 - Links ontstemmen B1 - - - Left detune B2 - Links ontstemmen B2 - - - Right detune A1 - Rechts ontstemmen A1 - - - Right detune A2 - Rechts ontstemmen A2 - - - Right detune B1 - Rechts ontstemmen B1 - - - Right detune B2 - Rechts ontstemmen B2 - - - A-B Mix - A-B mix - - - A-B Mix envelope amount - A-B mix hoeveelheid envelope - - - A-B Mix envelope attack - A-B mix envelope attack - - - A-B Mix envelope hold - A-B mix envelope hold - - - A-B Mix envelope decay - A-B mix envelope decay - - - A1-B2 Crosstalk - A1-B2 overspraak - - - A2-A1 modulation - A2-A1 modulatie - - - B2-B1 modulation - B2-B1 modulatie - - - Selected graph - Geselecteerde grafiek - - - - WatsynView - - 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 - - - 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 - - - - ZynAddSubFxInstrument - - Portamento - Portamento - - - Filter Frequency - Filter-frequentie - - - Filter Resonance - Filter-resonantie - - - Bandwidth - Bandbreedte - - - FM Gain - FM-versterking - - - Resonance Center Frequency - Resonantie centerfrequentie - - - Resonance Bandwidth - Resonantie bandbreedte - - - Forward MIDI Control Change Events - MIDI control change events doorsturen - - - - ZynAddSubFxView - - 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-frequentie: - - - FREQ - FREQ - - - Filter Resonance: - Filter-resonantie: - - - RES - RES - - - Bandwidth: - Bandbreedte: - - - BW - BW - - - FM Gain: - FM-versterking: - - - FM GAIN - FM GAIN - - - Resonance center frequency: - Resonantie centerfrequentie: - - - RES CF - RES CF - - - Resonance bandwidth: - Resonantie bandbreedte: - - - RES BW - RES BW - - - Forward MIDI Control Changes - MIDI control changes doorsturen - - - - audioFileProcessor - - Amplify - Versterken - - - Start of sample - Begin van sample - - - End of sample - Einde van sample - - - Reverse sample - Sample omdraaien - - - Stutter - Stutter - - - Loopback point - Herhaalpunt - - - Loop mode - Herhaalmodus - - - Interpolation mode - Interpolatiemodus - - - None - Geen - - - Linear - Lineair - - - Sinc - Sinc - - - Sample not found: %1 - Sample niet gevonden: %1 - - - - bitInvader - - Samplelength - Samplelengte - - - - bitInvaderView - - 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. - - - Click here for a triangle-wave. - Klik hier voor een driehoeksgolf. - - - Click here for a saw-wave. - Klik hier voor een zaagtandgolf. - - - Click here for a square-wave. - Klik hier voor een blokgolf. - - - Click here for white-noise. - Klik hier voor 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 - - - Smooth waveform - Golfvorm zacht maken - - - Click here to apply smoothing to wavegraph - Klik hier om verzachting op de golfgrafiek toe te passen - - - Increase wavegraph amplitude by 1dB - 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 - 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 - - - Process based on the maximum of both stereo channels - Verwerking gebaseerd op het maximum van beide stereokanalen - - - Stereomode 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 - - - Process each stereo channel independently - Elk stereokanaal onafhankelijk verwerken - - - - dynProcControls - - Input gain - Invoer-gain - - - Output gain - Uitvoer-gain - - - Attack time - Attack-tijd - - - Release time - Release-tijd - - - Stereo mode - Stereomodus - - - - 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 - - Start frequency - Beginfrequentie - - - End frequency - Eindfrequentie - - - Gain - Gain - - - Length - Lengte - - - Distortion Start - Vervorming-begin - - - Distortion End - Vervorming-einde - - - Envelope Slope - Envelope-helling - - - Noise - Ruis - - - Click - Klik - - - Frequency Slope - Frequentie-helling - - - Start from note - Starten vanaf noot - - - End to note - Stoppen naar noot - - - - kickerInstrumentView - - Start frequency: - Beginfrequentie: - - - End frequency: - Eindfrequentie: - - - Gain: - Gain: - - - Frequency Slope: - Frequentie-helling: - - - Envelope Length: - Envelope-lengte: - - - Envelope Slope: - Envelope-helling: - - - Click: - Klik: - - - Noise: - Ruis: - - - Distortion Start: - Vervorming-begin: - - - Distortion End: - Vervorming-einde: - - - - 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 - - Plugins - Plugins - - - Description - Beschrijving - - - - ladspaPortDialog - - Ports - Poorten - - - Name - Naam - - - Rate - Ratio - - - Direction - Richting - - - Type - Type - - - Min < Default < Max - Min < standaard < max - - - Logarithmic - Logaritmisch - - - SR Dependent - SR-afhankelijk - - - Audio - Audio - - - Control - Bediening - - - Input - Invoer - - - Output - Uitvoer - - - Toggled - Gewisseld - - - Integer - Integer - - - Float - Float - - - Yes - Ja - - - - lb302Synth - - VCF Cutoff Frequency - VCF cutoff-frequentie - - - VCF Resonance - VCF resonantie - - - VCF Envelope Mod - VCF envelope-mod - - - VCF Envelope Decay - VCF envelope-decay - - - Distortion - Vervorming - - - Waveform - Golfvorm - - - Slide Decay - Slide-decay - - - Slide - Slide - - - Accent - Accent - - - Dead - Dead - - - 24dB/oct Filter - 24dB/oct-filter - - - - lb302SynthView - - Cutoff Freq: - Cutoff-freq: - - - Resonance: - Resonantie: - - - Env Mod: - Env-mod: - - - Decay: - Decay: - - - 303-es-que, 24dB/octave, 3 pole filter - 303-es-que, 24dB/octave, 3 pole filter - - - Slide Decay: - Slide-decay: - - - DIST: - DIST: - - - Saw wave - Zaagtandgolf - - - Click here for a saw-wave. - Klik hier voor een zaagtandgolf. - - - Triangle wave - Driehoeksgolf - - - Click here for a triangle-wave. - Klik hier voor een driehoeksgolf. - - - Square wave - Blokgolf - - - Click here for a square-wave. - Klik hier voor een blokgolf. - - - Rounded square wave - Afgeronde blokgolf - - - Click here for a square-wave with a rounded end. - Klik hier voor een blokgolf met afgerond einde. - - - Moog wave - Moog-golf - - - Click here for a moog-like wave. - Klik hier voor een moog-achtige golf. - - - Sine wave - Sinusgolf - - - Click for a sine-wave. - Klikken voor sinusgolf. - - - White noise wave - Witte-ruisgolf - - - Click here for an exponential wave. - Klik hier voor een exponentiële golf. - - - Click here for white-noise. - Klik hier voor witte ruis. - - - Bandlimited saw wave - Bandgelimiteerde zaagtandgolf - - - Click here for bandlimited saw wave. - Klik hier voor een bandgelimiteerde zaagtandgolf. - - - Bandlimited square wave - Bandgelimiteerde blokgolf - - - Click here for bandlimited square wave. - Klik hier voor een bandgelimiteerde blokgolf. - - - Bandlimited triangle wave - Bandgelimiteerde driehoeksgolf - - - Click here for bandlimited triangle wave. - Klik hier voor een bandgelimiteerde driehoeksgolf. - - - Bandlimited moog saw wave - Bandgelimiteerde moog-zaagtandgolf - - - Click here for bandlimited moog saw wave. - Klik hier voor een bandgelimiteerde moog-zaagtandgolf. - - - - malletsInstrument - - Hardness - Hardheid - - - Position - Positie - - - Vibrato Gain - Vibrato-gain - - - Vibrato Freq - Vibrato-freq - - - Stick Mix - Stick-mix - - - Modulator - Modulator - - - Crossfade - Crossfade - - - LFO Speed - LFO-snelheid - - - LFO Depth - LFO-diepte - - - ADSR - ADSR - - - Pressure - Druk - - - Motion - Beweging - - - Speed - Snelheid - - - Bowed - Gebogen - - - Spread - Spreiding - - - Marimba - Marimba - - - Vibraphone - Vibraphone - - - Agogo - Agogo - - - Wood1 - Wood1 - - - Reso - Reso - - - Wood2 - Wood2 - - - Beats - Beats - - - Two Fixed - Two Fixed - - - Clump - Clump - - - Tubular Bells - Tubular bells - - - Uniform Bar - Uniforme balk - - - Tuned Bar - Gestemde balk - - - Glass - Glas - - - Tibetan Bowl - Tibetaanse kom - - - - malletsInstrumentView - - Instrument - Instrument - - - Spread - Spreiding - - - Spread: - Spreiding: - - - 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 - - - - manageVSTEffectView - - - VST parameter control - - VST parameterbediening - - - 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 - - - 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 - - Distortion - Vervorming - - - Volume - Volume - - - - organicInstrumentView - - Distortion: - Vervorming: - - - Volume: - Volume: - - - Randomise - Willekeuring maken - - - Osc %1 waveform: - Osc %1 golfvorm: - - - Osc %1 volume: - Osc %1 volume: - - - Osc %1 panning: - 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. - - - Osc %1 stereo detuning - Osc %1 stereo-ontstemming - - - 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 - - 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 + + A native amplifier plugin + Een ingebouwde versterker-plugin - Plugin for freely manipulating stereo output - Plugin voor het vrij manipuleren voor stereo-uitoer + + 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 controlling knobs with sound peaks - Plugin voor het bedienen van knoppen met geluidspieken + + Boost your bass the fast and simple way + Versterk uw bas snel en eenvoudig - Plugin for enhancing stereo separation of a stereo input file - Plugin voor het verbeteren van stereo-scheiding van een stereo-invoerbestand. + + 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 - 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. + + 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 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. - Player for SoundFont files - Speler voor SoundFont-bestanden + + A graphical spectrum analyzer. + Een grafische spectrum-analyzer. - Emulation of GameBoy (TM) APU - Emulatie van GameBoy (TM) APU + + Plugin for enhancing stereo separation of a stereo input file + Plugin voor het verbeteren van stereo-scheiding van een stereo-invoerbestand. - Customizable wavetable synthesizer - Aanpasbare wavetable-synthesizer + + Plugin for freely manipulating stereo output + Plugin voor het vrij manipuleren voor stereo-uitoer - 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 + + 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 native amplifier plugin - Een ingebouwde versterker-plugin + + A stereo field visualizer. + - Carla Rack Instrument - Carla Rack instrument + + VST-host for using VST(i)-plugins within LMMS + VST-Host voor gebruik van VST(i)-plugins binnen LMMS - 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 + + 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. - Graphical spectrum analyzer plugin - Grafische spectrum-analyse-plugin + + 4-oscillator modulatable wavetable synth + 4-oscillator moduleerbare wavetable-synth - 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 + + plugin for waveshaping + plugin voor golfvorming + Mathematical expression parser Wiskundige uitdrukking-verwerker - - - sf2Instrument - Bank - Bank + + Embedded ZynAddSubFX + Ingebedde ZynAddSubFX - Patch - Patch + + An all-pass filter allowing for extremely high orders. + - Gain - Gain + + Granular pitch shifter + - Reverb - Reverb + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + - Reverb Roomsize - Reverb kamergrootte + + Basic Slicer + - Reverb Damping - Reverb demping - - - Reverb Width - Reverb-breedte - - - Reverb Level - Reverb niveau - - - Chorus - Chorus - - - Chorus Lines - Chorus lines - - - Chorus Level - Chorus niveau - - - Chorus Speed - Chorus snelheid - - - Chorus Depth - Chorus diepte - - - A soundfont %1 could not be loaded. - Een soundfont &1 kon niet geladen worden. + + Tap to the beat + - sf2InstrumentView + PluginEdit - Open other SoundFont file - Ander SoundFont-bestand openen + + Plugin Editor + - Click here to open another SF2 file - Klik hier om een ander SF2-bestand te openen + + Edit + - Choose the patch - Patch kiezen + + Control + Bediening - Gain - Gain + + MIDI Control Channel: + - Apply reverb (if supported) - Reverb toepassen (indien ondersteund) + + N + - 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. + + Output dry/wet (100%) + - Reverb Roomsize: - Reverb kamergrootte: + + Output volume (100%) + - Reverb Damping: - Reverb demping: + + Balance Left (0%) + - Reverb Width: - Reverb breedte: + + + Balance Right (0%) + - Reverb Level: - Reverb niveau: + + Use Balance + - Apply chorus (if supported) - Chorus toepassen (indien ondersteund) + + Use Panning + - 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. + + Settings + Instellingen - Chorus Lines: - Chorus lines: + + Use Chunks + - Chorus Level: - Chorus niveau: + + Audio: + - Chorus Speed: - Chorus snelheid: + + Fixed-Size Buffer + - Chorus Depth: - Chorus diepte: + + Force Stereo (needs reload) + - Open SoundFont file - SoundFont-bestand openen + + MIDI: + - SoundFont2 Files (*.sf2) - SoundFont2-bestanden (*.sf2) + + Map Program Changes + + + + + Send Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + + + + + Save State + + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + Soort: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + - sfxrInstrument + PluginFactory - Wave Form - Golfvorm + + 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! - sidInstrument + PluginListDialog - Cutoff - Cutoff + + Carla - Add New + - Resonance - Resonantie + + Requirements + - Filter type - Filtersoort + + With Custom GUI + - Voice 3 off - Stem 3 off + + With CV Ports + - Volume - Volume + + Real-time safe only + - Chip model - Chip-model + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + - sidInstrumentView + PluginParameter - Volume: - Volume: + + Form + - Resonance: - Resonantie: + + Parameter Name + - Cutoff frequency: - Cutoff-frequentie: + + TextLabel + - 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 + PluginRefreshDialog - WIDE - WIDE + + Plugin Refresh + - Width: - Breedte: + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + - stereoEnhancerControls + PluginWidget - Width - Breedte + + + + + + Frame + + + + + Enable + + + + + On/Off + Aan/uit + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + - stereoMatrixControlDialog + ProjectRenderer - Left to Left Vol: - Links naar links vol: + + WAV (*.wav) + WAV (*.wav) - Left to Right Vol: - Links naar rechts vol: + + FLAC (*.flac) + FLAC (*.flac) - Right to Left Vol: - Rechts naar links vol: + + OGG (*.ogg) + OGG (*.ogg) - Right to Right Vol: - Rechts naar rechts vol: + + MP3 (*.mp3) + MP3 (*.mp3) - stereoMatrixControls + QGroupBox - Left to Left - Links naar links - - - Left to Right - Links naar rechts - - - Right to Left - Rechts naar links - - - Right to Right - Rechts naar rechts + + + Settings for %1 + - vestigeInstrument + QObject - Loading plugin - Plugin laden + + Reload Plugin + - Please wait while loading VST-plugin... - Even geduld bij het laden van VST-plugin... + + Show GUI + GUI weergeven + + + + Help + Help + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + - vibed + QWidget - String %1 volume - Snaar %1 volume + + + Name: + Naam: - String %1 stiffness - Snaar %1 hardheid + + Maker: + Maker: - Pick %1 position - Aanslag %1 positie + + Copyright: + Auteursrecht: - Pickup %1 position - Pickup %1 positie + + Requires Real Time: + Vereist realtime: - Pan %1 - Pan %1 + + + + Yes + Ja - Detune %1 - Ontstemmen %1 + + + + No + Nee - Fuzziness %1 - Ruigheid %1 + + Real Time Capable: + Realtime-capabel: - Length %1 - Lengte %1 + + In Place Broken: + Defect op zijn plaats: - Impulse %1 - Impuls %1 + + Channels In: + Invoerkanalen: - Octave %1 - Octaaf %1 + + Channels Out: + Uitvoerkanalen: + + + + File: %1 + Bestand: %1 + + + + File: + Bestand: - vibedView + XYControllerW - Volume: - Volume: + + XY Controller + - The 'V' knob sets the volume of the selected string. - De 'V'-knop stelt het volume in van de geselecteerde snaar. + + X Controls: + - 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. - - - Pan: - Pan: - - - 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. - - - Detune: - Ontstemmen: - - - 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. - - - 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. - - - 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 - - - User defined wave - Aangepaste golf + + Y Controls: + + Smooth - Glad + - Click here to smooth waveform. - Klik hier om de golfvorm glad te maken. + + &Settings + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + + + + + lmms::AudioFileProcessor + + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + 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. + - voiceObject - - Voice %1 pulse width - Stem %1 pulsbreedte - - - Voice %1 attack - Stem %1 attack - - - Voice %1 decay - Stem %1 decay - - - Voice %1 sustain - Stem %1 sustain - - - Voice %1 release - Stem %1 release - - - Voice %1 coarse detuning - Stem %1 grof ontstemmen - - - Voice %1 wave shape - Stem %1 golfvorm - - - Voice %1 sync - Stem %1 sync - - - Voice %1 ring modulate - Stem %1 ring-modulatie - - - Voice %1 filtered - Stem %1 gefilterd - - - Voice %1 test - Stem %1 test - - - - waveShaperControlDialog - - INPUT - INVOER - - - Input gain: - Invoer-gain: - - - OUTPUT - UITVOER - - - Output gain: - Uitvoer-gain: - - - Reset waveform - Golfvorm herstellen - - - Click here to reset the wavegraph back to default - Klik hier om de golfgrafiek terug naar standaard te zetten - - - Smooth waveform - Golfvorm zacht maken - - - Click here to apply smoothing to wavegraph - Klik hier om verzachting op de golfgrafiek toe te passen - - - 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 - - - Clip input - Invoer clippen - - - Clip input signal to 0dB - Invoersignaal clippen naar 0 dB - - - - waveShaperControls + lmms::BitcrushControls + Input gain - Invoer-gain + + + Input noise + + + + Output gain - Uitvoer-gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + \ No newline at end of file diff --git a/data/locale/oc.ts b/data/locale/oc.ts new file mode 100644 index 000000000..be804cfca --- /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 + + + + + MixerChannelView + + + Channel send amount + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + + + + MixerChannelLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + 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 + + + + + InstrumentTuningView + + + 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 4214718af..e38165424 100644 --- a/data/locale/pl.ts +++ b/data/locale/pl.ts @@ -1,10324 +1,19071 @@ - + AboutDialog + About LMMS - O programie LMMS + O LMMS - Version %1 (%2/%3, Qt %4, %5) - Wersja %1 (%2/%3, Qt %4, %5) + + 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 + + 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 - 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 - - + Involved Zaangażowani + Contributors ordered by number of commits: - Twórcy programu posortowani podług aktywności: + Twórcy programu posortowani wedł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! + Oryginalne tłumaczenie LMMS: +Kacper Pawinski +Lucas Grzesik +Marcin Mikołajczak +Outer_Mind +Radek Słowik +Nowe tłumaczenie LMMS: +Grzegorz „Gootector” Pruchniakowski + + + + License + Licencja - AmplifierControlDialog + AboutJuceDialog - VOL - VOL + + About JUCE + O JUCE - Volume: - Głośność: + + <b>About JUCE</b> + <b>O JUCE</b> - PAN - PAN + + This program uses JUCE version 3.x.x. + Ten program używa wersji JUCE 3.x.x. - Panning: - Panoramowanie: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + JUCE jest otwartym, wieloplatformowym frameworkiem aplikacji C++ do tworzenia wysokiej jakości aplikacji desktopowych i mobilnych. + +Główne moduły JUCE (juce_audio_basics, juce_audio_devices, juce_core i juce_events) są objęte licencją dopuszczającą na warunkach licencji ISC. +Pozostałe moduły są objęte licencją GNU GPL 3.0. + +Prawa autorskie (C) 2022 Raw Material Software Limited. - LEFT - LEWO - - - Left gain: - L wzm: - - - RIGHT - PRAWO - - - Right gain: - P wzm: + + This program uses JUCE version + Ten program używa wersji JUCE - AmplifierControls + AudioDeviceSetupWidget - Volume - Głośność - - - Panning - Panoramowanie - - - Left gain - L wzm: - - - Right gain - P wzm: + + [System Default] + [Ustawienia domyślne systemu] - AudioAlsaSetupWidget + CarlaAboutW - DEVICE - URZĄDZENIE + + About Carla + O Carla - CHANNELS - KANAŁY + + About + O LMMS + + + + About text here + Tekst opisowy + + + + Extended licensing here + Rozszerzona licencja dostępna jest tutaj + + + + Artwork + Grafika + + + + Using KDE Oxygen icon set, designed by Oxygen Team. + Używa ikon KDE Oxygen stworzonych przez Oxygen Team. + + + + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. + Zawiera elementy pokręteł, teł i inne małe grafiki z projektów Calf Studio Gear, OpenAV i OpenOctave. + + + + VST is a trademark of Steinberg Media Technologies GmbH. + VST jest znakiem towarowym Steinberg Media Technologies GmBH. + + + + Special thanks to António Saraiva for a few extra icons and artwork! + Specialne podziękowania dla António Saraiva za dodatkowe ikony i grafiki. + + + + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. + Logo LV2 zostało zaprojektowane przez Thorstena Wilmsa na podstawie koncepcji Petera Shorthose. + + + + MIDI Keyboard designed by Thorsten Wilms. + Klawiatura MIDI zaprojektowana przez Thorstena Wilmsa. + + + + Carla, Carla-Control and Patchbay icons designed by DoosC. + Ikony Carla, Carla-Control i Patchbay zostały zaprojektowane przez DoosC. + + + + Features + Funkcje + + + + AU/AudioUnit: + AU/AudioUnit: + + + + LADSPA: + LADSPA: + + + + + + + + + + + TextLabel + EtykietaTekstowa + + + + VST2: + VST2: + + + + DSSI: + DSSI: + + + + LV2: + LV2: + + + + VST3: + VST3: + + + + OSC + OSC + + + + Host URLs: + URL hostów: + + + + Valid commands: + Prawidłowe polecenia: + + + + valid osc commands here + prawidłowe polecenia osc tutaj + + + + Example: + Przykład: + + + + License + Licencja + + + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + 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 + Wersja mostka OSC + + + + 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 dźwiękowych%2.<br><br>Prawa autorskie (C) 2011-2019 falkTX<br> + + + + + (Engine not running) + (silnik nie jest uruchomiony) + + + + Everything! (Including LRDF) + Wszystko! (razem z LRDF) + + + + Everything! (Including CustomData/Chunks) + Wszystko! (razem z CustomData/Chunks) + + + + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + O 110&#37; kompletny (z wykorzystaniem rozszerzeń niestandardowych)<br/>Zaimplementowane funkcje/rozszerzenia:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + + + + + + Using Juce host + Wykorzystując host Juce + + + + About 85% complete (missing vst bank/presets and some minor stuff) + Ukończono w około 85% (brakuje banku wtyczek VST/presetów i kilku drobnych rzeczy) - AudioFileProcessorView + CarlaHostW - Open other sample - Otwórz inną próbkę + + MainWindow + OknoGłówne - 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. + + Rack + Rack - Reverse sample - Odwróć próbkę + + Patchbay + Patchbay - 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. + + Logs + Dziennik - Amplify: - Wzmocnienie: + + Loading... + Ładowanie... - 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!) + + Save + Zapisz - 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. - - - 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. - - - 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. - - - 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. - - - 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: - - - - AudioJack - - JACK client restarted - Klient JACK zrestartowany - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS został odrzucony przez JACK z jakiegoś powodu. Back-end LMMSa został zrestartowany więc możesz ponownie dokonać ręcznych połączeń. - - - JACK server down - Serwer JACK wyłączony - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Wydaje się, że serwer JACK został wyłączony i uruchomienie nowej instancji nie powiodło się więc LMMS nie może kontynuować pracy. Należy zapisać projekt i uruchomić serwer JACK i LMMSa ponownie. - - - CLIENT-NAME - NAZWA-KLIENTA - - - CHANNELS - KANAŁY - - - - AudioOss::setupWidget - - DEVICE - URZĄDZENIE - - - CHANNELS - KANAŁY - - - - AudioPortAudio::setupWidget - - BACKEND - BACKEND - - - DEVICE - URZĄDZENIE - - - - AudioPulseAudio::setupWidget - - DEVICE - URZĄDZENIE - - - CHANNELS - KANAŁY - - - - AudioSdl::setupWidget - - DEVICE - URZĄDZENIE - - - - AudioSndio::setupWidget - - DEVICE - URZĄDZENIE - - - CHANNELS - KANAŁY - - - - AudioSoundIo::setupWidget - - BACKEND - BACKEND - - - DEVICE - URZĄDZENIE - - - - AutomatableModel - - &Reset (%1%2) - &Resetuj (%1%2) - - - &Copy value (%1%2) - &Kopiuj wartość (%1%2) - - - &Paste value (%1%2) - &Wklej wartość (%1%2) - - - 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 - - - - AutomationEditor - - Please open an automation pattern 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) - 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) - 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 - - - Interpolation controls - Regulacja interpolacji - - - Timeline controls - Regulacja osi czasu - - - Zoom controls - Regulacja powiększenia - - - 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. - - - - AutomationPattern - - Drag a control while pressing <%1> - Przeciągnij trzymając wciśnięty klawisz <%1> - - - - AutomationPatternView - - Open in Automation editor - Otwórz w Edytorze Automatyki - - - Clear + + Clear Wyczyść - Reset name - Zresetuj nazwę + + Ctrl+L + Ctrl+L - Change name - Zmień nazwę + + Auto-Scroll + Autoprzewijanie - %1 Connections - %1 Połączenia + + Buffer Size: + Rozmiar bufora: - Disconnect "%1" - Rozłącz "%1" + + Sample Rate: + Częstotliwość próbkowania: - Set/clear record - Ustaw/wyczyść nagranie + + ? Xruns + ? Xruns - Flip Vertically (Visible) - Odwróć w pionie (widoczne) + + DSP Load: %p% + Obciążenie DSP: %p% - Flip Horizontally (Visible) - Odwróć w poziomie (widoczne) + + &File + &Plik - Model is already connected to this pattern. - Model jest już podłączony do tego wzorca. - - - - AutomationTrack - - Automation track - Ścieżka automatyki - - - - BBEditor - - Beat+Bassline Editor - Pokaż/ukryj Edytor Perkusji i Basu + + &Engine + &Silnik - Play/pause current beat/bassline (Space) - Odtwórz/Pauzuj bieżącą linię perkusyjną/basową (Spacja) + + &Plugin + &Wtyczka - Stop playback of current beat/bassline (Space) - Zatrzymaj odtwarzanie bieżącej linii perkusyjnej/basowej (Spacja) + + Macros (all plugins) + Makra (wszystkie wtyczki) - 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. + + &Canvas + &Płótno - Click here to stop playing of current beat/bassline. - Kliknij tutaj, aby zatrzymać odtwarzanie bieżącej linii perkusyjnej/basowej. + + Zoom + Powiększenie - Add beat/bassline - Dodaj linię perkusyjną/basową + + &Settings + U&stawienia - 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 sample-track - Dodaj próbkę - - - - BBTCOView - - 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 - - Beat/Bassline %1 - Perkusja/Bas %1 - - - Clone of %1 - Kopia %1 - - - - BassBoosterControlDialog - - FREQ - FREQ - - - Frequency: - Częstotliwość: - - - GAIN - WZMC - - - Gain: - Wzmocnienie: - - - RATIO - WSPÓŁCZYNNIK - - - Ratio: - Współczynnik: - - - - BassBoosterControls - - Frequency - Częstotliwość - - - Gain - Wzmocnienie - - - Ratio - Współczynnik - - - - BitcrushControlDialog - - IN - WEJŚCIE - - - OUT - WYJŚCIE - - - GAIN - WZMC - - - Input Gain: - Wzmocnienie wejścia: - - - 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 - - - FREQ - FREQ - - - STEREO - STEREO - - - QUANT - - - - - CaptionMenu - + &Help &Pomoc - Help (not available) - Pomoc (niedostępna) + + Tool Bar + Pasek narzędzi - - - CarlaInstrumentView - Show GUI - Pokaż GUI + + Disk + Dysk - Click here to show or hide the graphical user interface (GUI) of Carla. - Kliknij tu, by pokazać lub ukryć interfejs graficzny wtyczki Carla. + + + Home + Strona główna - - - Controller - Controller %1 - Kontroler %1 + + Transport + Transport - - - ControllerConnectionDialog - Connection Settings - Ustawienia Połączenia + + Playback Controls + Sterowanie odtwarzaniem - MIDI CONTROLLER - KONTROLER MIDI + + Time Information + Informacje o czasie - Input channel - Kanał wejściowy + + Frame: + Ramka: - CHANNEL - KANAŁ - - - Input controller - Kontroler wejściowy - - - CONTROLLER - KONTROLER - - - Auto Detect - Autodetekcja - - - MIDI-devices to receive MIDI-events from - Urządzenia MIDI odbierające zdarzenia MIDI z - - - USER CONTROLLER - KONTROLER UŻYTKOWNIKA - - - MAPPING FUNCTION - FUNKCJA MAPOWANIA - - - OK - OK - - - Cancel - Anuluj - - - LMMS - LMMS - - - Cycle Detected. - Detekcja Cyklu. - - - - ControllerRackView - - Controller Rack - Rack Kontrolerów - - - Add - Dodaj - - - Confirm Delete - Potwierdź usunięcie - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Czy potwierdzić usunięcie? Występuje(ą) istniejące połączenie(a) związane z tym kontrolerem. Tej operacji nie da się cofnąć. - - - - ControllerView - - Controls - Ustaw - - - 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 - - - &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 2/3 Crossover: - Pasma 2/3 Przejście: - - - Band 3/4 Crossover: - Pasma 3/4 Przejście: - - - Band 1 Gain: - Kanał 1 wzm: - - - Band 2 Gain: - Kanał 2 wzm: - - - Band 3 Gain: - Kanał 3 wzm: - - - Band 4 Gain: - Kanał 4 wzm: - - - Band 1 Mute - Pasmo 1 Wyciszenie - - - Mute Band 1 - Wycisz Pasmo 1 - - - Band 2 Mute - Pasmo 2 Wyciszenie - - - Mute Band 2 - Wycisz Pasmo 2 - - - Band 3 Mute - Pasmo 3 Wyciszenie - - - Mute Band 3 - Wycisz Pasmo 3 - - - Band 4 Mute - Pasmo 4 Wyciszenie - - - Mute Band 4 - Wycisz Pasmo 4 - - - - DelayControls - - Delay Samples - Próbki Opóźnień - - - Feedback - Feedback - - - Lfo Frequency - Częstotliwość LFO - - - Lfo Amount - Ilość LFO - - - Output gain - Wzmocnienie wyścia - - - - 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 - - - FDBK - REAK - - - RATE - TEMPO - - - AMNT - ILOŚĆ - - - - 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 - - - - DualFilterControls - - Filter 1 enabled - Włączono filtr 1 - - - Filter 1 type - Rodzaj filtru 1 - - - Cutoff 1 frequency - Częstotliwość odcięcia 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 - - - Q/Resonance 2 - Q/Rezonans 2 - - - Gain 2 - Wzmocnienie 2 - - - LowPass - Dolnoprzepustowy - - - HiPass - Górnoprzepustowy - - - BandPass csg - Pasmowoprzepustowy csg - - - BandPass czpg - Pasmowoprzepustowy czpg - - - Notch - Pasmowozaporowy - - - Allpass - Wszechprzepustowy - - - Moog - Moog - - - 2x LowPass - 2xDolnoprzepustowy - - - RC LowPass 12dB - RC Dolnoprzepustowy 12dB - - - RC BandPass 12dB - RC Pasmowoprzepustowy 12dB - - - RC HighPass 12dB - RC Górnoprzepustowy 12dB - - - RC LowPass 24dB - RC Dolnoprzepustowy 24dB - - - RC BandPass 24dB - RC Pasmowoprzepustowy 24dB - - - RC HighPass 24dB - RC Górnoprzepustowy 24dB - - - Vocal Formant Filter - Filtr wokalno-formantowy - - - 2x Moog - 2x Moog - - - SV LowPass - SV Dolnoprzepustowy - - - SV BandPass - SV Pasmowoprzepustowy - - - SV HighPass - SV Górnoprzepustowy - - - SV Notch - SV Zaporowy - - - Fast Formant - Szybki Formant - - - Tripole - - - - - Editor - - Play (Space) - Odtwarzaj (spacja) - - - Stop (Space) - Zatrzymaj (spacja) - - - Record - Nagrywaj - - - Record while playing - Nagrywaj podczas odtwarzania - - - Transport controls - Ustawienia źródła - - - - Effect - - Effect enabled - Efekt włączony - - - Wet/Dry mix - Miksowanie Suchy/Mokry - - - Gate - Bramka - - - Decay - Zanikanie - - - - EffectChain - - Effects enabled - Efekty włączone - - - - EffectRackView - - EFFECTS CHAIN - ŁAŃCUCH EFEKTOWY - - - Add effect - Dodaj efekt - - - - EffectSelectDialog - - Add effect - Dodaj efekt - - - Name - Nazwa - - - Type - Rodzaj - - - Description - Opis - - - Author - Autor - - - - EffectView - - 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. + + 000'000'000 + 000'000'000 + 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. + + 00:00:00 + 00:00:00 - GATE - BRAM. + + BBT: + BBT: - Gate: - Bramka: + + 000|00|0000 + 000|00|0000 - 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. + + Settings + Ustawienia - Controls - Ustaw + + BPM + BPM - 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. + + Use JACK Transport + Użyj JACK transport - Move &up - Przemieść w &górę + + Use Ableton Link + Użyj Ableton Link - Move &down - Przemieść w &dół + + &New + &Nowy - &Remove this plugin - &Usuń tę wtyczkę + + Ctrl+N + Ctrl+N - - - EnvelopeAndLfoParameters - Predelay - Opóźnienie + + &Open... + &Otwórz... - Attack - Atak + + + Open... + Otwórz... - Hold - Przetrzymanie + + Ctrl+O + Ctrl+O - Decay - Zanikanie + + &Save + Zapi&sz - Sustain - Podtrzymanie + + Ctrl+S + Ctrl+S - Release - Wybrzmiewanie + + Save &As... + Z&apisz jako... - Modulation - Modulacja + + + Save As... + Zapisz jako... - LFO Predelay - Opóźnienie LFO + + Ctrl+Shift+S + Ctrl+Shift+S - LFO Attack - Atak LFO + + &Quit + Za&kończ - LFO speed - Szybkość LFO + + Ctrl+Q + Ctrl+Q - LFO Modulation - Modulacja LFO + + &Start + &Uruchom - LFO Wave Shape - Kształt fali LFO + + F5 + F5 - Freq x 100 - Częstotliwość x 100 + + St&op + &Zatrzymaj - Modulate Env-Amount - Współczynnik modulacji obwiedni + + F6 + F6 - - - EnvelopeAndLfoView - DEL - DEL + + &Add Plugin... + Dod&aj wtyczkę... - Predelay: - Opóźnienie: + + Ctrl+A + Ctrl+A - 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. + + &Remove All + &Usuń wszystko - ATT - ATT + + Enable + Włącz - Attack: - Atak: + + Disable + Wyłącz - 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. + + 0% Wet (Bypass) + 0% mokry (pomiń) - HOLD - HOLD + + 100% Wet + 100% mokry - Hold: - Przetrzymanie: + + 0% Volume (Mute) + 0% głośności (wyciszone) - 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. + + 100% Volume + 100% głośności - DEC - DEC + + Center Balance + Równowaga środkowa - Decay: - Zanikanie: + + &Play + &Odtwarzaj - 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. + + Ctrl+Shift+P + Ctrl+Shift+P - SUST - SUST + + &Stop + &Zatrzymaj - Sustain: - Podtrzymanie: + + Ctrl+Shift+X + Ctrl+Shift+X - 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. + + &Backwards + &Wstecz - REL - REL + + Ctrl+Shift+B + Ctrl+Shift+B - Release: - Wybrzmiewanie: + + &Forwards + &Dalej - 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. + + Ctrl+Shift+F + Ctrl+Shift+F - AMT - AMT + + &Arrange + &Aranżuj - Modulation amount: - Współczynnik modulacji: + + Ctrl+G + Ctrl+G - 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. + + + &Refresh + &Odśwież - LFO predelay: - Opóźnienie LFO: + + Ctrl+R + Ctrl+R - 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. + + Save &Image... + Zap&isz obraz... - LFO- attack: - Atak LFO: + + Auto-Fit + Autodopasowanie - 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. + + Zoom In + Powiększ - SPD - SPD + + Ctrl++ + Ctrl++ - LFO speed: - Szybkość LFO: + + Zoom Out + Pomniejsz - 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. + + Ctrl+- + Ctrl+- - 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). + + Zoom 100% + 100% powiększenia - Click here for a sine-wave. - Kliknij tutaj aby przełączyć na falę sinusoidalną. + + Ctrl+1 + Ctrl+1 - Click here for a triangle-wave. - Kliknij tutaj aby przełączyć na falę trójkątną. + + Show &Toolbar + &Pokaż pasek narzędzi - Click here for a saw-wave for current. - Kliknij tutaj aby przełączyć na falę piłokształtną. + + &Configure Carla + Konfiguruj &Carla - Click here for a square-wave. - Kliknij tutaj aby przełączyć na falę prostokątną. + + &About + O progr&amie - 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. + + About &JUCE + O &JUCE - FREQ x 100 - FREQ x 100 + + About &Qt + O &Qt - 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 - częstotliwość LFO razy 100 - - - 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 - - - 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ę. - - - - EqControls - - Input gain - Wzmocnienie wejścia - - - Output gain - Wzmocnienie wyścia - - - Low shelf gain - Wzmocnienie dolno półkowe - - - 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 - - - HP res - Rez HP - - - Low Shelf res - Rez. dolno półk. - - - 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. - - - LP res - LP rez - - - HP freq - Częst. HP - - - Low Shelf freq - Częst. dolno półk. - - - 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. - - - LP freq - Częst. LP - - - HP active - HP aktywny - - - Low shelf active - Dolno półk. aktywny - - - Peak 1 active - Szczyt 1 aktywny - - - Peak 2 active - Szczyt 2 aktywny - - - Peak 3 active - Szczyt 3 aktywny - - - Peak 4 active - Szczyt 4 aktywny - - - High shelf active - Górno półk. aktywny - - - LP active - LP aktywny - - - LP 12 - LP 12 - - - LP 24 - LP 24 - - - LP 48 - LP 48 - - - HP 12 - HP 12 - - - HP 24 - HP 24 - - - HP 48 - HP 48 - - - low pass type - rodzaj filtru dolnoprzepustowego - - - high pass type - rodzaj filtru wysokoprzepustowego - - - Analyse IN - Analizuj WEJŚCIE - - - Analyse OUT - Analizuj WYJŚCIE - - - - EqControlsDialog - - HP - HP - - - Low Shelf - Dolno półk. - - - Peak 1 - Szczyt 1 - - - Peak 2 - Szczyt 2 - - - Peak 3 - Szczyt 3 - - - Peak 4 - Szczyt 4 - - - High Shelf - Górno półk. - - - LP - LP - - - In Gain - Wzm. wejśc. - - - Gain - Wzmocnienie - - - Out Gain - Wzm. wyjśc. - - - Bandwidth: - Pasmo: - - - Resonance : - Rezonans: - - - Frequency: - Częstotliwość: - - - lp grp + + Show Canvas &Meters - hp grp + + Show Canvas &Keyboard - Octave - Oktawa + + Show Internal + Pokaż wewnętrzne + + + + Show External + Pokaż zewnętrzne + + + + Show Time Panel + Pokaż panel czasu + + + + Show &Side Panel + Pokaż panel &boczny + + + + Ctrl+P + Ctrl+P + + + + &Connect... + Połą&cz... + + + + Compact Slots + Zwiń sloty + + + + Expand Slots + Rozwiń sloty + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + Doda&j aplikację JACK... + + + + &Configure driver... + &Konfiguruj sterownik... + + + + Panic + Panika + + + + Open custom driver panel... + Otwórz niestandardowy panel sterownika... + + + + Save Image... (2x zoom) + Zapisz obraz... (2x powiększenie) + + + + Save Image... (4x zoom) + Zapisz obraz... (4x powiększenie) + + + + Copy as Image to Clipboard + Kopiuj jako obraz do schowka + + + + Ctrl+Shift+C + Ctrl+Shift+C - EqHandle + CarlaHostWindow - Reso: - Rezo: + + Export as... + Eksportuj jako... - BW: - Pasmo: + + + + + Error + Błąd - Freq: - Częst: + + Failed to load project + Nie udało się załadować projektu + + + + Failed to save project + Nie udało się zapisać projektu + + + + Quit + Zakończ + + + + Are you sure you want to quit Carla? + Na pewno chcesz opuścić Carla? + + + + Could not connect to Audio backend '%1', possible reasons: +%2 + Nie można połączyć się z backendem dźwięku „%1”. Możliwy powód: +%2 + + + + Could not connect to Audio backend '%1' + Nie można połączyć się z backendem dźwięku „%1” + + + + Warning + Ostrzeżenie + + + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + Niektóre wtyczki są nadal załadowane i należy je usunąć, aby zatrzymać działanie silnika. +Chcesz to zrobić teraz? + + + + CarlaSettingsW + + + Settings + Ustawienia + + + + main + główne + + + + canvas + płótno + + + + engine + silnik + + + + osc + osc + + + + file-paths + ścieżki-plików + + + + plugin-paths + ścieżki-wtyczek + + + + wine + wine + + + + experimental + eksperymentalne + + + + Widget + Widżet + + + + + Main + Główne + + + + + Canvas + Płótno + + + + + Engine + Silnik + + + + File Paths + Ścieżki plików + + + + 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 + + + + Use "Classic" as default rack skin + Użyj „Klasycznego” jako domyślnego skina racka + + + + Interface refresh interval: + Interwał odświeżania interfejsu: + + + + + ms + ms + + + + Show console output in Logs tab (needs engine restart) + Pokaż wyjście konsoli w zakładce logów (wymaga ponownego uruchomienia silnika) + + + + Show a confirmation dialog before quitting + Wyświetl okno dialogowe przed opuszczeniem programu + + + + + Theme + Motyw + + + + Use Carla "PRO" theme (needs restart) + Użyj motywu Carla „PRO” (wymaga ponownego uruchomienia) + + + + Color scheme: + Schemat kolorów: + + + + Black + Czarny + + + + System + Systemowy + + + + Enable experimental features + Włącz funkcje eksperymentalne + + + + <b>Canvas</b> + <b>Płótno</b> + + + + Bezier Lines + Linie Beziera + + + + Theme: + Motyw: + + + + Size: + Rozmiar: + + + + 775x600 + 775x600 + + + + 1550x1200 + 1550x1200 + + + + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 + 12400x9600 + + + + Options + Opcje + + + + Auto-hide groups with no ports + Autoukrywanie grup bez portów + + + + Auto-select items on hover + Autozaznaczanie elementów po najechaniu kursorem + + + + Basic eye-candy (group shadows) + + + + + Render Hints + Renderuj podpowiedzi + + + + Anti-Aliasing + Antyaliasing + + + + Full canvas repaints (slower, but prevents drawing issues) + Pełne ponowne malowanie płótna (wolniejsze, ale zapobiegające problemom z rysowaniem) + + + + <b>Engine</b> + <b>Silnik</b> + + + + + Core + Rdzeń + + + + Single Client + Pojedynczy klient + + + + Multiple Clients + Wielu klientów + + + + + Continuous Rack + Rack ciągły + + + + + Patchbay + Patchbay + + + + Audio driver: + Sterownik dźwięku: + + + + Process mode: + Tryb przetwarzania: + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + Maksymalna liczba parametrów dozwolonych w wbudowanym oknie dialogowym „Edycja” + + + + Max Parameters: + Maksymalne parametry: + + + + ... + ... + + + + Reset Xrun counter after project load + Resetuj licznik Xrun po załadowaniu projektu + + + + Plugin UIs + Interfejsy użytkownika wtyczek + + + + + How much time to wait for OSC GUIs to ping back the host + Ile czasu należy czekać, aż graficzne interfejsy użytkownika OSC wyślą polecenie ping do hosta + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + Użyj mostków OSC graficznego interfejsu użytkownika w miarę możliwości, oddzielając w ten sposób interfejs użytkownika od kodu DSP + + + + Use UI bridges instead of direct handling when possible + Użyj mostków interfejsu użytkownika w marę możliwości zamiast obsługi bezpośredniej + + + + Make plugin UIs always-on-top + Zrób interfejsy użytkownika wtyczek zawsze widocznymi + + + + Make plugin UIs appear on top of Carla (needs restart) + Zrób interfejsy użytkownika wtyczek na górze Carla (wymaga ponownego uruchomienia) + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + Uwaga: Interfejsy użytkownika wtyczki-mostka nie mogą być zarządzane przez Carla w systemie macOS + + + + + Restart the engine to load the new settings + Uruchom ponownie silnik, aby załadować nowe ustawienia + + + + <b>OSC</b> + <b>OSC</b> + + + + Enable OSC + Włącz OSC + + + + Enable TCP port + Włącz port TCP + + + + + Use specific port: + Użyj określonego portu: + + + + Overridden by CARLA_OSC_TCP_PORT env var + Nadpisane przez zmienną CARLA_OSC_TCP_PORT + + + + + Use randomly assigned port + Użyj losowo przypisanego portu + + + + Enable UDP port + Włącz port UDP + + + + Overridden by CARLA_OSC_UDP_PORT env var + Nadpisane przez zmienną CARLA_OSC_UDP_PORT + + + + DSSI UIs require OSC UDP port enabled + Interfejsy użytkownika DSSI wymagają włączonego portu OSC UDP + + + + <b>File Paths</b> + <b>Ścieżki plików</b> + + + + Audio + Dźwięk + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + Używany do wtyczki „audiofile” + + + + Used for the "midifile" plugin + Używany do wtyczki „midifile” + + + + + Add... + Dodaj... + + + + + Remove + Usuń + + + + + Change... + Zmień... + + + + <b>Plugin Paths</b> + <b>Ścieżki wtyczek</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + JSFX + JSFX + + + + CLAP + CLAP + + + + Restart Carla to find new plugins + Uruchom ponownie Carla, aby znaleźć nowe wtyczki + + + + <b>Wine</b> + <b>Wine</b> + + + + Executable + Wykonywalne + + + + Path to 'wine' binary: + Ścieżka do pliku binarnego „wine”: + + + + Prefix + Przedrostek + + + + Auto-detect Wine prefix based on plugin filename + Autowykrywanie przedrostka Wine w oparciu o nazwę pliku wtyczki + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + Priorytet w czasie rzeczywistym + + + + Base priority: + Podstawowy priorytet: + + + + WineServer priority: + Priorytet WineServer: + + + + These options are not available for Carla as plugin + Te opcje nie są dostępne dla Carla jako wtyczki + + + + <b>Experimental</b> + <b>Eksperymentalne</b> + + + + Experimental options! Likely to be unstable! + Opcje eksperymentalne! Mogą być niestabilne! + + + + Enable plugin bridges + Włącz mostki wtyczek + + + + Enable Wine bridges + Włącz mostki Wine + + + + Enable jack applications + Włącz aplikacje JACK + + + + Export single plugins to LV2 + Eksportuj pojedyncze wtyczki do LV2 + + + + Use system/desktop-theme icons (needs restart) + Użyj ikon systemowych/motywu pulpitu (wymaga ponownego uruchomienia) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + Załaduj zaplecze Carla w ogólnej przestrzeni nazw (NIEZALECANE) + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + Użyj OpenGL do renderowania (wymaga ponownego uruchomienia) + + + + High Quality Anti-Aliasing (OpenGL only) + Antyaliasing wysokiej jakości (tylko OpenGL) + + + + Render Ardour-style "Inline Displays" + Renderuj „Inline Displays” w stylu Ardour + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + Wymuś wtyczki mono jako stereo, uruchamiając 2 instancje jednocześnie. +Ten tryb nie jest dostępny dla wtyczek VST. + + + + Force mono plugins as stereo + Wymuś wtyczki mono jako stereo + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + Po włączeniu tej opcji Carla spróbuje uniemożliwić wtyczkom wykonywanie czynności, które mogą zakłócić dźwięk lub powodować błędy xruns, tj. fork(), gtk_init() i podobne. + + + + Prevent unsafe calls from plugins (needs restart) + Zapobiegaj niebezpiecznym wywołaniom z wtyczek (wymaga ponownego uruchomienia) + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + Uruchom wtyczki w oddzielnym procesie. Jeśli się zawieszą, nie wpłynie to na Carla. +W takich przypadkach wtyczki są automatycznie dezaktywowane. +Reaktywuj je, aby ponownie uruchomić proces, stosując do niego ostatni zapisany stan. + + + + Run plugins in bridge mode when possible + W miarę możliwości uruchamiaj wtyczki w trybie mostka + + + + + + + Add Path + Dodaj ścieżkę + + + + Dialog + + + Carla Control - Connect + Kontrola Carla - Połącz + + + + Remote setup + Konfiguracja zdalna + + + + UDP Port: + Port UDP: + + + + Remote host: + Host zdalny: + + + + TCP Port: + Port TCP: + + + + Set value + Ustaw wartość + + + + TextLabel + EtykietaTekstowa + + + + Scale Points + Punkty skali + + + + 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 + Pokaż panel sterowania sterownika + + + + Restart the engine to load the new settings + Uruchom ponownie silnik, aby załadować nowe ustawienia ExportProjectDialog + Export project Eksportuj projekt - Output - Wyjście + + Export as loop (remove extra bar) + Eksportuj jako pętlę (usuń dodatkowy takt) + + Export between loop markers + Eksportuj między znacznikami pętli + + + + Render Looped Section: + Renderuj zapętloną sekcję: + + + + time(s) + raz(y) + + + + File format settings + Ustawienia formatu pliku + + + File format: Format pliku: - Samplerate: + + 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 - 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: + + Bit depth: Rozdzielczość bitowa: - 16 Bit Integer - 16 Bit Integer + + 16 Bit integer + 16-bitowa liczba całkowita - 32 Bit Float - 32 Bit Float + + 24 Bit integer + 24-bitowa liczba całkowita - 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 between loop markers - Eksportuj pomiędzy znacznikami pętli - - - 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 - - - Use variable bitrate - Użyj zmiennej przepływności + + 32 Bit float + 32-bitowy float + Stereo mode: Tryb stereo: - Stereo - Stereo - - - Joint Stereo - - - + Mono Mono + + Stereo + Stereo + + + + Joint stereo + Połączone stereo + + + Compression level: Poziom kompresji: - (fastest) - (najszybszy) + + Bitrate: + Bitrate: - (default) - (domyślny) + + 64 KBit/s + 64 KBit/s - (smallest) - (najdokładniejszy) + + 128 KBit/s + 128 KBit/s - - - Expressive - Selected graph - Zaznaczony graf + + 160 KBit/s + 160 KBit/s - A1 - + + 192 KBit/s + 192 KBit/s - A2 - + + 256 KBit/s + 256 KBit/s - A3 - + + 320 KBit/s + 320 KBit/s - W1 smoothing - + + Use variable bitrate + Użyj zmiennego bitrate’u - W2 smoothing - + + Quality settings + Ustawienia jakości - W3 smoothing - + + Interpolation: + Interpolacja: - PAN1 - + + Zero order hold + Interpolator rzędu zerowego - PAN2 - + + Sinc worst (fastest) + Sinc najgorsza (najszybsza) - REL TRANS - + + Sinc medium (recommended) + Sinc średnia (zalecana) - - - Fader - Please enter a new value between %1 and %2: - Wprowadź nową wartość pomiędzy %1 a %2: + + Sinc best (slowest) + Sinc najlepsza (najwolniejsza) - - - FileBrowser - Browser - Przeglądarka + + Start + Uruchom - Search - Szukaj - - - Refresh list - Odśwież listę - - - - 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 - - - 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 - - - file - plik - - - - FlangerControls - - Delay Samples - Opóźnienie próbek - - - Lfo Frequency - Częstotliwość LFOczę - - - Seconds - Sekundy - - - Regen - - - - Noise - Szum - - - Invert - Odwróć - - - - FlangerControlsDialog - - Delay Time: - Czas opóźnienia: - - - Feedback Amount: - Ilość reakcji: - - - White Noise Amount: - Ilość białego szumu: - - - DELAY - OPÓŹN - - - RATE - TEMPO - - - AMNT - ILOŚĆ - - - Amount: - Ilość: - - - FDBK - REAK - - - NOISE - SZUM - - - Invert - OdwróćOd - - - Period: - Odstętp: - - - - FxLine - - 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 - - - - FxMixer - - Master - Master - - - FX %1 - FX %1 - - - Volume - Głośność - - - Mute - Wycisz - - - Solo - Solo - - - - FxMixerView - - FX-Mixer - FX-Mixer - - - FX Fader %1 - Fader FX %1 - - - Mute - Wycisz - - - Mute this FX channel - Wycisz ten kanał FX - - - Solo - Solo - - - Solo FX channel - Kanał FX solo - - - - FxRoute - - Amount to send from channel %1 to channel %2 - Ilość do wysyłania z kanału %1 do kanału %2 - - - - GigInstrument - - Bank - Bank - - - Patch - Próbka - - - Gain - Wzmocnienie - - - - GigInstrumentView - - Open 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 - - - GIG Files (*.gig) - Pliki GIG (*.gig) - - - - GuiApplication - - Working directory - Katalog roboczy - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Katalog roboczy LMMS %1 nie istnieje. Czy chcesz go utworzyć? Możesz zmienić katalog później w ustawieniach. - - - Preparing UI - Przygotowywanie interfejsu - - - Preparing song editor - Przygotowywanie edytora utworu - - - Preparing mixer - Przygotowywanie miksera - - - Preparing controller rack - Przygotowanie rack'a kontrolerów - - - Preparing project notes - Przygotowanie notatki projektu - - - Preparing beat/bassline editor - Przygotowanie edytora perkusji/basu - - - Preparing piano roll - Przygotowanie edytora pianolowego - - - Preparing automation editor - Przygotowanie edytora automatyki - - - - InstrumentFunctionArpeggio - - Arpeggio - Arpeggio - - - Arpeggio type - Rodzaj arpeggio - - - Arpeggio range - Zakres arpeggio - - - 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ół - - - Random - Losowo - - - Free - Dowolnie - - - Sort - Posortowany - - - Sync - Synchronizacja - - - Down and up - W dół i w górę - - - Skip rate - Częstotliwość pominięcia - - - Miss rate - Częstotliwość opuszczania - - - Cycle steps - Kroki cyklu - - - - 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. - - - TIME - OKRES - - - 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ę. - - - 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. + + Cancel + Anuluj InstrumentFunctionNoteStacking + octave oktawa + + Major Major + Majb5 Majb5 + minor minor + minb5 minb5 + sus2 sus2 + sus4 sus4 + aug aug + augsus4 augsus4 + tri tri + 6 6 + 6sus4 6sus4 + 6add9 6add9 + m6 m6 + m6add9 m6add9 + 7 7 + 7sus4 7sus4 + 7#5 7#5 + 7b5 7b5 + 7#9 7#9 + 7b9 7b9 + 7#5#9 7#5#9 + 7#5b9 7#5b9 + 7b5b9 7b5b9 + 7add11 7add11 + 7add13 7add13 + 7#11 7#11 + Maj7 Maj7 + Maj7b5 Maj7b5 + Maj7#5 Maj7#5 + Maj7#11 Maj7#11 + Maj7add13 Maj7add13 + m7 m7 + m7b5 m7b5 + m7b9 m7b9 + m7add11 m7add11 + m7add13 m7add13 + m-Maj7 m-Maj7 + m-Maj7add11 m-Maj7add11 + m-Maj7add13 m-Maj7add13 + 9 9 + 9sus4 9sus4 + add9 add9 + 9#5 9#5 + 9b5 9b5 + 9#11 9#11 + 9b13 9b13 + Maj9 Maj9 + Maj9sus4 Maj9sus4 + Maj9#5 Maj9#5 + Maj9#11 Maj9#11 + m9 m9 + madd9 madd9 + m9b5 m9b5 + m9-Maj7 m9-Maj7 + 11 11 + 11b9 11b9 + Maj11 Maj11 + m11 m11 + m-Maj11 m-Maj11 + 13 13 + 13#9 13#9 + 13b9 13b9 + 13b5b9 13b5b9 + Maj13 Maj13 + m13 m13 + m-Maj13 m-Maj13 + Harmonic minor - Minorowy harmoniczny + Molowa harmoniczna + Melodic minor - Minorowy melodyjny + Molowa melodyczna + Whole tone - Cały ton + Całotonowa + Diminished - Zmniejszony + Zmniejszona + Major pentatonic - Majorowy pentatoniczny + Pentatonika durowa + Minor pentatonic - Minorowy pentatoniczny + Pentatonika molowa + Jap in sen Jap in sen + Major bebop - Majorowy bebop + Bebopowa durowa + Dominant bebop - Dominujący bebop + Bebopowa dominantowa + Blues - Blues + Bluesowa + Arabic - Arabski + Arabska + Enigmatic - Enigmatyczny + Enigmatyczna + Neopolitan - Neopolitański + Neopolitańska + Neopolitan minor - Minorowy neapolitański + Neapolitańska molowa + Hungarian minor - Minorowy węgierski + Węgierska molowa + Dorian - Dorycki + Dorycka - Phrygolydian - Frygolidyjski + + Phrygian + Frygijska + Lydian - Lidyjski + Lidyjska + Mixolydian - Miksolidyjski + Miksolidyjska + Aeolian - Eolski + Eolska + Locrian - Lokrycki - - - Chords - Akordy - - - Chord type - Typ akordu - - - Chord range - Zakres akordu + Lokrycka + Minor - Minor + Molowa + Chromatic - Chromatyczny + Chromatyczna + Half-Whole Diminished - Półton-Cały ton Zmniejszony + Półton-cały ton zmniejszona + 5 5 + Phrygian dominant - Frygijski dominujący + Frygijska dominantowa + Persian - Perski - - - - 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: - - - - InstrumentMidiIOView - - ENABLE MIDI INPUT - WŁĄCZ WEJŚCIE MIDI - - - CHANNEL - KANAŁ - - - VELOCITY - PRĘDKOŚĆ - - - ENABLE MIDI OUTPUT - WŁĄCZ WYJŚCIE MIDI - - - PROGRAM - PROGRAM - - - 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% - - - BASE VELOCITY - GŁOŚNOŚĆ PODSTAWY - - - - InstrumentMiscView - - MASTER PITCH - ODSTROJENIE GŁÓWNE - - - Enables the use of Master Pitch - Umożliwia użycie Odstrojenia Głównego + Perska InstrumentSoundShaping + VOLUME GŁOŚNOŚĆ + Volume Głośność + CUTOFF - CUTOFF + ODETNIJ + Cutoff frequency Częstotliwość graniczna + RESO - RESO + REZO + Resonance - Zafalowanie charakterystyki - - - Envelopes/LFOs - Obwiednie/Oscylatory LFO - - - Filter type - Rodzaj filtru - - - Q/Resonance - Dobroć/Zafalowanie charakterystyki - - - LowPass - Dolnoprzepustowy - - - HiPass - Górnoprzepustowy - - - BandPass csg - Pasmowoprzepustowy csg - - - BandPass czpg - Pasmowoprzepustowy czpg - - - Notch - Pasmowozaporowy - - - Allpass - Wszechprzepustowy - - - Moog - Moog - - - 2x LowPass - 2xDolnoprzepustowy - - - RC LowPass 12dB - RC Dolnoprzepustowy 12dB - - - RC BandPass 12dB - RC Pasmowoprzepustowy 12dB - - - RC HighPass 12dB - RC Górnoprzepustowy 12dB - - - RC LowPass 24dB - RC Dolnoprzepustowy 24dB - - - RC BandPass 24dB - RC Pasmowoprzepustowy 24dB - - - RC HighPass 24dB - RC Górnoprzepustowy 24dB - - - Vocal Formant Filter - Filtr wokalno-formantowy - - - 2x Moog - 2x Moog - - - SV LowPass - SV Dolnoprzepustowy - - - SV BandPass - SV Pasmowoprzepustowy - - - SV HighPass - SV Górnoprzepustowy - - - SV Notch - SV Zaporowy - - - Fast Formant - Szybki Formant - - - Tripole - + Rezonans - InstrumentSoundShapingView + JackAppDialog - TARGET - TARGET + + Add JACK Application + Dodaj aplikację JACK - 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! + + Note: Features not implemented yet are greyed out + Uwaga: Funkcje, które nie zostały jeszcze zaimplementowane, są wyszarzone - FILTER - FILTR + + Application + Aplikacja - 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. + + Name: + Nazwa: - Hz - Hz + + Application: + Aplikacja: - 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... + + From template + Z szablonu - RESO - RESO + + Custom + Niestandardowy - Resonance: - Zafalowanie charakterystyki: + + Template: + Szablon: - 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. + + Command: + Polecenie: - FREQ - FREQ + + Setup + Konfiguracja - cutoff frequency: - częstotliwość graniczna: + + Session Manager: + Menedżer sesji: - Envelopes, LFOs and filters are not supported by the current instrument. - Obwiednie, LFO oraz filtry nie są wspierane przez ten instrument. - - - - InstrumentTrack - - unnamed_track - nienazwana ścieżka + + None + Brak - Volume - Głośność + + Audio inputs: + Wejścia dźwięku: - Panning - Panoramowanie + + MIDI inputs: + Wejścia MIDI: - Pitch - Odstrojenie + + Audio outputs: + Wyjścia dźwięku: - FX channel - Kanał FX + + MIDI outputs: + Wyjścia MIDI: - Default preset - Ustawienia domyślne + + Take control of main application window + Przejmij kontrolę nad głównym oknem aplikacji - 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. + + Workarounds + Progi - Base note - Nuta bazowa + + Wait for external application start (Advanced, for Debug only) + Poczekaj na uruchomienie aplikacji zewnętrznej (zaawansowane, tylko do debugowania) - Pitch range - Zakres odstrojenia + + Capture only the first X11 Window + Przechwyć tylko pierwsze X11 Window - Master Pitch - Odstrojenie główne - - - - InstrumentTrackView - - Volume - Głośność + + Use previous client output buffer as input for the next client + Użyj poprzedniego bufora wyjściowego klienta jako danych wejściowych dla następnego klienta - Volume: - Głośność: - - - VOL - VOL - - - Panning - Panoramowanie - - - Panning: - Panoramowanie: - - - PAN - PAN - - - MIDI - MIDI - - - Input - Wejście - - - Output - Wyjście - - - FX %1: %2 - FX %1: %2 - - - - InstrumentTrackWindow - - GENERAL SETTINGS - GŁÓWNE USTAWIENIA - - - Instrument volume - Głośność instrumentu - - - 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 - - - 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 + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index - Chord stacking & arpeggio - + + Error here + Błąd tutaj - Effects - Efekty + + NSM applications cannot use abstract or absolute paths + Aplikacje NSM nie mogą używać ścieżek abstrakcyjnych ani bezwzględnych - MIDI settings - Ustawienia MIDI + + NSM applications cannot use CLI arguments + Aplikacje NSM nie mogą używać argumentów CLI - Miscellaneous - Różne - - - Plugin - Wtyczka + + You need to save the current Carla project before NSM can be used + Musisz zapisać bieżący projekt Carla, zanim użyjesz NSM - Knob + JuceAboutW - 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: - - - 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: + + This program uses JUCE version %1. + Ten program używa JUCE w wersji %1. - LadspaControl + MidiPatternW - Link channels - Połącz kanały + + MIDI Pattern + Szablon MIDI - - - LadspaControlDialog - Link Channels - Połącz kanały + + Time Signature: + Oznaczenie metryczne: - Channel - Kanał + + + + 1/4 + 1/4 - - - LadspaControlView - Link channels - Połącz kanały + + 2/4 + 2/4 - Value: - Wartość: + + 3/4 + 3/4 - Sorry, no help available. - Przepraszamy, pomoc jest niedostępna. + + 4/4 + 4/4 - - - LadspaEffect - Unknown LADSPA plugin %1 requested. - Nieznana wtyczka LADSPA %1 żądanie. + + 5/4 + 5/4 - - - LcdSpinBox - Please enter a new value between %1 and %2: - Wprowadź nową wartość pomiędzy %1 a %2: + + 6/4 + 6/4 - - - LeftRightNav - Previous - Poprzedni + + Measures: + Takty: - Next - Następny + + + + 1 + 1 - Previous (%1) - Poprzedni (%1) + + 2 + 2 - Next (%1) - Następny (%1) + + 3 + 3 - - - LfoController - LFO Controller - Kontroler LFO + + 4 + 4 - Base value - Wartość bazowa + + 5 + 5 - Oscillator speed - Prędkość oscylatora + + 6 + 6 - Oscillator amount - Współczynnik oscylatora + + 7 + 7 - Oscillator phase - Faza oscylatora + + 8 + 8 - Oscillator waveform - Kształt fali oscylatora + + 9 + 9 - Frequency Multiplier - Mnożnik częstotliwości + + 10 + 10 - - - LfoControllerDialog - LFO - LFO + + 11 + 11 - LFO Controller - Kontroler LFO + + 12 + 12 - BASE - BASE + + 13 + 13 - Base amount: - Współczynnik bazowy: + + 14 + 14 - todo - do zrobienia + + 15 + 15 - SPD - SPD + + 16 + 16 - LFO-speed: - Prędkość LFO: + + Default Length: + Długość domyślna: - 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. + + + 1/16 + 1/16 - Modulation amount: - Współczynnik modulacji: + + + 1/15 + 1/15 - 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ą). + + + 1/12 + 1/12 - PHS - PHS + + + 1/9 + 1/9 - Phase offset: - Przesunięcie fazowe: + + + 1/8 + 1/8 - degrees - stopni(e) + + + 1/6 + 1/6 - 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. + + + 1/3 + 1/3 - Click here for a sine-wave. - Kliknij tutaj aby przestawić kształt fali na sinusoidalny. + + + 1/2 + 1/2 - Click here for a triangle-wave. - Kliknij tutaj aby przestawić kształt fali na trójkątny. - - - Click here for a saw-wave. - Kliknij tutaj aby przestawić kształt fali na piłokształtny. - - - Click here for a square-wave. - Kliknij tutaj aby przestawić kształt fali na prostokątny. - - - Click here for an exponential wave. - Kliknij tutaj aby przestawić kształt fali na wykładniczy. - - - Click here for white-noise. - Kliknij tutaj aby przestawić kształt fali na stochastyczny. - - - Click here for a 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. - - - AMNT - ILOŚĆ - - - - LmmsCore - - Generating wavetables - Generowanie tabel próbek dźwiękowych - - - Initializing data structures - Inicjalizacja struktur danych - - - Opening audio and midi devices - Otwieranie urządzeń audio i midi - - - Launching mixer threads - Uruchamianie wątków miksera - - - - MainWindow - - &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 + + Quantize: + Kwantyzuj: + &File &Plik - &Recently Opened Projects - &Ostatnio Otwierane Projekty + + &Edit + &Edycja - Save as New &Version - Zapisz jako Nową &Wersję + + &Quit + Za&kończ - E&xport Tracks... - Eksportuj Ścieżki... + + Esc + Esc - Online Help - Pomoc Online + + &Insert Mode + Tryb wstaw&iania - What's This? - Co to jest? + + F + F - Open Project - Otwórz Projekt + + &Velocity Mode + &Tryb głośności - Save Project - Zapisz Projekt + + D + D - Project recovery - Odzyskiwanie projektu + + Select All + Zaznacz wszystkie - 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? + + A + A + + + + PatchesDialog + + + + Qsynth: Channel Preset + Qsynth: preset kanału - Recover - Odzyskaj + + + Bank selector + Selektor banku - Recover the file. Please don't run multiple instances of LMMS when you do this. - Odzyskaj plik. Podczas tego nie uruchamiaj wielu okien LMMS. + + + Bank + Bank - Discard - Odrzuć + + + Program selector + Selektor programu - 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ąć. + + + Patch + Próbka - Preparing plugin browser - Przygotowanie wyszukiwarki wtyczek + + + Name + Nazwa - Preparing file browsers - Przygotowanie wyszukiwarki plików + + + OK + OK - Root directory - Katalog główny + + + Cancel + Anuluj + + + + PluginBrowser + + + no description + brak opisu - Loading background artwork - Ładowanie grafiki tła + + A native amplifier plugin + Natywna wtyczka wzmacniacza - New from template - Nowy z szablonu + + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + Prosty sampler z licznymi ustawieniami dla próbek (np. perkusji) w ścieżce instrumentu - Save as default template - Zapisz jako domyślny szablon + + Boost your bass the fast and simple way + Łatwo i szybko podbij bas - &View - &Podgląd + + Customizable wavetable synthesizer + Konfigurowalny syntezator tablicowy - Toggle metronome - Włącz metronom + + An oversampling bitcrusher + Nadpróbkowanie bitcrusher - Show/hide Song-Editor - Pokaż/ukryj Edytor Kompozycji + + Carla Patchbay Instrument + Instrument Carla Patchbay - Show/hide Beat+Bassline Editor - Pokaż/ukryj Edytor Perkusji i Basu + + Carla Rack Instrument + Instrument Carla Rack - Show/hide Piano-Roll - Pokaż/ukryj Edytor Pianolowy + + A dynamic range compressor. + Kompresor o dynamicznym zakresie - Show/hide Automation Editor - Pokaż/ukryj Edytor Automatyki + + A 4-band Crossover Equalizer + 4-zakresowy korektor krzyżowy - Show/hide FX Mixer - Pokaż/ukryj Mikser Efektów + + A native delay plugin + Natywna wtyczka opóźnienia - Show/hide project notes - Pokaż/ukryj notatki do projektu + + A Dual filter plugin + Wtyczka podwójnego filtra - Show/hide controller rack - Pokaż/ukryj rack kontrolerów + + plugin for processing dynamics in a flexible way + Wtyczka do przetwarzania dynamiki w elastyczny sposób - Recover session. Please save your work! - Odzyskana sesja. Zapisz swoją pracę! + + A native eq plugin + Natywna wtyczka korektora graficznego - Recovered project not saved - Odzyskany projekt nie zapisany + + A native flanger plugin + Natywna wtyczka flangera - 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ć? + + Emulation of GameBoy (TM) APU + Emulator układu APU GameBoy’a (TM) - LMMS Project - Projekt LMMS + + Player for GIG files + Odtwarzacz plików GIG - LMMS Project Template - Szablon projektu LMMS + + Filter for importing Hydrogen files into LMMS + Filtr importujący pliki Hydrogen do LMMS - Overwrite default template? - Czy zastąpić domyślny szablon? + + Versatile drum synthesizer + Wszechstronny syntezator perkusyjny - This will overwrite your current default template. - Spowoduje to zastąpienie bieżącego domyślnego szablonu. + + List installed LADSPA plugins + Pokaż zainstalowane wtyczki LADSPA - Smooth scroll - Płynne przewijanie + + plugin for using arbitrary LADSPA-effects inside LMMS. + Wtyczka umożliwiająca załadowanie dowolnego efektu LADSPA wewnątrz LMMS - Enable note labels in piano roll - Włącz etykiety nut w edytorze pianolowym. + + Incomplete monophonic imitation TB-303 + Niezupełna monofoniczna emulacja syntezatora TB-303 - Save project template - Zapisz szablon projektu + + plugin for using arbitrary LV2-effects inside LMMS. + Wtyczka pozwalająca na korzystanie z efektów LV2 w LMMS - Volume as dBFS - Głośność jako dBFS + + plugin for using arbitrary LV2 instruments inside LMMS. + Wtyczka pozwalająca na korzystanie z instrumentów LV2 w LMMS - Could not open file - Nie można otworzyć pliku + + Filter for exporting MIDI-files from LMMS + Filtr do eksportowania plików MIDI z LMMS - 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! + + Filter for importing MIDI-files into LMMS + Filtr do importowania plików MIDI do LMMS - Export &MIDI... + + Monstrous 3-oscillator synth with modulation matrix + Potworny 3-oscylatorowy syntezator z macierzą modulacji + + + + A multitap echo delay plugin + + + + + A NES-like synthesizer + Syntezator odwzorowujący NES-a + + + + 2-operator FM Synth + 2-operatorowy syntezator FM + + + + Additive Synthesizer for organ-like sounds + Syntezator Addytywny umożliwiający tworzenie dźwięków zbliżonych brzmieniem do organów + + + + GUS-compatible patch instrument + + + + + Plugin for controlling knobs with sound peaks + Wtyczka do kontrolowania pokręteł za pośrednictwem szczytów dźwięku + + + + Reverb algorithm by Sean Costello + Algorytm pogłosu Seana Costello + + + + Player for SoundFont files + Odtwarzacz plików SoundFont + + + + LMMS port of sfxr + Port sxfr dla LMMS + + + + Emulation of the MOS6581 and MOS8580 SID. +This chip was used in the Commodore 64 computer. + Emulator układu dźwiękowego SID MOS6581 i MOS8580 +Te układy scalone były stosowane w komputerach Commodore 64 + + + + A graphical spectrum analyzer. + Graficzny podgląd spektrum + + + + Plugin for enhancing stereo separation of a stereo input file + Wtyczka rozszerzająca bazę stereo + + + + Plugin for freely manipulating stereo output + Wtyczka do nieograniczonego manipulowania wyjściami stereo + + + + Tuneful things to bang on + Melodyjny instrument pałeczkowy + + + + Three powerful oscillators you can modulate in several ways + Trzy potężne oscylatory, które możesz modulować na kilka sposobów + + + + A stereo field visualizer. + Wizualizator pola stereo + + + + VST-host for using VST(i)-plugins within LMMS + Host VST pozwalający na użycie wtyczek VST(i) w LMMS + + + + Vibrating string modeler + Symulator drgającej struny + + + + plugin for using arbitrary VST effects inside LMMS. + Wtyczka pozwalająca na korzystanie z efektów VST w LMMS + + + + 4-oscillator modulatable wavetable synth + 4-oscylatorowy modularny syntezator tablicowy + + + + plugin for waveshaping + Wtyczka kształtująca falę + + + + Mathematical expression parser + Instrument przetwarzający wyrażenia matematyczne + + + + Embedded ZynAddSubFX + Wbudowany syntezator ZynAddSubFX + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + Wtyczka kompresji wielopasmowej w górę/w dół oparta na tajemniczym bogu starożytności, LOMMUSIE. + + + + Basic Slicer + + + + + Tap to the beat + Stukaj w rytm + + + + PluginEdit + + + Plugin Editor + Edytor wtyczek + + + + Edit + Edycja + + + + Control + + + + + MIDI Control Channel: + Kanał sterowania MIDI: + + + + N + N + + + + Output dry/wet (100%) + Głośność sucha/mokra (100%) + + + + Output volume (100%) + Głośność wyjściowa (100%) + + + + Balance Left (0%) + Równowaga lewego (0%) + + + + + Balance Right (0%) + Równowaga prawego (0%) + + + + Use Balance + Użyj równowagi + + + + Use Panning + Użyj panoramowania + + + + Settings + Ustawienia + + + + Use Chunks + Użyj fragmentów + + + + Audio: + Dźwięk: + + + + Fixed-Size Buffer + Bufor o stałym rozmiarze + + + + Force Stereo (needs reload) + Wymuś stereo (wymaga ponownego załadowania) + + + + MIDI: + MIDI: + + + + Map Program Changes + Zmiany programu mapowania + + + + Send Notes + Wyślij nuty + + + + Send Bank/Program Changes + Wyślij zmiany banku/programu + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + Wyślij pitchbend + + + + Send All Sound/Notes Off + Wyślij wszystkie dźwięki/nuty wyłączone + + + + +Plugin Name + + +Nazwa wtyczki + + + + + Program: + Program: + + + + MIDI Program: + Program MIDI: + + + + Save State + Zapisz stan + + + + Load State + Załaduj stan + + + + Information + Informacje + + + + Label/URI: + Etykieta/URI: + + + + Name: + Nazwa: + + + + Type: + Typ: + + + + Maker: + Twórca: + + + + Copyright: + Prawa autorskie: + + + + Unique ID: - MeterDialog + PluginFactory - Meter Numerator - Numerator Metryczny + + Plugin not found. + Nie znaleziono wtyczki. - Meter Denominator - Denominator Metryczny - - - TIME SIG - METRUM + + LMMS plugin %1 does not have a plugin descriptor named %2! + Wtyczka LMMS %1 nie ma deskryptora wtyczki nazwanego %2! - MeterModel + PluginListDialog + + Carla - Add New + Carla - Dodaj nowy + + + + Requirements + Wymagania + + + + With Custom GUI + Z niestandardowym graficznym interfejsem użytkownika + + + + With CV Ports + Z portami CV + + + + Real-time safe only + Tylko w czasie rzeczywistym + + + + Stereo only + Tylko stereo + + + + With Inline Display + Z wyświetlaczem liniowym + + + + Favorites only + Tylko ulubione + + + + (Number of Plugins go here) + (Tutaj znajdziesz liczbę wtyczek) + + + + &Add Plugin + Dod&aj wtyczkę + + + + Cancel + Anuluj + + + + Refresh + Odśwież + + + + Reset filters + Resetuj filtry + + + + + + + + + + + + + + + + + + + TextLabel + EtykietaTekstowa + + + + Format: + Format: + + + + Architecture: + Architektura: + + + + Type: + Typ: + + + + MIDI Ins: + Wej. MIDI: + + + + Audio Ins: + Wej. dźwięku: + + + + CV Outs: + Wyj. CV: + + + + MIDI Outs: + Wyj. MIDI: + + + + Parameter Ins: + Wej. parametru: + + + + Parameter Outs: + Wyj. parametru: + + + + Audio Outs: + Wyj. dźwięku: + + + + CV Ins: + Wej. CV: + + + + UniqueID: + + + + + Has Inline Display: + Posiada wyświetlacz liniowy: + + + + Has Custom GUI: + Posiada niestandardowy graficzny interfejs użytkownika: + + + + Is Synth: + Jest syntezatorem: + + + + Is Bridged: + Jest mostkowane: + + + + Information + Informacje + + + + Name + Nazwa + + + + Label/Id/URI + + + + + Maker + Twórca + + + + Binary/Filename + Binarny/nazwa pliku + + + + Format + Format + + + + Internal + Wewnętrzne + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + CLAP + CLAP + + + + AU + AU + + + + JSFX + JSFX + + + + Sound Kits + Zestawy dźwięków + + + + Type + Typ + + + + Effects + Efekty + + + + Instruments + Instrumenty + + + + MIDI Plugins + Wtyczki MIDI + + + + Other/Misc + Inne/różne + + + + Category + Kategoria + + + + All + Wszystko + + + + Delay + Opóźnienie + + + + Distortion + Zniekształcenie + + + + Dynamics + Dynamiki + + + + EQ + EQ + + + + Filter + Filtr + + + + Modulator + Modulator + + + + Synth + Syntezator + + + + Utility + + + + + + Other + Inne + + + + Architecture + Architektura + + + + + Native + Natywne + + + + Bridged + Mostkowane + + + + Bridged (Wine) + Mostkowane (Wine) + + + + Focus Text Search + Skup się na wyszukiwaniu tekstu + + + + Ctrl+F + Ctrl+F + + + + Bridged (32bit) + Mostkowane (32-bitowe) + + + + Discovering internal plugins... + Odkrywanie wtyczek wewnętrznych... + + + + Discovering LADSPA plugins... + Odkrywanie wtyczek LADSPA... + + + + Discovering DSSI plugins... + Odkrywanie wtyczek DSSI... + + + + Discovering LV2 plugins... + Odkrywanie wtyczek LV2... + + + + Discovering VST2 plugins... + Odkrywanie wtyczek VST2... + + + + Discovering VST3 plugins... + Odkrywanie wtyczek VST3... + + + + Discovering CLAP plugins... + Odkrywanie wtyczek CLAP... + + + + Discovering AU plugins... + Odkrywanie wtyczek AU... + + + + Discovering JSFX plugins... + Odkrywanie wtyczek JSFX... + + + + Discovering SF2 kits... + Odkrywanie zestawów SF2... + + + + Discovering SFZ kits... + Odkrywanie zestawów SFZ... + + + + Unknown + Nieznane + + + + + + + Yes + Tak + + + + + + + No + Nie + + + + PluginParameter + + + Form + Z + + + + Parameter Name + Nazwa parametru + + + + TextLabel + EtykietaTekstowa + + + + ... + ... + + + + PluginRefreshDialog + + + Plugin Refresh + Odświeżanie wtyczek + + + + Search for: + Szukaj: + + + + All plugins, ignoring cache + Wszystkie wtyczki, ignorując pamięć podręczną + + + + Updated plugins only + Tylko zaktualizowane wtyczki + + + + Check previously invalid plugins + Sprawdź wcześniej nieprawidłowe wtyczki + + + + Press 'Scan' to begin the search + Naciśnij „Skanuj”, aby rozpocząć wyszukiwanie + + + + Scan + Skanuj + + + + >> Skip + >> Pomiń + + + + Close + Zamknij + + + + PluginWidget + + + + + + + Frame + Ramka + + + + Enable + Włącz + + + + On/Off + Wł./wył. + + + + + + + PluginName + NazwaWtyczki + + + + MIDI + MIDI + + + + AUDIO IN + WEJ. DŹW. + + + + AUDIO OUT + WYJ. DŹW. + + + + GUI + Graficzny interfejs użytkownika + + + + Edit + Edycja + + + + Remove + Usuń + + + + Plugin Name + Nazwa wtyczki + + + + Preset: + Preset: + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + Ustawienia %1 + + + + QObject + + + Reload Plugin + Przeładuj wtyczkę + + + + Show GUI + Pokaż graficzny interfejs użytkownika + + + + Help + Pomoc + + + + LADSPA plugins + Wtyczki LADSPA + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + Projekt zawiera %1 wtyczek LADSPA, które mogły nie zostać poprawnie przywrócone! Sprawdź projekt. + + + + URI: + URI: + + + + Project: + Projekt: + + + + Maker: + Twórca: + + + + Homepage: + Strona główna: + + + + License: + Licencja: + + + + File: %1 + Plik: %1 + + + + failed to load description + nie można załadować opisu + + + + Open audio file + Otwórz plik dźwiękowy + + + + Error loading sample + Błąd ładowania próbki + + + + %1 (unsupported) + %1 (nieobsługiwany) + + + + QWidget + + + + Name: + Nazwa: + + + + Maker: + Twórca: + + + + Copyright: + Prawa autorskie: + + + + Requires Real Time: + Wymaga czasu rzeczywistego: + + + + + + Yes + Tak + + + + + + No + Nie + + + + Real Time Capable: + Zdolność do pracy w czasie rzeczywistym: + + + + In Place Broken: + Na miejscu złamane: + + + + Channels In: + Kanały wejściowe: + + + + Channels Out: + Kanały wyjściowe: + + + + File: %1 + Plik: %1 + + + + File: + Plik: + + + + XYControllerW + + + XY Controller + Kontroler XY + + + + X Controls: + Sterowanie X: + + + + Y Controls: + Sterowanie Y: + + + + Smooth + Wygładź + + + + &Settings + U&stawienia + + + + Channels + Kanały + + + + &File + &Plik + + + + Show MIDI &Keyboard + Po&każ klawiaturę MIDI + + + + (All) + (Wszystko) + + + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + 8 + + + + 9 + 9 + + + + 10 + 10 + + + + 11 + 11 + + + + 12 + 12 + + + + 13 + 13 + + + + 14 + 14 + + + + 15 + 15 + + + + 16 + 16 + + + + &Quit + Za&kończ + + + + Esc + Esc + + + + (None) + (Brak) + + + + lmms::AmplifierControls + + + Volume + Głośność + + + + Panning + Panoramowanie + + + + Left gain + Lewe wzmocnienie + + + + Right gain + Prawe wzmocnienie + + + + lmms::AudioFileProcessor + + + Amplify + Wzmocnij + + + + Start of sample + Początek próbki + + + + End of sample + Koniec próbki + + + + Loopback point + Znacznik zapętlenia + + + + Reverse sample + Odwróć próbkę + + + + Loop mode + Tryb pętli + + + + Stutter + Zacinanie + + + + Interpolation mode + Tryb interpolacji + + + + None + Brak + + + + Linear + Liniowy + + + + Sinc + + + + + Sample not found + Nie znaleziono próbki + + + + lmms::AudioJack + + + JACK client restarted + Klient JACK zrestartowany + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS został odrzucony przez JACK z jakiegoś powodu. Back-end LMMSa został zrestartowany, więc możesz ponownie dokonać ręcznych połączeń. + + + + JACK server down + Serwer JACK wyłączony + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + Wygląda na to, że serwer JACK został wyłączony i uruchomienie nowej instancji nie powiodło się. LMMS nie może kontynuować pracy. Zapisz projekt i uruchom ponownie serwer JACK i LMMS. + + + + Client name + Nazwa klienta + + + + Channels + Kanały + + + + lmms::AudioOss + + + Device + Urządzenie + + + + Channels + Kanały + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Backend + + + + Device + Urządzenie + + + + lmms::AudioPulseAudio + + + Device + Urządzenie + + + + Channels + Kanały + + + + lmms::AudioSdl::setupWidget + + + Playback device + Urządzenie odtwarzające + + + + Input device + Urządzenie wejściowe + + + + lmms::AudioSndio + + + Device + Urządzenie + + + + Channels + Kanały + + + + lmms::AudioSoundIo::setupWidget + + + Backend + Backend + + + + Device + Urządzenie + + + + lmms::AutomatableModel + + + &Reset (%1%2) + &Resetuj (%1%2) + + + + &Copy value (%1%2) + &Kopiuj wartość (%1%2) + + + + &Paste value (%1%2) + Wklej wa&rtość (%1%2) + + + + &Paste value + Wklej wa&rtość + + + + Edit song-global automation + Edytuj ogólną automatykę utworu + + + + Remove song-global automation + Usuń ogólną automatykę utworu + + + + Remove all linked controls + + + + + 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... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + Przeciągnij, trzymając naciśnięty <%1> + + + + lmms::AutomationTrack + + + Automation track + Ścieżka automatyki + + + + lmms::BassBoosterControls + + + Frequency + Częstotliwość + + + + Gain + Wzmocnienie + + + + Ratio + Współczynnik + + + + lmms::BitInvader + + + Sample length + Długość próbki + + + + Interpolation + Interpolacja + + + + Normalize + Normalizacja + + + + lmms::BitcrushControls + + + Input gain + Wzmocnienie wejścia + + + + Input noise + Szum wejścia + + + + Output gain + Wzmocnienie wyjścia + + + + Output clip + Obcięcie wyjścia + + + + Sample rate + Częstotliwość próbkowania + + + + Stereo difference + Różnica stereo + + + + Levels + Poziomy + + + + Rate enabled + + + + + Depth enabled + Głębia włączona + + + + lmms::Clip + + + Mute + Cisza + + + + lmms::CompressorControls + + + Threshold + Próg + + + + Ratio + Współczynnik + + + + Attack + Narastanie + + + + Release + Opadanie + + + + Knee + Czułość + + + + Hold + + + + + Range + Zakres + + + + RMS Size + Rozmiar RMS + + + + Mid/Side + Śr./b. + + + + Peak Mode + Tryb szczytowy + + + + Lookahead Length + + + + + Input Balance + Równowaga wejścia + + + + Output Balance + Równowaga wyjścia + + + + Limiter + Limiter + + + + Output Gain + Wzmocnienie wyjścia + + + + Input Gain + Wzmocnienie wejścia + + + + Blend + + + + + Stereo Balance + Równowaga stereo + + + + Auto Makeup Gain + Autoupiększanie wzmocnienia + + + + Audition + Przesłuchanie + + + + Feedback + Sprzężenie zwrotne + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + Nachylenie + + + + Tilt Frequency + Częstotliwość nachylenia + + + + Stereo Link + + + + + Mix + Miks + + + + lmms::Controller + + + Controller %1 + Kontroler %1 + + + + lmms::DelayControls + + + Delay samples + Opóźnij próbki + + + + Feedback + Sprzężenie zwrotne + + + + LFO frequency + Częstotliwość LFO + + + + LFO amount + Wartość LFO + + + + Output gain + Wzmocnienie wyjścia + + + + lmms::DispersionControls + + + Amount + Wartość + + + + Frequency + Częstotliwość + + + + Resonance + Rezonans + + + + Feedback + Sprzężenie zwrotne + + + + DC Offset Removal + Usuwanie przesunięcia DC + + + + lmms::DualFilterControls + + + Filter 1 enabled + Włączono filtr 1 + + + + Filter 1 type + Typ filtra 1 + + + + Cutoff frequency 1 + Częstotliwość graniczna 1 + + + + Q/Resonance 1 + Q/Rezonans 1 + + + + Gain 1 + Wzmocnienie 1 + + + + Mix + Miks + + + + Filter 2 enabled + Włączono filtr 2 + + + + Filter 2 type + Typ filtra 2 + + + + Cutoff frequency 2 + Częstotliwość graniczna 2 + + + + Q/Resonance 2 + Q/Rezonans 2 + + + + Gain 2 + Wzmocnienie 2 + + + + + Low-pass + Niski przebieg + + + + + Hi-pass + Wysoki przebieg + + + + + Band-pass csg + Pasmowoprzepustowy csg + + + + + Band-pass czpg + Pasmowoprzepustowy czpg + + + + + Notch + Pasmowozaporowy + + + + + All-pass + Wszystkie przebiegi + + + + + Moog + Moog + + + + + 2x Low-pass + 2x niski przebieg + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + 2x Moog + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + SV zaporowy + + + + + Fast Formant + + + + + + Tripole + Trójnik + + + + lmms::DynProcControls + + + Input gain + Wzmocnienie wejścia + + + + Output gain + Wzmocnienie wyjścia + + + + Attack time + Czas narastania + + + + Release time + Czas opadania + + + + Stereo mode + Tryb stereo + + + + lmms::Effect + + + Effect enabled + Efekt włączony + + + + Wet/Dry mix + Miksowanie suchy/mokry + + + + Gate + Bramka + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + Efekty włączone + + + + lmms::Engine + + + Generating wavetables + Generowanie tabel sampli dźwiękowych + + + + Initializing data structures + Inicjalizowanie struktur danych + + + + Opening audio and midi devices + Otwieranie urządzeń dźwiękowych i MIDI + + + + Launching audio engine threads + Uruchamianie wątków silnika dźwięku + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Opóźnienie wstępne obwiedni + + + + Env attack + Narastanie obw. + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + Opadanie obw. + + + + Env mod amount + Wartość mod. obw. + + + + LFO pre-delay + Opóźnienie wstępne LFO + + + + LFO attack + Narastanie LFO + + + + LFO frequency + Częstotliwość LFO + + + + LFO mod amount + Wartość mod. LFO + + + + LFO wave shape + Kształt fali LFO + + + + LFO frequency x 100 + Częstotliwość LFO x 100 + + + + Modulate env amount + Moduluj wartość obw. + + + + Sample not found + Nie znaleziono próbki + + + + lmms::EqControls + + + Input gain + Wzmocnienie wejścia + + + + Output gain + Wzmocnienie wyjścia + + + + Low-shelf gain + Wzmocnienie dolnopółkowe + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + Wzmocnienie górnopółkowe + + + + HP res + Rez. HP + + + + Low-shelf res + Rez. dolnopółkowy + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + Rez. górnopółkowy + + + + LP res + Rez. LP + + + + HP freq + Częst. HP + + + + Low-shelf freq + Częst. dolnopółkowa + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + Częst. górnopółkowa + + + + LP freq + Częst. LP + + + + HP active + HP aktywny + + + + Low-shelf active + Dolnopółkowy aktywny + + + + Peak 1 active + Szczyt 1 aktywny + + + + Peak 2 active + Szczyt 2 aktywny + + + + Peak 3 active + Szczyt 3 aktywny + + + + Peak 4 active + Szczyt 4 aktywny + + + + High-shelf active + Górnopółkowy aktywny + + + + LP active + LP aktywny + + + + LP 12 + LP 12 + + + + LP 24 + LP 24 + + + + LP 48 + LP 48 + + + + HP 12 + HP 12 + + + + HP 24 + HP 24 + + + + HP 48 + HP 48 + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + Analizuj WEJŚCIE + + + + Analyse OUT + Analizuj WYJŚCIE + + + + lmms::FlangerControls + + + Delay samples + Opóźnij próbki + + + + LFO frequency + Częstotliwość LFO + + + + Amount + Wartość + + + + Stereo phase + Faza stereo + + + + Feedback + Sprzężenie zwrotne + + + + Noise + Szum + + + + Invert + Odwróć + + + + lmms::FreeBoyInstrument + + + Sweep time + Czas wobulacji + + + + Sweep direction + Kierunek wobulacji + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + Współczynnik wypełnienia szablonu fali + + + + Channel 1 volume + Głośność kanału 1 + + + + + + Volume sweep direction + Kierunek wobulacji głośności + + + + + + Length of each step in sweep + Długość każdego kroku wobulacji + + + + Channel 2 volume + Głośność kanału 2 + + + + Channel 3 volume + Głośność kanału 3 + + + + Channel 4 volume + Głośność kanału 4 + + + + Shift Register width + + + + + Right output level + Poziom prawego wyjścia + + + + Left output level + Poziom lewego wyjścia + + + + Channel 1 to SO2 (Left) + Kanał 1 do SO2 (lewy) + + + + Channel 2 to SO2 (Left) + Kanał 2 do SO2 (lewy) + + + + Channel 3 to SO2 (Left) + Kanał 3 do SO2 (lewy) + + + + Channel 4 to SO2 (Left) + Kanał 4 do SO2 (lewy) + + + + Channel 1 to SO1 (Right) + Kanał 1 do SO1 (prawy) + + + + Channel 2 to SO1 (Right) + Kanał 2 do SO1 (prawy) + + + + Channel 3 to SO1 (Right) + Kanał 3 do SO1 (prawy) + + + + Channel 4 to SO1 (Right) + Kanał 4 do SO1 (prawy) + + + + Treble + Soprany + + + + Bass + Basy + + + + lmms::GigInstrument + + + Bank + Bank + + + + Patch + Próbka + + + + Gain + Wzmocnienie + + + + lmms::GranularPitchShifterControls + + + Pitch + Odstrojenie + + + + Grain Size + Wielkość ziarna + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + Kształt + + + + Fade Length + Długość ściszenia + + + + Feedback + Sprzężenie zwrotne + + + + Minimum Allowed Latency + Minimalne dozwolone opóźnienie + + + + Prefilter + Filtr wstępny + + + + Density + Gęstość + + + + Glide + Poślizg + + + + Ring Buffer Length + + + + + 5 Seconds + 5 sekund + + + + 10 Seconds (Size) + 10 sekund (rozmiar) + + + + 40 Seconds (Size and Pitch) + 40 sekund (rozmiar i odstrojenie) + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + 120 sekund (wszystkie powyższe) + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + Arpeggio + + + + Arpeggio type + Typ arpeggio + + + + Arpeggio range + Zakres arpeggio + + + + Note repeats + Powtórzenia nuty + + + + Cycle steps + Kroki cyklu + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + Czas arpeggio + + + + Arpeggio gate + Bramka 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 + Losowe + + + + Free + Dowolne + + + + Sort + Posortowane + + + + Sync + Zsynchronizowane + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + Akordy + + + + Chord type + Typ akordu + + + + Chord range + Zakres akordu + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + Obwiednie/oscylatory LFO + + + + Filter type + Typ filtra + + + + Cutoff frequency + Częstotliwość graniczna + + + + Q/Resonance + Q/Rezonans + + + + Low-pass + Niski przebieg + + + + Hi-pass + Wysoki przebieg + + + + Band-pass csg + Pasmowoprzepustowy csg + + + + Band-pass czpg + Pasmowoprzepustowy czpg + + + + Notch + Pasmowozaporowy + + + + All-pass + Wszystkie przebiegi + + + + Moog + Moog + + + + 2x Low-pass + 2x niski przebieg + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + 2x Moog + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + SV zaporowy + + + + Fast Formant + + + + + Tripole + Trójnik + + + + lmms::InstrumentTrack + + + + unnamed_track + nienazwana_ścieżka + + + + Base note + Nuta bazowa + + + + First note + Pierwsza nuta + + + + Last note + Ostatnia nuta + + + + Volume + Głośność + + + + Panning + Panoramowanie + + + + Pitch + Odstrojenie + + + + Pitch range + Zakres odstrojenia + + + + Mixer channel + Kanał miksera + + + + Master pitch + Odstrojenie główne + + + + Enable/Disable MIDI CC + Włącz/wyłącz MIDI CC + + + + CC Controller %1 + Kontroler CC %1 + + + + + Default preset + Preset domyślny + + + + lmms::Keymap + + + empty + pusty + + + + lmms::KickerInstrument + + + Start frequency + Częstotliwość początkowa + + + + End frequency + Częstotliwość końcowa + + + + Length + Długość + + + + Start distortion + Początek zniekształcenia + + + + End distortion + Koniec zniekształcenia + + + + Gain + Wzmocnienie + + + + Envelope slope + Nachylenie obwiedni + + + + Noise + Szum + + + + Click + Kliknięcie + + + + Frequency slope + Nachylenie częstotliwości + + + + Start from note + Rozpocznij od nuty + + + + End to note + Zakończ do nuty + + + + lmms::LOMMControls + + + Depth + Głębia + + + + Time + Czas + + + + Input Volume + Głośność wejściowa + + + + Output Volume + Głośność wyjściowa + + + + Upward Depth + Głębia w górę + + + + Downward Depth + Głębia w dół + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + Czas RMS + + + + Knee + Czułość + + + + Range + Zakres + + + + Balance + Równowaga + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + Miks + + + + Feedback + Sprzężenie zwrotne + + + + Mid/Side + Śr./b. + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + Wytłumienie kompresji w górę dla pasma bocznego + + + + lmms::LadspaControl + + + Link channels + Połącz kanały + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + Zażądano nieznanej wtyczki LADSPA %1. + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + Częstotliwość graniczna VCF + + + + VCF Resonance + Rezonans VCF + + + + VCF Envelope Mod + Mod. obwiedni VCF + + + + VCF Envelope Decay + + + + + Distortion + Zniekształcenie + + + + Waveform + Kształt fali + + + + Slide Decay + + + + + Slide + Ślizg + + + + Accent + Akcent + + + + Dead + Martwy + + + + 24dB/oct Filter + Filtr 24 dB/okt + + + + lmms::LfoController + + + LFO Controller + Kontroler LFO + + + + Base value + Wartość bazowa + + + + Oscillator speed + Prędkość oscylatora + + + + Oscillator amount + Wartość oscylatora + + + + Oscillator phase + Faza oscylatora + + + + Oscillator waveform + Kształt fali oscylatora + + + + Frequency Multiplier + Mnożnik częstotliwości + + + + Sample not found + Nie znaleziono próbki + + + + lmms::MalletsInstrument + + + Hardness + Twardość + + + + Position + Pozycja + + + + Vibrato gain + Wzmocnienie vibrato + + + + Vibrato frequency + Częstotliwość vibrato + + + + Stick mix + + + + + Modulator + Modulator + + + + Crossfade + Płynne przechodzenie + + + + LFO speed + Prędkość LFO + + + + LFO depth + Głębia LFO + + + + ADSR + ADSR + + + + Pressure + Ciśnienie + + + + Motion + Ruch + + + + Speed + Prędkość + + + + Bowed + Pochylenie + + + + Instrument + Instrument + + + + Spread + Rozstrzał + + + + Randomness + Losowość + + + + Marimba + Marimba + + + + Vibraphone + Wibrafon + + + + Agogo + Agogo + + + + Wood 1 + Drewniane 1 + + + + Reso + Rez. + + + + Wood 2 + Drewniane 2 + + + + Beats + Uderzenia + + + + Two fixed + Dwa stałe + + + + Clump + Stąpanie + + + + Tubular bells + Tubular bells + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + Harfa szklana + + + + Tibetan bowl + Misa dźwiękowa (tybetańska) + + + + lmms::MeterModel + + Numerator Numerator + Denominator Denominator - MidiController + lmms::Microtuner + + Microtuner + Mikrotuner + + + + Microtuner on / off + Mikrotuner wł./wył. + + + + Selected scale + Wybrana skala + + + + Selected keyboard mapping + Wybrane mapowanie klawiszy + + + + lmms::MidiController + + MIDI Controller Kontroler MIDI + unnamed_midi_controller - kontroler midi bez nazwy + nienazwany_kontroler_midi - MidiImport + lmms::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. - 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 have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + Nie masz ustawionego domyślnego SoundFontu w oknie dialogowym ustawień (Edycja -> Ustawienia). Dlatego żaden dźwięk nie zostanie odtworzony po zaimportowaniu tego pliku MIDI. Powinieneś/aś pobrać SoundFont General MIDI, określić go w oknie dialogowym ustawień i spróbować ponownie. + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - 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. + Nie skompilowałeś/aś LMMS ze wsparciem dla odtwarzacza SoundFont2, który jest używany do dodawania domyślnego dźwięku do importowanych plików MIDI. Dlatego żaden dźwięk nie zostanie odtworzony po zaimportowaniu tego pliku MIDI. + + MIDI Time Signature Numerator + Numerator oznaczenia metrycznego MIDI + + + + MIDI Time Signature Denominator + Denominator oznaczenia metrycznego MIDI + + + + Numerator + Numerator + + + + Denominator + Denominator + + + + + Tempo + Tempo + + + Track - Scieżka + Ścieżka - MidiJack + lmms::MidiJack + JACK server down When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) Serwer JACK wyłączony + The JACK server seems to be shuted down. When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) Wygląda na to, że serwer JACK jest wyłączony. - MidiPort + lmms::MidiPort + Input channel Kanał wejściowy + Output channel Kanał wyjściowy + Input controller Kontroler wejściowy + Output controller Kontroler wyjściowy + Fixed input velocity Stała głośność wejściowa + Fixed output velocity Stała głośność wyjściowa - 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 + Głośność bazowa + + + + Receive MIDI-events + Odbieraj zdarzenia MIDI + + + + Send MIDI-events + Wysyłaj zdarzenia MIDI - MidiSetupWidget + lmms::Mixer - DEVICE - URZĄDZENIE + + Master + Master + + + + + + Channel %1 + Kanał %1 + + + + Volume + Głośność + + + + Mute + Cisza + + + + Solo + Solo - MonstroInstrument + lmms::MixerRoute - Osc 1 Volume - Osc 1 Głośność + + + Amount to send from channel %1 to channel %2 + Wartość do wysłania z kanału %1 do kanału %2 + + + + lmms::MonstroInstrument + + + Osc 1 volume + Głośność osc 1 - Osc 1 Panning - Osc 1 Panoramowanie + + Osc 1 panning + Panoramowanie osc 1 - 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 + Przesunięcie fazowe stereo osc 1 - Osc 1 Pulse width - Osc 1 Współczynnik wypełnienia impulsu + + Osc 1 pulse width + Współczynnik wypełnienia impulsu osc 1 - 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 + Głośność osc 2 - Osc 2 Panning - Osc 2 Panoramowanie + + Osc 2 panning + Panoramowanie osc 2 - 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 + Przesunięcie fazowe stereo osc 2 - 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 + Głośność osc 3 - Osc 3 Panning - Osc 3 Panoramowanie + + Osc 3 panning + Panoramowanie osc 3 - Osc 3 Coarse detune - Osc 3 Zgrubne odstrojenie + + Osc 3 coarse detune + + Osc 3 Stereo phase offset - Osc 3 Przesunięcie fazowe stereo + Przesunięcie fazowe stereo osc 3 - 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 + Narastanie LFO 1 - LFO 1 Rate - LFO 1 Tempo + + LFO 1 rate + - LFO 1 Phase - LFO 1 Faza + + LFO 1 phase + Faza LFO 1 - LFO 2 Waveform - LFO 2 Przebieg + + LFO 2 waveform + - LFO 2 Attack - LFO 2 Atak + + LFO 2 attack + Narastanie LFO 2 - LFO 2 Rate - LFO 2 Tempo + + LFO 2 rate + - LFO 2 Phase - LFO 2 Faza + + LFO 2 phase + Faza LFO 2 - Env 1 Pre-delay - Obw 1 Opóźnienie wstępne + + Env 1 pre-delay + - Env 1 Attack - Obw 1 Atak + + Env 1 attack + Narastanie obw. 1 - 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 + Opadanie obw. 1 - 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 + Narastanie obw. 2 - 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 + Opadanie obw. 2 - Env 2 Slope - Obw 2 Nachylenie + + Env 2 slope + - Osc2-3 modulation - Modulacja osc2-3 + + Osc 2+3 modulation + Modulacja osc 2+3 + Selected view Wybrany widok - Vol1-Env1 - Głośn1-Obw1 + + Osc 1 - Vol env 1 + Osc 1 - Gł. obw. 1 - Vol1-Env2 - Głośn1-Obw2 + + Osc 1 - Vol env 2 + Osc 1 - Gł. obw. 2 - Vol1-LFO1 - Głośn1-LFO1 + + Osc 1 - Vol LFO 1 + Osc 1 - Gł. LFO 1 - Vol1-LFO2 - Głośn1-LFO2 + + Osc 1 - Vol LFO 2 + Osc 1 - Gł. LFO 2 - Vol2-Env1 - Głośn2-Obw1 + + Osc 2 - Vol env 1 + Osc 2 - Gł. obw. 1 - Vol2-Env2 - Głośn2-Obw2 + + Osc 2 - Vol env 2 + Osc 2 - Gł. obw. 2 - Vol2-LFO1 - Głośn2-LFO1 + + Osc 2 - Vol LFO 1 + Osc 2 - Gł. LFO 1 - Vol2-LFO2 - Głośn2-LFO2 + + Osc 2 - Vol LFO 2 + Osc 2 - Gł. LFO 2 - Vol3-Env1 - Głośn3-Obw1 + + Osc 3 - Vol env 1 + Osc 3 - Gł. obw. 1 - Vol3-Env2 - Głośn3-Obw2 + + Osc 3 - Vol env 2 + Osc 3 - Gł. obw. 2 - Vol3-LFO1 - Głośn3-LFO1 + + Osc 3 - Vol LFO 1 + Osc 3 - Gł. LFO 1 - Vol3-LFO2 - Głośn3-LFO2 + + Osc 3 - Vol LFO 2 + Osc 3 - Gł. 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 + Szum biały + Digital Triangle wave Cyfrowa fala trójkątna + Digital Saw wave Cyfrowa fala piłokształtna + Digital Ramp wave Cyfrowa fala rampowa + Digital Square wave Cyfrowa fala kwadratowa + Digital Moog saw wave Cyfrowa fala piłokształtna Mooga + Triangle wave Fala trójkątna + Saw wave Fala piłokształtna + Ramp wave Fala rampowa + Square wave Fala prostokątna + Moog saw wave Fala piłokształtna Mooga + Abs. sine wave Fala sin. o wart. bezwzgl. + Random Losowe + Random smooth Losowe gładkie - MonstroView + lmms::NesInstrument - Operators view - Widok operatorowy + + Channel 1 enable + Włącz kanał 1 - 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 - - - cents - centy - - - Finetune right - Odstrojenie prawe - - - 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 + + Channel 1 coarse detune - Hard sync oscillator 3 - Sync twarde oscylatora 3 + + Channel 1 volume + Głośność kanału 1 - Reverse sync oscillator 3 - Sync odwrócone oscylatora 3 + + Channel 1 envelope enable + - Attack - Atak + + Channel 1 envelope loop + - Rate - Tempo + + Channel 1 envelope length + - Phase - Faza + + Channel 1 duty cycle + - Pre-delay - Opóźnienie wstępne + + Channel 1 sweep enable + - Hold - Przetrzymanie + + Channel 1 sweep amount + - Decay - Zanikanie + + Channel 1 sweep rate + - Sustain - Podtrzymanie + + Channel 2 enable + Włącz kanał 2 - Release - Wybrzmiewanie + + Channel 2 coarse detune + - Slope - Nachylenie + + Channel 2 volume + Głośność kanału 2 - Modulation amount - Współczynnik modulacji - - - - MultitapEchoControlDialog - - Length - Długość + + Channel 2 envelope enable + - Step length: - Długość kroku: + + Channel 2 envelope loop + - Dry - Suche + + Channel 2 envelope length + - Dry Gain: - Wzmocnienie suchego: + + Channel 2 duty cycle + - Stages - Etapy + + Channel 2 sweep enable + - Lowpass stages: - Etapy dolnego przepustu: + + Channel 2 sweep amount + - Swap inputs - Zamień wejścia + + Channel 2 sweep rate + - Swap left and right input channel for reflections - Zamień lewy i prawy kanał wyjściowy dla odbicia - - - - NesInstrument - - Channel 1 Coarse detune - Kanał 1 Zgrubne odstrojenie + + Channel 3 enable + Włącz kanał 3 - Channel 1 Volume - Kanał 1 Głośność + + Channel 3 coarse detune + - Channel 1 Envelope length - Kanał 1 Długość obwiedni + + Channel 3 volume + Głośność kanału 3 - Channel 1 Duty cycle - Kanał 1 Cykl pracy + + Channel 4 enable + Włącz kanał 4 - Channel 1 Sweep amount - Kanał 1 Ilość wobulacji + + Channel 4 volume + Głośność kanału 4 - Channel 1 Sweep rate - Kanał 1 Częstotliwość wobulacji + + Channel 4 envelope enable + - Channel 2 Coarse detune - Kanał 2 Zgrubne odstrojenie + + Channel 4 envelope loop + - Channel 2 Volume - Kanał 2 Głośność + + Channel 4 envelope length + - Channel 2 Envelope length - Kanał 2 Długość obwiedni + + Channel 4 noise mode + - Channel 2 Duty cycle - Kanał 2 Cykl pracy + + Channel 4 frequency mode + - Channel 2 Sweep amount - Kanał 2 Ilość wobulacji + + Channel 4 noise frequency + - Channel 2 Sweep rate - Kanał 2 Częstotliwość wobulacji + + Channel 4 noise frequency sweep + - Channel 3 Coarse detune - Kanał 3 Zgrubne odstrojenie - - - Channel 3 Volume - Kanał 3 Głośność - - - Channel 4 Volume - Kanał 4 Głośność - - - Channel 4 Envelope length - Kanał 4 Długość obwiedni - - - Channel 4 Noise frequency - Kanał 4 Częstotliwość szumu - - - Channel 4 Noise frequency sweep - Kanał 4 Wobulacja częstotliwości szumu + + Channel 4 quantize + + Master volume Głośność główna + Vibrato Vibrato - NesInstrumentView - - Volume - Głośność - - - Coarse detune - Odstrojenie zgrubne - - - Envelope length - Długość obwiedni - - - Enable channel 1 - Włącz kanał 1 - - - Enable envelope 1 - Włącz obwiednię 1 - - - Enable envelope 1 loop - Włącz pętlę obwiedni 1 - - - Enable sweep 1 - Włącz wobulację 1 - - - Sweep amount - Ilość wobulacji - - - 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 - Głośność główna - - - Vibrato - Vibrato - - - - 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 - - - - PatchesDialog - - Qsynth: Channel Preset - Qsynth: Preset kanału - - - Bank selector - Selektor banku - - - Bank - Bank - - - Program selector - Selektor programu - + lmms::OpulenzInstrument + Patch Próbka - Name - Nazwa + + Op 1 attack + Narastanie op 1 - OK - OK + + Op 1 decay + + + Op 1 sustain + + + + + Op 1 release + Opadanie op 1 + + + + Op 1 level + Poziom op 1 + + + + Op 1 level scaling + Skalowanie poziomu op 1 + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + Tremolo op 1 + + + + Op 1 vibrato + Vibrato op 1 + + + + Op 1 waveform + + + + + Op 2 attack + Narastanie op 2 + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + Opadanie op 2 + + + + Op 2 level + Poziom op 2 + + + + Op 2 level scaling + Skalowanie poziomu op 2 + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + Tremolo op 2 + + + + Op 2 vibrato + Vibrato op 2 + + + + Op 2 waveform + + + + + FM + FM + + + + Vibrato depth + Głębia vibrato + + + + Tremolo depth + Głębia tremolo + + + + lmms::OrganicInstrument + + + Distortion + Zniekształcenie + + + + Volume + Głośność + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + Przesunięcie fazowe osc %1 + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + Typ modulacji %1 + + + + lmms::PatternTrack + + + Pattern %1 + Szablon %1 + + + + Clone of %1 + Klon %1 + + + + lmms::PeakController + + + Peak Controller + Kontroler szczytu + + + + Peak Controller Bug + Błąd kontrolera szczytu + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + Z powodu błędu w starszej wersji LMMS kontrolery szczytu mogą nie być prawidłowo podłączone. Upewnij się, że kontrolery szczytu są prawidłowo podłączone i ponownie zapisz ten plik. + + + + lmms::PeakControllerEffectControls + + + Base value + Wartość bazowa + + + + Modulation amount + Wartość modulacji + + + + Attack + Narastanie + + + + Release + Opadanie + + + + Treshold + Próg + + + + Mute output + Wycisz wyjście + + + + Absolute value + Wartość bezwzględna + + + + Amount multiplicator + Mnożnik wartości + + + + lmms::Plugin + + + Plugin not found + Nie znaleziono wtyczki + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + Wtyczka „%1” nie została znaleziona lub nie może zostać załadowana! +Powód: „%2” + + + + Error while loading plugin + Wystąpił błąd podczas ładowania wtyczki + + + + Failed to load plugin "%1"! + Nie można załadować wtyczki „%1”! + + + + lmms::ReverbSCControls + + + Input gain + Wzmocnienie wejścia + + + + Size + Rozmiar + + + + Color + Kolor + + + + Output gain + Wzmocnienie wyjścia + + + + lmms::SaControls + + + Pause + Wstrzymaj + + + + Reference freeze + Zamrożenie odniesienia + + + + Waterfall + Wodospad + + + + Averaging + Uśrednianie + + + + Stereo + Stereo + + + + Peak hold + + + + + Logarithmic frequency + Częstotliwość logarytmiczna + + + + Logarithmic amplitude + Amplituda logarytmiczna + + + + Frequency range + Zakres częstotliwości + + + + Amplitude range + Zakres amplitudy + + + + FFT block size + Rozmiar bloku FFT + + + + FFT window type + Typ okna FFT + + + + Peak envelope resolution + + + + + Spectrum display resolution + Rozdzielczość wyświetlania widma + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + Korekcja gamma wodospadu + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + Pełne (automatyczne) + + + + + + Audible + Słyszalne + + + + Bass + Basy + + + + Mids + Średnie + + + + High + Wysokie + + + + Extended + Rozszerzone + + + + Loud + Głośne + + + + Silent + Ciche + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + Prostokątne (wyłączone) + + + + + Blackman-Harris (Default) + Blackman-Harris (domyślne) + + + + Hamming + Hamming + + + + Hanning + Hanning + + + + lmms::SampleClip + + + Sample not found + Nie znaleziono próbki + + + + lmms::SampleTrack + + + Volume + Głośność + + + + Panning + Panoramowanie + + + + Mixer channel + Kanał miksera + + + + + Sample track + Ścieżka próbek + + + + lmms::Scale + + + empty + pusty + + + + lmms::Sf2Instrument + + + Bank + Bank + + + + Patch + Próbka + + + + Gain + Wzmocnienie + + + + Reverb + Pogłos + + + + Reverb room size + + + + + Reverb damping + Tłumienie pokoju + + + + Reverb width + Szerokość pogłosu + + + + Reverb level + Poziom pogłosu + + + + Chorus + Chorus + + + + Chorus voices + Głosy chorusu + + + + Chorus level + Poziom chorusu + + + + Chorus speed + Prędkość chorusu + + + + Chorus depth + Głębia chorusu + + + + A soundfont %1 could not be loaded. + SoundFont %1 nie może zostać załadowany. + + + + lmms::SfxrInstrument + + + Wave + Fala + + + + lmms::SidInstrument + + + Cutoff frequency + Częstotliwość graniczna + + + + Resonance + Rezonans + + + + Filter type + Typ filtra + + + + Voice 3 off + Wyłącz głos 3 + + + + Volume + Głośność + + + + Chip model + Model układu scalonego + + + + lmms::SlicerT + + + Note threshold + Próg nuty + + + + FadeOut + Ściszenie + + + + Original bpm + Oryginalne BPM + + + + Slice snap + + + + + BPM sync + Synchronizacja BPM + + + + + slice_%1 + + + + + Sample not found: %1 + Nie znaleziono próbki: %1 + + + + lmms::Song + + + Tempo + Tempo + + + + Master volume + Głośność główna + + + + Master pitch + Odstrojenie główne + + + + Aborting project load + Przerwanie ładowania projektu + + + + Project file contains local paths to plugins, which could be used to run malicious code. + Plik projektu zawiera lokalne ścieżki do wtyczek, które mogą zostać wykorzystane do uruchomienia złośliwego kodu. + + + + Can't load project: Project file contains local paths to plugins. + Nie można załadować projektu. Plik projektu zawiera ścieżki lokalne do wtyczek. + + + + LMMS Error report + Zgłoszenie błędu LMMS + + + + (repeated %1 times) + (powtórzone %1 razy) + + + + The following errors occurred while loading: + Podczas ładowania wystąpiły następujące błędy: + + + + lmms::StereoEnhancerControls + + + Width + Szerokość + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + Cisza + + + + Solo + Solo + + + + lmms::TrackContainer + + + Couldn't import file + Nie można zaimportować pliku + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + Nie można znaleźć filtra do zaimportowania pliku %1. +Musisz przekonwertować ten plik do formatu obsługiwanego przez LMMS za pomocą zewnętrznego oprogramowania. + + + + Couldn't open file + Nie można otworzyć pliku + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + Nie można otworzyć pliku %1 do odczytu. +Upewnij się, że masz uprawnienia do odczytu do pliku i katalogu zawierającego plik i spróbuj ponownie! + + + + Loading project... + Ładowanie projektu... + + + + Cancel Anuluj - - - PatmanView - Open other patch - Otwórz inny plik Patch + + + Please wait... + Czekaj... - 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. + + Loading cancelled + Ładowanie anulowane - Loop - Pętla + + Project loading was cancelled. + Ładowanie projektu zostało anulowane. - Loop mode - Tryb zapętlenia + + Loading Track %1 (%2/Total %3) + Ładowanie ścieżki %1 (%2/Łącznie %3) - 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) + + Importing MIDI-file... + Importowanie pliku MIDI... - PatternView + lmms::TripleOscillator - Open in piano-roll - Otwórz w Edytorze Pianolowym + + Sample not found + Nie znaleziono próbki + + + + lmms::VecControls + + + Display persistence amount + Wyświetlaj wartość trwałości - Clear all notes - Wyczyść wszystkie nuty + + Logarithmic scale + Skala logarytmiczna + + High quality + Wysoka jakość + + + + lmms::VestigeInstrument + + + Loading plugin + Ładowanie wtyczki + + + + Please wait while loading the VST plugin... + Czekaj. Trwa ładowanie wtyczki VST... + + + + lmms::Vibed + + + String %1 volume + Głośność struny %1 + + + + String %1 stiffness + Sztywność struny %1 + + + + Pick %1 position + Wybierz pozycję %1 + + + + Pickup %1 position + + + + + String %1 panning + Panoramowanie struny %1 + + + + String %1 detune + Odstrojenie struny %1 + + + + String %1 fuzziness + Rozmycie struny %1 + + + + String %1 length + Długość struny %1 + + + + Impulse %1 + Impuls %1 + + + + String %1 + Struna %1 + + + + lmms::VoiceObject + + + Voice %1 pulse width + Współczynnik wypełnienia impulsu głosu %1 + + + + Voice %1 attack + Narastanie głosu %1 + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + Opadanie głosu %1 + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + Kształt fali głosu %1 + + + + Voice %1 sync + Synchronizacja głosu %1 + + + + Voice %1 ring modulate + Modulacja pierścieniowa głosu %1 + + + + Voice %1 filtered + Filtrowanie głosu %1 + + + + Voice %1 test + Test głosu %1 + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + Wtyczka VST %1 nie może zostać załadowana. + + + + Open Preset + Otwórz preset + + + + + VST Plugin Preset (*.fxp *.fxb) + Preset wtyczki VST (*.fxp *.fxb) + + + + : default + : domyślne + + + + Save Preset + Zapisz preset + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + Ładowanie wtyczki + + + + Please wait while loading VST plugin... + Czekaj. Trwa ładowanie wtyczki VST... + + + + lmms::WatsynInstrument + + + Volume A1 + Głośność A1 + + + + Volume A2 + Głośność A2 + + + + Volume B1 + Głośność B1 + + + + Volume B2 + Głośność B2 + + + + Panning A1 + Panoramowanie A1 + + + + Panning A2 + Panoramowanie A2 + + + + Panning B1 + Panoramowanie B1 + + + + Panning B2 + Panoramowanie B2 + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + Miksuj A-B + + + + A-B Mix envelope amount + Miksuj wartość obwiedni A-B + + + + A-B Mix envelope attack + Miksuj narastanie obwiedni A-B + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + Przesłuch A1-B2 + + + + A2-A1 modulation + Modulacja A2-A1 + + + + B2-B1 modulation + Modulacja B2-B1 + + + + Selected graph + Wybrany wykres + + + + lmms::WaveShaperControls + + + Input gain + Wzmocnienie wejścia + + + + Output gain + Wzmocnienie wyjścia + + + + lmms::Xpressive + + + Selected graph + Wybrany wykres + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + Wygładzanie W1 + + + + W2 smoothing + Wygładzanie W2 + + + + W3 smoothing + Wygładzanie W3 + + + + Panning 1 + Panoramowanie 1 + + + + Panning 2 + Panoramowanie 2 + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + Portamento + + + + Filter frequency + Częstotliwość filtra + + + + Filter resonance + Rezonans filtra + + + + Bandwidth + Szerokość pasma + + + + FM gain + Wzmocnienie FM + + + + Resonance center frequency + Częstotliwość środkowa rezonansu + + + + Resonance bandwidth + Szerokość pasma rezonansu + + + + Forward MIDI control change events + Przekaż zdarzenia zmiany sterowania MIDI + + + + lmms::graphModel + + + Graph + Wykres + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + Głośność: + + + + PAN + PAN + + + + Panning: + Panoramowanie: + + + + LEFT + LEWO + + + + Left gain: + Lewe wzmocnienie: + + + + RIGHT + PRAWO + + + + Right gain: + Prawe wzmocnienie: + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + Urządzenie + + + + Channels + Kanały + + + + lmms::gui::AudioFileProcessorView + + + Open sample + Otwórz próbkę + + + + Reverse sample + Odwróć próbkę + + + + Disable loop + Wyłącz pętlę + + + + Enable loop + Włącz pętlę + + + + Enable ping-pong loop + Włącz pętlę typu ping-pong + + + + Continue sample playback across notes + Kontunuuj odtwarzanie próbki w następnych nutach + + + + Amplify: + Wzmocnij: + + + + Start point: + Punkt początkowy: + + + + End point: + Punkt końcowy: + + + + Loopback point: + Znacznik zapętlenia: + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + Długość próbki: + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + Otwórz w edytorze automatyki + + + + Clear + Wyczyść + + + Reset name - Zresetuj nazwę + Resetuj nazwę + Change name Zmień nazwę + + Set/clear record + Ustaw/wyczyść nagranie + + + + Flip Vertically (Visible) + Odwróć pionowo (widoczne) + + + + Flip Horizontally (Visible) + Odwróć poziomo (widoczne) + + + + %1 Connections + %1 połączenia + + + + Disconnect "%1" + Rozłącz „%1” + + + + Model is already connected to this clip. + Model jest już podłączony do tego klipu. + + + + lmms::gui::AutomationEditor + + + Edit Value + Edytuj wartość + + + + New outValue + Nowa wartość wyjściowa + + + + New inValue + Nowa wartość wejściowa + + + + Please open an automation clip by double-clicking on it! + Otwórz klip automatyzacji, klikając na niego dwukrotnie myszką! + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + Odtwarzaj/wstrzymaj bieżący klip (Spacja) + + + + Stop playing of current clip (Space) + Zatrzymaj odtwarzanie bieżącego klipu (Spacja) + + + + Edit actions + Edytuj czynności + + + + Draw mode (Shift+D) + Tryb rysowania (Shift+D) + + + + Erase mode (Shift+E) + Tryb wymazywania (Shift+E) + + + + Draw outValues mode (Shift+C) + Tryb rysowania wartości wyjściowych (Shift+C) + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + Odwróć pionowo + + + + Flip horizontally + Odwróć poziomo + + + + Interpolation controls + + + + + Discrete progression + Progresja oddzielna + + + + Linear progression + Progresja liniowa + + + + Cubic Hermite progression + Progresja sześcienna Hermite’a + + + + Tension value for spline + Wartość napięcia dla krzywej składanej + + + + Tension: + Napięcie: + + + + Zoom controls + + + + + Horizontal zooming + Powiększanie poziome + + + + Vertical zooming + Powiększanie pionowe + + + + Quantization controls + + + + + Quantization + Kwantyzacja + + + + Clear ghost notes + + + + + + Automation Editor - no clip + Edytor automatyki - brak klipu + + + + + Automation Editor - %1 + Edytor automatyki - %1 + + + + Model is already connected to this clip. + Model jest już podłączony do tego klipu. + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + CZĘST + + + + Frequency: + Częstotliwość: + + + + GAIN + WZMOC + + + + Gain: + Wzmocnienie: + + + + RATIO + WSPÓŁCZYNNIK + + + + Ratio: + Współczynnik: + + + + lmms::gui::BitInvaderView + + + Sample length + Długość próbki + + + + Draw your own waveform here by dragging your mouse on this graph. + Narysuj swój własny przebieg fali, przeciągając kursorem po tym wykresie. + + + + + Sine wave + Fala sinusoidalna + + + + + Triangle wave + Fala trójkątna + + + + + Saw wave + Fala piłokształtna + + + + + Square wave + Fala prostokątna + + + + + White noise + Szum biały + + + + + User-defined wave + Fala zdefiniowana przez użytkownika + + + + + Smooth waveform + Gładki kształt fali + + + + Interpolation + Interpolacja + + + + Normalize + Normalizacja + + + + lmms::gui::BitcrushControlDialog + + + IN + WEJŚCIE + + + + OUT + WYJŚCIE + + + + + GAIN + WZMOC + + + + Input gain: + Wzmocnienie wejścia: + + + + NOISE + SZUM + + + + Input noise: + Szum wejściowy: + + + + Output gain: + Wzmocnienie wyjścia: + + + + CLIP + KLIP + + + + Output clip: + Klip wyjściowy: + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + Głębia włączona + + + + Enable bit-depth crushing + + + + + FREQ + CZĘST + + + + Sample rate: + Częstotliwość próbkowania: + + + + STEREO + STEREO + + + + Stereo difference: + Różnica stereo: + + + + QUANT + KWANT + + + + Levels: + Poziomy: + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + - Nuty i konfiguracja: %1% + + + + - Instruments: %1% + - Instrumenty: %1% + + + + - Effects: %1% + - Efekty: %1% + + + + - Mixing: %1% + - Miksowanie: %1% + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + Pokaż graficzny interfejs użytkownika + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + Kliknij tutaj, aby pokazać lub ukryć graficzny interfejs użytkownika (GUI) Carla. + + + + Params + Parametry + + + + Available from Carla version 2.1 and up. + Dostępne dla Carla w wersji 2.1 lub nowszej. + + + + lmms::gui::CarlaParamsView + + + Search.. + Szukaj... + + + + Clear filter text + Wyczyść tekst filtra + + + + Only show knobs with a connection. + Pokaż tylko pokrętła z połączeniem. + + + + - Parameters + - Parametry + + + + lmms::gui::ClipView + + + Current position + Bieżąca pozycja + + + + Current length + Bieżąca długość + + + + + %1:%2 (%3:%4 to %5:%6) + %1:%2 (%3:%4 do %5:%6) + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + Podpowiedź + + + + Delete (middle mousebutton) + Usuń (środkowy przycisk myszki) + + + + Delete selection (middle mousebutton) + Usuń zaznaczone (środkowy przycisk myszki) + + + + Cut + Wytnij + + + + Cut selection + Wytnij zaznaczenie + + + + Merge Selection + Połącz zaznaczenie + + + + Copy + Kopiuj + + + + Copy selection + Kopiuj zaznaczenie + + + + Paste + Wklej + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + Kolor klipu + + + + Change + Zmień + + + + Reset + Resetuj + + + + Pick random + Wybierz losowe + + + + lmms::gui::CompressorControlDialog + + + Threshold: + Próg: + + + + Volume at which the compression begins to take place + Głośność, przy której rozpoczyna się kompresja + + + + Ratio: + Współczynnik: + + + + How far the compressor must turn the volume down after crossing the threshold + O ile kompresor musi zmniejszyć głośność po przekroczeniu progu + + + + Attack: + Narastanie: + + + + Speed at which the compressor starts to compress the audio + Prędkość, z jaką kompresor rozpoczyna kompresować dźwięk + + + + Release: + Opadanie: + + + + Speed at which the compressor ceases to compress the audio + Prędkość, z jaką kompresor przestaje kompresować dźwięk + + + + Knee: + Czułość: + + + + Smooth out the gain reduction curve around the threshold + Wygładzanie krzywej redukcji wzmocnienia wokół progu + + + + Range: + Zakres: + + + + Maximum gain reduction + Maksymalna redukcja wzmocnienia + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + Jak długo kompresor musi zareagować na sygnał łańcucha bocznego z wyprzedzeniem + + + + Hold: + + + + + Delay between attack and release stages + Opóźnienie między etapami narastania i opadania + + + + RMS Size: + Rozmiar RMS: + + + + Size of the RMS buffer + Rozmiar bufora RMS + + + + Input Balance: + Równowaga wejścia: + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + Równowaga wyjścia: + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + Równowaga stereo: + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + Wzmocnienie nachylenia: + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + Częstotliwość nachylenia: + + + + Center frequency of sidechain tilt filter + + + + + Mix: + Miks: + + + + Balance between wet and dry signals + Równowaga między sygnałami mokrymi i suchymi + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + Wzmocnienie wyjścia + + + + + Gain + Wzmocnienie + + + + Output volume + Głośność wyjściowa + + + + Input gain + Wzmocnienie wejścia + + + + Input volume + Głośność wejściowa + + + + Root Mean Square + Średnia kwadratowa + + + + Use RMS of the input + Użyj RMS wejścia + + + + Peak + Szczyt + + + + Use absolute value of the input + Użyj wartości bezwzględnej wejścia + + + + Left/Right + Lewy/prawy + + + + Compress left and right audio + Kompresuj lewy i prawy + + + + Mid/Side + Śr./b. + + + + Compress mid and side audio + Kompresuj środkowy i boczny + + + + Compressor + Kompresor + + + + Compress the audio + Kompresuj dźwięk + + + + Limiter + Limiter + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + Ustaw współczynnik na nieskończoność (nie ma gwarancji ograniczenia głośności dźwięku) + + + + Unlinked + Niepołączone + + + + Compress each channel separately + Kompresuj każdy kanał oddzielnie + + + + Maximum + Maksimum + + + + Compress based on the loudest channel + Kompresuj w oparciu o najgłośniejszy kanał + + + + Average + Średnie + + + + Compress based on the averaged channel volume + Kompresuj w oparciu o średniej głośności kanał + + + + Minimum + Minimum + + + + Compress based on the quietest channel + Kompresuj w oparciu o najcichszy kanał + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + Autoupiększanie wzmocnienia + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + Automatyczna zmiana upiększania wzmocnienia w zależności od ustawień progu, czułości i współczynnika + + + + + Soft Clip + + + + + Play the delta signal + Odtwrzaj sygnał delta + + + + Use the compressor's output as the sidechain input + Użyj wyjścia kompresora jako wejścia łańcucha bocznego + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + Ustawienia połączenia + + + + MIDI CONTROLLER + KONTROLER MIDI + + + + Input channel + Kanał wejściowy + + + + CHANNEL + KANAŁ + + + + Input controller + Kontroler wejściowy + + + + CONTROLLER + KONTROLER + + + + + Auto Detect + Autodetekcja + + + + MIDI-devices to receive MIDI-events from + Urządzenia MIDI odbierające zdarzenia MIDI z + + + + USER CONTROLLER + KONTROLER UŻYTKOWNIKA + + + + MAPPING FUNCTION + FUNKCJA MAPOWANIA + + + + OK + OK + + + + Cancel + Anuluj + + + + LMMS + LMMS + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + Rack kontrolerów + + + + Add + Dodaj + + + + Confirm Delete + Potwierdź usunięcie + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + Potwierdzić usunięcie? Występuje(ą) istniejące połączenie(a) związane z tym kontrolerem. Tego nie można cofnąć. + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + Zmień nazwę kontrolera + + + + Enter the new name for this controller + Wprowadź nową nazwę dla tego kontrolera + + + + LFO + LFO + + + + Move &up + Przes&uń w górę + + + + Move &down + Przesuń w &dół + + + + &Remove this controller + Usuń ten kont&roler + + + + Re&name this controller + Zmień &nazwę tego kontrolera + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + OPÓŹN + + + + Delay time + Czas opóźnienia + + + + FDBK + SPZW + + + + Feedback amount + Wartość sprzężenia zwrotnego + + + + RATE + + + + + LFO frequency + Częstotliwość LFO + + + + AMNT + WART + + + + LFO amount + Wartość LFO + + + + Out gain + Wzm. wyjśc. + + + + Gain + Wzmocnienie + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + WARTOŚĆ + + + + Number of all-pass filters + + + + + FREQ + CZĘST + + + + Frequency: + Częstotliwość: + + + + RESO + REZO + + + + Resonance: + Rezonans: + + + + FEED + SPRZ + + + + Feedback: + Sprzężenie zwrotne: + + + + DC Offset Removal + Usuwanie przesunięcia DC + + + + Remove DC Offset + Usuń przesunięcie DC + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + CZĘST + + + + + Cutoff frequency + Częstotliwość graniczna + + + + + RESO + REZO + + + + + Resonance + Rezonans + + + + + GAIN + WZMOC + + + + + Gain + Wzmocnienie + + + + MIX + MIKS + + + + Mix + Miks + + + + Filter 1 enabled + Włączono filtr 1 + + + + Filter 2 enabled + Włączono filtr 2 + + + + Enable/disable filter 1 + Włącz/wyłącz filtr 1 + + + + Enable/disable filter 2 + Włącz/wyłącz filtr 2 + + + + lmms::gui::DynProcControlDialog + + + INPUT + WEJŚCIE + + + + Input gain: + Wzmocnienie wejścia: + + + + OUTPUT + WYJŚCIE + + + + Output gain: + Wzmocnienie wyjścia: + + + + ATTACK + NARASTANIE + + + + Peak attack time: + Czas szczytu narastania: + + + + RELEASE + OPADANIE + + + + Peak release time: + Czas szczytu opadania: + + + + + Reset wavegraph + Resetuj wykres falowy + + + + + Smooth wavegraph + Płynny wykres falowy + + + + + Increase wavegraph amplitude by 1 dB + Zwiększ amplitudę wykresu falowego o 1 dB + + + + + Decrease wavegraph amplitude by 1 dB + Zmniejsz amplitudę wykresu falowego o 1 dB + + + + Stereo mode: maximum + Tryb stereo: maksimum + + + + Process based on the maximum of both stereo channels + Przetwarzaj w oparciu o maksimum z obu kanałów stereo + + + + Stereo mode: average + Tryb stereo: średnia + + + + Process based on the average of both stereo channels + Przetwarzaj w oparciu o średnią z obu kanałów stereo + + + + Stereo mode: unlinked + Tryb stereo: niepołączone + + + + Process each stereo channel independently + Przetwarzaj każdy kanał stereo niezależnie + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + Odtwarzaj (Spacja) + + + + Stop (Space) + Zatrzymaj (Spacja) + + + + Record + Nagrywaj + + + + Record while playing + Nagrywaj podczas odtwarzania + + + + Toggle Step Recording + Przełącz nagrywanie kroków + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + ŁAŃCUCH EFEKTÓW + + + + Add effect + Dodaj efekt + + + + lmms::gui::EffectSelectDialog + + + Add effect + Dodaj efekt + + + + + Name + Nazwa + + + + Type + Typ + + + + All + Wszystko + + + + Search + Szukaj + + + + Description + Opis + + + + Author + Autor + + + + lmms::gui::EffectView + + + On/Off + Wł./wył. + + + + W/D + M/S + + + + Wet Level: + Poziom mokry: + + + + DECAY + + + + + Time: + Czas: + + + + GATE + BRAMKA + + + + Gate: + Bramka: + + + + Controls + + + + + Move &up + Przes&uń w górę + + + + Move &down + Przesuń w &dół + + + + &Remove this plugin + &Usuń tę wtyczkę + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + WAR + + + + + Modulation amount: + Wartość modulacji: + + + + + DEL + DEL + + + + + Pre-delay: + Opóźnienie wstępne: + + + + + ATT + NAR + + + + + Attack: + Narastanie: + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + OPA + + + + Release: + Opadanie: + + + + SPD + SPD + + + + Frequency: + Częstotliwość: + + + + FREQ x 100 + CZĘST. x 100 + + + + Multiply LFO frequency by 100 + Pomnóż częstotliwość LFO przez 100 + + + + MOD ENV AMOUNT + MODULUJ WARTOŚĆ OBWIEDNI + + + + Control envelope amount by this LFO + Kontroluj wartość obwiedni przez ten LFO + + + + Hint + Podpowiedź + + + + Drag and drop a sample into this window. + Przeciągnij i upuść próbkę do tego okna. + + + + lmms::gui::EnvelopeGraph + + + Scaling + Skalowanie + + + + Dynamic + Dynamika + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + Używa odstępów bezwzględnych, ale przełącza się na odstępy względne, jeśli zabraknie miejsca + + + + Absolute + Bezwzględny + + + + Provides enough potential space for each segment but does not scale + Zapewnia wystarczająco dużo potencjalnego miejsca dla każdego segmentu, ale nie jest skalowalny + + + + Relative + Względny + + + + Always uses all of the available space to display the envelope graph + Zawsze wykorzystuje całe dostępne miejsce do wyświetlania wykresu obwiedni + + + + lmms::gui::EqControlsDialog + + + HP + HP + + + + Low-shelf + Dolnopółkowy + + + + Peak 1 + Szczyt 1 + + + + Peak 2 + Szczyt 2 + + + + Peak 3 + Szczyt 3 + + + + Peak 4 + Szczyt 4 + + + + High-shelf + Górnopółkowy + + + + LP + LP + + + + Input gain + Wzmocnienie wejścia + + + + + + Gain + Wzmocnienie + + + + Output gain + Wzmocnienie wyjścia + + + + Bandwidth: + Szerokość pasma: + + + + Octave + Oktawa + + + + Resonance: + + + + + Frequency: + Częstotliwość: + + + + LP group + Grupa LP + + + + HP group + Grupa HP + + + + lmms::gui::EqHandle + + + Reso: + Rez.: + + + + BW: + SP: + + + + + Freq: + Częst.: + + + + lmms::gui::ExportProjectDialog + + + Could not open file + Nie można otworzyć pliku + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + Nie można otworzyć pliku %1 do zapisu. +Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego plik i spróbuj ponownie! + + + + Export project to %1 + Eksportuj projekt do %1 + + + + ( Fastest - biggest ) + ( Najszybsze - największe ) + + + + ( Slowest - smallest ) + ( Najwolniejsze - najmniejsze ) + + + + Error + Błąd + + + + Error while determining file-encoder device. Please try to choose a different output format. + Wystąpił błąd podczas określania urządzenia kodującego plik. Spróbuj wybrać inny format wyjściowy. + + + + Rendering: %1% + Renderowanie: %1% + + + + lmms::gui::Fader + + + Set value + Ustaw wartość + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość między %1 a %2: + + + + Volume: %1 dBFS + Głośność: %1 dBFS + + + + lmms::gui::FileBrowser + + + Browser + Przeglądarka + + + + Search + Szukaj + + + + Refresh list + Odśwież listę + + + + User content + Zawartość użytkownika + + + + Factory content + Zawartość fabryczna + + + + Hidden content + Zawartość ukryta + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + Wyślij do aktywnej ścieżki instrumentu + + + + Open containing folder + Otwórz folder zawierający + + + + Song Editor + Edytor utworu + + + + Pattern Editor + Edytor szablonów + + + + Send to new AudioFileProcessor instance + Wyślij do nowej instancji AudioFileProcessorze + + + + Send to new instrument track + Wyślij do nowej ścieżki instrumentu + + + + (%2Enter) + (%2Enter) + + + + Send to new sample track (Shift + Enter) + Wyślij do nowej ścieżki próbek (Shift+Enter) + + + + Loading sample + Ładowanie próbki + + + + Please wait, loading sample for preview... + Czekaj. Ładowanie próbki do podglądu... + + + + Error + Błąd + + + + %1 does not appear to be a valid %2 file + %1 nie wydaje się być prawidłowym plikiem %2 + + + + --- Factory files --- + --- Pliki fabryczne --- + + + + lmms::gui::FileDialog + + + %1 files + %1 plików + + + + All audio files + Wszystkie pliki dźwiękowe + + + + Other files + Inne pliki + + + + lmms::gui::FlangerControlsDialog + + + DELAY + OPÓŹN + + + + Delay time: + Czas opóźnienia: + + + + RATE + + + + + Period: + Okres: + + + + AMNT + WART + + + + Amount: + Wartość: + + + + PHASE + FAZA + + + + Phase: + Faza: + + + + FDBK + SPZW + + + + Feedback amount: + Wartość sprzężenia zwrotnego: + + + + NOISE + SZUM + + + + White noise amount: + Wartość szumu białego: + + + + Invert + Odwróć + + + + lmms::gui::FloatModelEditorBase + + + Set linear + Ustaw liniowo + + + + Set logarithmic + Ustaw logarytmicznie + + + + + Set value + Ustaw wartość + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + Wprowadź nową wartość między -96.0 dBFS a 6.0 dBFS: + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość między %1 a %2: + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + Czas wobulacji: + + + + Sweep time + Czas wobulacji + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + Współczynnik wypełnienia szablonu fali: + + + + + Wave pattern duty cycle + Współczynnik wypełnienia szablonu fali + + + + Square channel 1 volume: + Głośność kanału kwadratowego 1: + + + + Square channel 1 volume + Głośność kanału kwadratowego 1 + + + + + + Length of each step in sweep: + Długość każdego kroku wobulacji: + + + + + + Length of each step in sweep + Długość każdego kroku wobulacji + + + + Square channel 2 volume: + Głośność kanału kwadratowego 2: + + + + Square channel 2 volume + Głośność kanału kwadratowego 2 + + + + Wave pattern channel volume: + Głośność kanału szablonu fali: + + + + Wave pattern channel volume + Głośność kanału szablonu fali + + + + Noise channel volume: + Głośność kanału szumu: + + + + Noise channel volume + Głośność kanału szumu + + + + SO1 volume (Right): + Głośność SO1 (prawy): + + + + SO1 volume (Right) + Głośność SO1 (prawy) + + + + SO2 volume (Left): + Głośność SO2 (lewy): + + + + SO2 volume (Left) + Głośność SO2 (lewy) + + + + Treble: + Soprany: + + + + Treble + Soprany + + + + Bass: + Basy: + + + + Bass + Basy + + + + Sweep direction + Kierunek wobulacji + + + + + + + + Volume sweep direction + Kierunek wobulacji głośności + + + + Shift register width + Szerokość rejestru przesuwnego + + + + Channel 1 to SO1 (Right) + Kanał 1 do SO1 (prawy) + + + + Channel 2 to SO1 (Right) + Kanał 2 do SO1 (prawy) + + + + Channel 3 to SO1 (Right) + Kanał 3 do SO1 (prawy) + + + + Channel 4 to SO1 (Right) + Kanał 4 do SO1 (prawy) + + + + Channel 1 to SO2 (Left) + Kanał 1 do SO2 (lewy) + + + + Channel 2 to SO2 (Left) + Kanał 2 do SO2 (lewy) + + + + Channel 3 to SO2 (Left) + Kanał 3 do SO2 (lewy) + + + + Channel 4 to SO2 (Left) + Kanał 4 do SO2 (lewy) + + + + Wave pattern graph + Wykres szablonu fali + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + Otwórz plik GIG + + + + Choose patch + Wybierz próbkę + + + + Gain: + Wzmocnienie: + + + + GIG Files (*.gig) + Pliki GIG (*.gig) + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + Wielkość ziarna: + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + Kształt ziarna: + + + + Fade Length: + Długość ściszenia: + + + + Feedback: + Sprzężenie zwrotne: + + + + Minimum Allowed Latency: + Minimalne dozwolone opóźnienie: + + + + Density: + Gęstość: + + + + Glide: + Poślizg: + + + + + Pitch + Odstrojenie + + + + + Pitch Stereo Spread + + + + + Open help window + Otwórz okno pomocy + + + + + Prefilter + Filtr wstępny + + + + lmms::gui::GuiApplication + + + Working directory + Katalog roboczy + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + Katalog roboczy LMMS %1 nie istnieje. Chcesz go utworzyć? Możesz zmienić katalog później w Edycja -> Ustawienia. + + + + Preparing UI + Przygotowywanie interfejsu użytkownika + + + + Preparing song editor + Przygotowywanie edytora utworu + + + + Preparing mixer + Przygotowywanie miksera + + + + Preparing controller rack + Przygotowanie racka kontrolerów + + + + Preparing project notes + Przygotowanie notek projektu + + + + Preparing microtuner + Przygotowywanie mikrotunera + + + + Preparing pattern editor + Przygotowanie edytora szablonów + + + + Preparing piano roll + Przygotowywanie edytora pianolowego + + + + Preparing automation editor + Przygotowanie edytora automatyki + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + ARPEGGIO + + + + RANGE + ZAKRES + + + + Arpeggio range: + Zakres arpeggio: + + + + octave(s) + oktaw(y) + + + + REP + POW + + + + Note repeats: + Powtórzenia nuty: + + + + time(s) + raz(y) + + + + CYCLE + CYKL + + + + Cycle notes: + Nuty cyklu: + + + + note(s) + nut(y) + + + + SKIP + POMIŃ + + + + Skip rate: + + + + + + + % + % + + + + MISS + + + + + Miss rate: + + + + + TIME + CZAS + + + + Arpeggio time: + Czas arpeggio: + + + + ms + ms + + + + GATE + BRAMKA + + + + Arpeggio gate: + Bramka arpeggio: + + + + Chord: + Akord: + + + + Direction: + Kierunek: + + + + Mode: + Tryb: + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + UKŁADANIE + + + + Chord: + Akord: + + + + RANGE + ZAKRES + + + + Chord range: + Zakres akordu: + + + + octave(s) + oktaw(y) + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + WŁĄCZ WEJŚCIE MIDI + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + KANA + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + WŁĄCZ WYJŚCIE MIDI + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + NUTA + + + + MIDI devices to receive MIDI events from + Urządzenia MIDI odbierające zdarzenia MIDI z + + + + MIDI devices to send MIDI events to + Urządzenia MIDI wysyłające zdarzenia MIDI do + + + + VELOCITY MAPPING + MAPOWANIE GŁOŚNOŚCI + + + + MIDI VELOCITY + GŁOŚNOŚĆ MIDI + + + + MIDI notes at this velocity correspond to 100% note velocity. + Nuty MIDI o tej głośności odpowiadają 100% głośności nut. + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + CEL + + + + FILTER + FILTR + + + + FREQ + CZĘST + + + + Cutoff frequency: + Częstotliwość graniczna: + + + + Hz + Hz + + + + Q/RESO + Q/REZO + + + + Q/Resonance: + Q/Rezonans: + + + + Envelopes, LFOs and filters are not supported by the current instrument. + Obwiednie, LFO i filtry nie są obsługiwane przez bieżący instrument. + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + Kanał miksera + + + + Volume + Głośność + + + + Volume: + Głośność: + + + + VOL + + + + + Panning + Panoramowanie + + + + Panning: + Panoramowanie: + + + + PAN + PAN + + + + MIDI + MIDI + + + + Input + Wejście + + + + Output + Wyjście + + + + Open/Close MIDI CC Rack + Otwórz/zamknij Rack MIDI CC + + + + %1: %2 + %1: %2 + + + + lmms::gui::InstrumentTrackWindow + + + Volume + Głośność + + + + Volume: + Głośność: + + + + VOL + + + + + Panning + Panoramowanie + + + + Panning: + Panoramowanie: + + + + PAN + PAN + + + + Pitch + Odstrojenie + + + + Pitch: + Odstrojenie: + + + + cents + centów + + + + PITCH + ODSTR + + + + Pitch range (semitones) + Zakres odstrojenia (półtony) + + + + RANGE + ZAKRES + + + + Mixer channel + Kanał miksera + + + + CHANNEL + KANAŁ + + + + Save current instrument track settings in a preset file + Zapisz bieżące ustawienia ścieżki instrumentu w pliku presetów + + + + SAVE + ZAPISZ + + + + Envelope, filter & LFO + Obwiednia, filtr i LFO + + + + Chord stacking & arpeggio + Układanie akordów i arpeggio + + + + Effects + Efekty + + + + MIDI + MIDI + + + + Tuning and transposition + Strojenie i transpozycja + + + + Save preset + Zapisz preset + + + + XML preset file (*.xpf) + Plik XML presetu (*.xpf) + + + + Plugin + Wtyczka + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + TRANSPOZYCJA OGÓLNA + + + + Enables the use of global transposition + Umożliwia korzystanie z transpozycji ogólnej + + + + Microtuner is not available for MIDI-based instruments. + Mikrotuner nie jest dostępny dla instrumentów opartych na MIDI. + + + + MICROTUNER + MIKROTUNER + + + + Active scale: + Aktywna skala: + + + + + Edit scales and keymaps + Edytuj skale i mapowania klawiszy + + + + Active keymap: + Aktywne mapowanie klawiszy: + + + + Import note ranges from keymap + Importuj zakresy nut z mapowania klawiszy + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + Po włączeniu tej opcji pierwsza, ostatnia i bazowa nuta tego instrumentu zostaną zastąpione wartościami określonymi przez wybrane mapowanie klawiszy. + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + Częstotliwość początkowa: + + + + End frequency: + Częstotliwość końcowa: + + + + Frequency slope: + Nachylenie częstotliwości: + + + + Gain: + Wzmocnienie: + + + + Envelope length: + Długość obwiedni: + + + + Envelope slope: + Nachylenie obwiedni: + + + + Click: + Kliknięcie: + + + + Noise: + Szum: + + + + Start distortion: + Początek zniekształcenia: + + + + End distortion: + Koniec zniekształcenia: + + + + lmms::gui::LOMMControlDialog + + + Depth: + Głębia: + + + + Compression amount for all bands + Stopień kompresji dla wszystkich pasm + + + + Time: + Czas: + + + + Attack/release scaling for all bands + Skalowanie narastania/opadania dla wszystkich pasm + + + + Input Volume: + Głośność wejściowa: + + + + Input volume + Głośność wejściowa + + + + Output Volume: + Głośność wyjściowa: + + + + Output volume + Głośność wyjściowa + + + + Upward Depth: + Głębia w górę: + + + + Upward compression amount for all bands + Stopień kompresji w górę dla wszystkich pasm + + + + Downward Depth: + Głębia w dół: + + + + Downward compression amount for all bands + Stopień kompresji w dół dla wszystkich pasm + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + Czas RMS: + + + + RMS size for sidechain signal (set to 0 for Peak mode) + Rozmiar RMS dla sygnału łańcucha bocznego (ustawiony na 0 dla trybu szczytowego) + + + + Knee: + Czułość: + + + + Knee size for all compressors + Rozmiar czułości dla wszystkich kompresorów + + + + Range: + Zakres: + + + + Maximum gain increase for all bands + Maksymalne zwiększenie wzmocnienia dla wszystkich pasm + + + + Balance: + Równowaga: + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + Przyspiesz czas narastania i opadania w przypadku wystąpienia stanów przejściowych + + + + Mix: + Miks: + + + + Wet/Dry of all bands + Suchy/mokry dla wszystkich pasm + + + + Feedback + Sprzężenie zwrotne + + + + Use output as sidechain signal instead of input + Użyj wyjścia jako sygnału łańcucha bocznego zamiast wejścia + + + + Mid/Side + Śr./b. + + + + Compress mid/side channels instead of left/right + Kompresuj kanały środkowe/boczne zamiast lewego/prawego + + + + + Suppress upward compression for side band + Wytłumienie kompresji w górę dla pasma bocznego + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + Wyczyść wszystkie parametry + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + Dostępne efekty + + + + + Unavailable Effects + Niedostępne efekty + + + + + Instruments + Instrumenty + + + + + Analysis Tools + Narzędzia analityczne + + + + + Don't know + Nieznane + + + + Type: + Typ: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + Połącz kanały + + + + Channel + Kanał + + + + lmms::gui::LadspaControlView + + + Link channels + Połącz kanały + + + + Value: + Wartość: + + + + lmms::gui::LadspaDescription + + + Plugins + Wtyczki + + + + Description + Opis + + + + Name: + Nazwa: + + + + Maker: + Twórca: + + + + Copyright: + Prawa autorskie: + + + + Requires Real Time: + Wymaga czasu rzeczywistego: + + + + + + Yes + Tak + + + + + + No + Nie + + + + Real Time Capable: + Możliwość pracy w czasie rzeczywistym: + + + + In Place Broken: + Na miejscu złamane: + + + + Channels In: + Kanały wejściowe: + + + + Channels Out: + Kanały wyjściowe: + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + Połącz kanały + + + + Link + Połącz + + + + Channel %1 + Kanał %1 + + + + Link channels + Połącz kanały + + + + lmms::gui::LadspaPortDialog + + + Ports + Porty + + + + Name + Nazwa + + + + Rate + + + + + Direction + Kierunek + + + + Type + Typ + + + + Min < Default < Max + Min. < Domyślne < Maks. + + + + Logarithmic + Logarytmiczny + + + + SR Dependent + Zależny od SR + + + + Audio + Dźwięk + + + + Control + + + + + Input + Wejście + + + + Output + Wyjście + + + + Toggled + Przełączalne + + + + Integer + Całkowite + + + + Float + Zmiennoprzecinkowe + + + + + Yes + Tak + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + Częst. graniczna: + + + + Resonance: + Rezonans: + + + + Env Mod: + Mod. obw.: + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + Fala piłokształtna + + + + Click here for a saw-wave. + Kliknij tutaj, aby przełączyć na falę piłokształtną. + + + + Triangle wave + Fala trójkątna + + + + Click here for a triangle-wave. + Kliknij tutaj, aby przełączyć na falę trójkątną. + + + + Square wave + Fala prostokątna + + + + Click here for a square-wave. + Kliknij tutaj, aby przełączyć na falę prostokątną. + + + + Rounded square wave + Fala prostokątna, zaokrąglona + + + + Click here for a square-wave with a rounded end. + Kliknij tutaj, aby przełączyć na falę prostokątną z zaokrąglonymi narożami. + + + + Moog wave + Fala Mooga + + + + Click here for a moog-like wave. + Kliknij tutaj, aby przełączyć na falę Mooga. + + + + Sine wave + Fala sinusoidalna + + + + Click for a sine-wave. + Kliknij tutaj, aby przełączyć na falę sinusoidalną. + + + + + White noise wave + Fala szumu białego + + + + Click here for an exponential wave. + Kliknij tutaj, aby przełączyć na falę wykładniczą. + + + + Click here for white-noise. + Kliknij tutaj, aby przełączyć na falę szumu białego. + + + + Bandlimited saw wave + Fala piłokształtna pasmowo ograniczona + + + + Click here for bandlimited saw wave. + Kliknij tutaj, aby przełączyć na falę piłokształtną pasmowo ograniczoną. + + + + Bandlimited square wave + Fala kwadratowa pasmowo ograniczona + + + + Click here for bandlimited square wave. + Kliknij tutaj, aby przełączyć na falę kwadratową pasmowo ograniczoną. + + + + Bandlimited triangle wave + Fala trójkątna pasmowo ograniczona + + + + Click here for bandlimited triangle wave. + Kliknij tutaj, aby przełączyć na falę trójkątną pasmowo ograniczoną. + + + + Bandlimited moog saw wave + Fala piłokształtna Mooga pasmowo ograniczona + + + + Click here for bandlimited moog saw wave. + Kliknij tutaj, aby przełączyć na falę piłokształtną Mooga pasmowo ograniczoną. + + + + lmms::gui::LcdFloatSpinBox + + + Set value + Ustaw wartość + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość między %1 a %2: + + + + lmms::gui::LcdSpinBox + + + Set value + Ustaw wartość + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość między %1 a %2: + + + + lmms::gui::LeftRightNav + + + + + Previous + Poprzedni + + + + + + Next + Następny + + + + Previous (%1) + Poprzedni (%1) + + + + Next (%1) + Następny (%1) + + + + lmms::gui::LfoControllerDialog + + + LFO + LFO + + + + BASE + BAZA + + + + Base: + Baza: + + + + FREQ + CZĘST + + + + LFO frequency: + Częstotliwość LFO: + + + + AMNT + WART + + + + Modulation amount: + Wartość modulacji: + + + + PHS + FAZ + + + + Phase offset: + Przesunięcie fazowe: + + + + degrees + stopni + + + + Sine wave + Fala sinusoidalna + + + + Triangle wave + Fala trójkątna + + + + Saw wave + Fala piłokształtna + + + + Square wave + Fala prostokątna + + + + Moog saw wave + Fala piłokształtna Mooga + + + + Exponential wave + Fala wykładnicza + + + + White noise + Szum biały + + + + User-defined shape. +Double click to pick a file. + Kształt zdefiniowany przez użytkownika. +Kliknij dwukrotnie myszką, aby wybrać plik. + + + + Multiply modulation frequency by 1 + Pomnóż częstotliwość modulacji przez 1 + + + + Multiply modulation frequency by 100 + Pomnóż częstotliwość modulacji przez 100 + + + + Divide modulation frequency by 100 + Podziel częstotliwość modulacji przez 100 + + + + lmms::gui::LfoGraph + + + %1 Hz + %1 Hz + + + + lmms::gui::MainWindow + + + Configuration file + Plik konfiguracyjny + + + + Error while parsing configuration file at line %1:%2: %3 + Błąd podczas analizowania pliku konfiguracyjnego w wierszu %1:%2: %3 + + + + Could not open file + Nie można otworzyć pliku + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + Nie można otworzyć pliku %1 do zapisu. +Upewnij się, że masz uprawnienia do zapisu do pliku i katalogu zawierającego plik i spróbuj ponownie! + + + + Project recovery + Odzyskiwanie projektu + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + Istnieje plik odzyskiwania. Wygląda na to, że ostatnia sesja nie zakończyła się prawidłowo lub inna instancja LMMS jest już uruchomiona. Chcesz odzyskać projekt tej sesji? + + + + + Recover + Odzyskaj + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + Odzyskaj plik. Nie uruchamiaj wielu instancji LMMS podczas wykonywania tej czynności. + + + + + Discard + Odrzuć + + + + Launch a default session and delete the restored files. This is not reversible. + Uruchom domyślną sesję i usuń przywrócone pliki. Tego nie można cofnąć. + + + + Version %1 + Wersja %1 + + + + Preparing plugin browser + Przygotowanie przeglądarki wtyczek + + + + Preparing file browsers + Przygotowanie przeglądarki plików + + + + My Projects + Moje projekty + + + + My Samples + Moje próbki + + + + My Presets + Moje presety + + + + My Home + Mój katalog główny + + + + Root Directory + Katalog główny + + + + Volumes + Głośność + + + + My Computer + Mój komputer + + + + Loading background picture + Ładowanie obrazu tła + + + + &File + &Plik + + + + &New + &Nowy + + + + &Open... + &Otwórz... + + + + &Save + Zapi&sz + + + + Save &As... + Z&apisz jako... + + + + Save as New &Version + Zapisz jako no&wą wersję + + + + Save as default template + Zapisz jako szablon domyślny + + + + Import... + Importuj... + + + + E&xport... + E&ksportuj... + + + + E&xport Tracks... + E&ksportuj ścieżki... + + + + Export &MIDI... + Eksportuj &MIDI... + + + + &Quit + Za&kończ + + + + &Edit + &Edycja + + + + Undo + Cofnij + + + + Redo + Ponów + + + + Scales and keymaps + Skale i mapowania klawiszy + + + + Settings + Ustawienia + + + + &View + &Widok + + + + &Tools + &Narzędzia + + + + &Help + &Pomoc + + + + Online Help + Pomoc online + + + + Help + Pomoc + + + + About + O LMMS + + + + Create new project + Utwórz nowy projekt + + + + Create new project from template + Utwórz nowy projekt z szablonu + + + + Open existing project + Otwórz istniejący projekt + + + + Recently opened projects + Ostatnio otwarte projekty + + + + Save current project + Zapisz bieżący projekt + + + + Export current project + Eksportuj bieżący projekt + + + + Metronome + Metronom + + + + + Song Editor + Edytor utworu + + + + + Pattern Editor + Edytor szablonów + + + + + Piano Roll + Edytor pianolowy + + + + + Automation Editor + Edytor automatyki + + + + + Mixer + Mikser + + + + Show/hide controller rack + Pokaż/ukryj racka kontrolerów + + + + Show/hide project notes + Pokaż/ukryj notatki projektu + + + + Untitled + Bez nazwy + + + + Recover session. Please save your work! + Odzyskana sesja. Zapisz swoją pracę! + + + + LMMS %1 + LMMS %1 + + + + Recovered project not saved + Odzyskany projekt nie został zapisany + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + Ten projekt został odzyskany z poprzedniej sesji. Obecnie nie jest zapisany i zostanie utracony, jeśli go nie zapiszesz. Chcesz go teraz zapisać? + + + + Project not saved + Projekt nie został zapisany + + + + The current project was modified since last saving. Do you want to save it now? + Bieżący projekt został zmodyfikowany od ostatniego zapisania. Chcesz go teraz zapisać? + + + + Open Project + Otwórz projekt + + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + + Save Project + Zapisz projekt + + + + LMMS Project + Projekt LMMS + + + + LMMS Project Template + Szablon projektu LMMS + + + + Save project template + Zapisz szablon projektu + + + + Overwrite default template? + Zastąpić szablon domyślny? + + + + This will overwrite your current default template. + Spowoduje to zastąpienie bieżącego szablonu domyślnego. + + + + Help not available + Pomoc niedostępna + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + Aktualnie pomoc dla LMMS jest niedostępna. +Odwiedź http://lmms.sf.net/wiki w celu uzyskania dokumentacji na temat LMMS. + + + + Controller Rack + Rack kontrolerów + + + + Project Notes + Notatki do projektu + + + + Fullscreen + Pełny ekran + + + + Volume as dBFS + Głośność jako dBFS + + + + Smooth scroll + Płynne przewijanie + + + + Enable note labels in piano roll + Włącz etykiety nut w edytorze pianolowym + + + + MIDI File (*.mid) + Plik MIDI (*.mid) + + + + + untitled + bez nazwy + + + + + Select file for project-export... + Wybierz plik do eksportu projektu... + + + + Select directory for writing exported tracks... + Wybierz katalog do zapisu eksportowanych ścieżek... + + + + Save project + Zapisz projekt + + + + Project saved + Projekt został zapisany + + + + The project %1 is now saved. + Projekt %1 został zapisany. + + + + Project NOT saved. + Projekt NIE został zapisany. + + + + The project %1 was not saved! + Projekt %1 nie został zapisany! + + + + Import file + Importuj plik + + + + MIDI sequences + Sekwencje MIDI + + + + Hydrogen projects + Projekty Hydrogen + + + + All file types + Wszystkie typy plików + + + + lmms::gui::MalletsInstrumentView + + + Instrument + Instrument + + + + Spread + Rozstrzał + + + + Spread: + Rozstrzał: + + + + Random + Losowe + + + + Random: + Losowe: + + + + Missing files + Brakujące pliki + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + Wygląda na to, że instalacja Stk jest niekompletna. Upewnij się, że pełny pakiet Stk jest zainstalowany! + + + + Hardness + Twardość + + + + Hardness: + Twardość: + + + + Position + Pozycja + + + + Position: + Pozycja: + + + + Vibrato gain + Wzmocnienie vibrato + + + + Vibrato gain: + Wzmocnienie vibrato: + + + + Vibrato frequency + Częstotliwość vibrato + + + + Vibrato frequency: + Częstotliwość vibrato: + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + Modulator + + + + Modulator: + Modulator: + + + + Crossfade + Płynne przechodzenie + + + + Crossfade: + Płynne przechodzenie: + + + + LFO speed + Prędkość LFO + + + + LFO speed: + Prędkość LFO: + + + + LFO depth + Głębia LFO + + + + LFO depth: + Głębia LFO: + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + Ciśnienie + + + + Pressure: + Ciśnienie: + + + + Speed + Prędkość + + + + Speed: + Prędkość: + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + - kontrola parametru VST + + + + VST sync + Synchronizacja VST + + + + + Automated + Automatyzowane + + + + Close + Zamknij + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + - kontrola wtyczki VST + + + + VST Sync + Synchronizacja VST + + + + + Automated + Automatyzowane + + + + Close + Zamknij + + + + lmms::gui::MeterDialog + + + + Meter Numerator + Numerator metryczny + + + + Meter numerator + Numerator metryczny + + + + + Meter Denominator + Denominator metryczny + + + + Meter denominator + Denominator metryczny + + + + TIME SIG + METRUM + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + Wybrany slot skali + + + + Selected keymap slot + Wybrany slot mapowania klawiszy + + + + + First key + Pierwszy klawisz + + + + + Last key + Ostatni klawisz + + + + + Middle key + Środkowy klawisz + + + + + Base key + Bazowy klawisz + + + + + + Base note frequency + Częstotliwość nuty bazowej + + + + Microtuner Configuration + Konfiguracja mikrotunera + + + + Scale slot to edit: + Slot skali do edycji: + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + Opis skali. Nie może zaczynać się od „!” i nie może zawierać znaku nowej linii. + + + + + Load + Załaduj + + + + + Save + Zapisz + + + + Load scale definition from a file. + Załaduj definicję skali z pliku. + + + + Save scale definition to a file. + Zapisz definicję skali do pliku. + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + Wprowadź interwały w oddzielnych wierszach. Liczby zawierające przecinek dziesiętny są traktowane jako centy. +Pozostałe dane wejściowe są traktowane jako stosunki całkowite i muszą mieć formę „a/b” lub „a”. +Jedność (0,0 centów lub stosunek 1/1) jest zawsze obecna jako ukryta pierwsza wartość; nie wprowadzaj jej ręcznie. + + + + Apply scale changes + Zastosuj zmiany skali + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + Sprawdź i zastosuj zmiany wprowadzone do wybranej skali. Aby użyć skali, wybierz ją w ustawieniach obsługiwanego instrumentu. + + + + Keymap slot to edit: + Slot mapowania klawiszy do edycji: + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + Opis mapowania klawiszy. Nie może zaczynać się od „!” i nie może zawierać znaku nowej linii. + + + + Load key mapping definition from a file. + Załaduj definicję mapowania klawiszy z pliku. + + + + Save key mapping definition to a file. + Zapisz definicję mapowania klawiszy do pliku. + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + Wprowadź mapowania klawiszy w osobnych wierszach. Każdy wiersz przypisuje stopień skali do klawisza MIDI, +zaczynając od środkowego klawisza i kontynuując sekwencję. +Szablon powtarza się dla klawiszy spoza wyraźnego zakresu mapowania klawiszy. +Wiele klawiszy można mapować do tego samego stopnia skali. +Wprowadź „x”, jeśli chcesz pozostawić klawisz wyłączony/niemapowany. + + + + FIRST + PIERWSZY + + + + First MIDI key that will be mapped + Pierwszy klawisz MIDI, który będzie mapowany + + + + LAST + OSTATNI + + + + Last MIDI key that will be mapped + Ostatni klawisz MIDI, który będzie mapowany + + + + MIDDLE + ŚRODKOWY + + + + First line in the keymap refers to this MIDI key + Pierwszy wiersz w mapowaniu klawiszy odnosi się do tego klawisza MIDI + + + + BASE N. + N. BAZO + + + + Base note frequency will be assigned to this MIDI key + Częstotliwość nuty bazowej zostanie przypisana do tego klawisza MIDI + + + + BASE NOTE FREQ + CZĘST NUTY BAZO + + + + Apply keymap changes + Zastosuj zmiany w mapowaniu klawiszy + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + Sprawdź i zastosuj zmiany wprowadzone do wybranego mapowania klawiszy. Aby użyć mapowania, wybierz je w ustawieniach obsługiwanego instrumentu. + + + + Scale parsing error + Błąd analizowania skali + + + + Scale name cannot start with an exclamation mark + Nazwa skali nie może zaczynać się od wykrzyknika + + + + Scale name cannot contain a new-line character + Nazwa skali nie może zawierać znaku nowej linii + + + + Interval defined in cents cannot be converted to a number + Interwał zdefiniowany w centach nie może być przekonwertowany na liczbę + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + Interwał zdefiniowany jako współczynnik nie może być ujemny + + + + Keymap parsing error + Błąd analizowania mapowania klawiszy + + + + Keymap name cannot start with an exclamation mark + Nazwa mapowania klawiszy nie może zaczynać się od wykrzyknika + + + + Keymap name cannot contain a new-line character + Nazwa mapowania klawiszy nie może zawierać znaku nowej linii + + + + Scale degree cannot be converted to a whole number + Stopień skali nie może być przekonwertowany na liczbę całkowitą + + + + Scale degree cannot be negative + Stopień skali nie może być ujemny + + + + Invalid keymap + Nieprawidłowe mapowanie klawiszy + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + Tonacja bazowa nie jest mapowana do żadnego stopnia skali. Nie zostanie wytworzony żaden dźwięk, ponieważ nie ma możliwości przypisania częstotliwości odniesienia do żadnej nuty. + + + + Open scale + Otwórz skalę + + + + + Scala scale definition (*.scl) + Definicja skali Scala (*.scl) + + + + Scale load failure + Błąd ładowania skali + + + + + Unable to open selected file. + Nie można otworzyć wybranego pliku. + + + + Open keymap + Otwórz mapowanie klawiszy + + + + + Scala keymap definition (*.kbm) + Definicja mapowania klawiszy Scala (*.kbm) + + + + Keymap load failure + Błąd ładowania mapowania klawiszy + + + + Save scale + Zapisz skalę + + + + Scale save failure + Błąd zapisywania skali + + + + + Unable to open selected file for writing. + Nie można otworzyć wybranego pliku do zapisu. + + + + Save keymap + Zapisz mapowanie klawiszy + + + + Keymap save failure + Błąd zapisywania mapowania klawiszy + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + Rack MIDI CC - %1 + + + + MIDI CC Knobs: + Pokrętła MIDI CC: + + + + CC %1 + CC %1 + + + + lmms::gui::MidiClipView + + + + Transpose + Transponuj + + + + Semitones to transpose by: + Półtony do transpozycji o: + + + + Open in piano-roll + Otwórz w edytorze pianolowym + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + Wyczyść wszystkie nuty + + + + Reset name + Resetuj nazwę + + + + Change name + Zmień nazwę + + + Add steps Dodaj kroki + Remove steps Usuń kroki + Clone Steps Klonuj kroki - PeakController + lmms::gui::MidiSetupWidget - 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. + + Device + Urządzenie - PeakControllerDialog + lmms::gui::MixerChannelLcdSpinBox - PEAK - PEAK + + Assign to: + Przypisz do: + + New Mixer Channel + Nowy kanał miksera + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość między %1 a %2: + + + + Set value + Ustaw wartość + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + Cisza + + + + Mute this channel + + + + + Solo + Solo + + + + Solo this channel + + + + + Fader %1 + Ściszanie %1 + + + + Move &left + Przesuń w &lewo + + + + Move &right + P&rzesuń w prawo + + + + Rename &channel + Zmień nazwę &kanału + + + + R&emove channel + &Usuń kanał + + + + Remove &unused channels + &Usuń nieużywane kanały + + + + Color + Kolor + + + + Change + Zmień + + + + Reset + Resetuj + + + + Pick random + Wybierz losowe + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + Ten kanał miksera jest używany. +Na pewno chcesz usunąć ten kanał? + +Ostrzeżenie: Tej operacji nie można cofnąć. + + + + Confirm removal + Potwierdź usunięcie + + + + Don't ask again + Nie pytaj ponownie + + + + lmms::gui::MixerView + + + Mixer + Mikser + + + + lmms::gui::MonstroView + + + Operators view + Widok operatora + + + + Matrix view + Widok macierzy + + + + + + Volume + Głośność + + + + + + Panning + Panoramowanie + + + + + + Coarse detune + + + + + + + semitones + półtów + + + + + Fine tune left + + + + + + + + cents + centów + + + + + Fine tune right + + + + + + + Stereo phase offset + Przesunięcie fazowe stereo + + + + + + + + deg + st. + + + + Pulse width + Współczynnik wypełnienia impulsu + + + + 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 + Narastanie + + + + + Rate + + + + + + Phase + Faza + + + + + Pre-delay + Opóźnienie wstępne + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + Opadanie + + + + + Slope + Nachylenie + + + + Mix osc 2 with osc 3 + Miksuj osc 2 z osc 3 + + + + Modulate amplitude of osc 3 by osc 2 + Moduluj amplitudę osc 3 z osc 2 + + + + Modulate frequency of osc 3 by osc 2 + Moduluj częstotliwość osc 3 z osc 2 + + + + Modulate phase of osc 3 by osc 2 + Moduluj fazę osc 3 z osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + Wartość modulacji + + + + lmms::gui::MultitapEchoControlDialog + + + Length + Długość + + + + Step length: + Długość kroku: + + + + Dry + Suchy + + + + Dry gain: + Wzmocnienie suchego: + + + + Stages + Etapy + + + + Low-pass stages: + + + + + Swap inputs + Zamień wyjścia + + + + Swap left and right input channels for reflections + Zamień lewy i prawy kanał wejściowy dla odbić + + + + lmms::gui::NesInstrumentView + + + + + + Volume + Głośność + + + + + + Coarse detune + + + + + + + Envelope length + Długość obwiedni + + + + Enable channel 1 + Włącz kanał 1 + + + + Enable envelope 1 + Włącz obwiednię 1 + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + Włącz wobulację 1 + + + + + Sweep amount + Wartość wobulacji + + + + + Sweep rate + Częstotliwość wobulacji + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + Włącz kanał 2 + + + + Enable envelope 2 + Włącz obwiednię 2 + + + + Enable envelope 2 loop + + + + + 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 + + + + + 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 + Głośność główna + + + + Vibrato + Vibrato + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + Narastanie + + + + + Decay + + + + + + Release + Opadanie + + + + + Frequency multiplier + Mnożnik częstotliwości + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + Zniekształcenie: + + + + Volume: + Głośność: + + + + Randomise + Losowo + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + Głośność osc %1: + + + + Osc %1 panning: + Panoramowanie osc %1: + + + + Osc %1 stereo detuning + Odstrojenie stereo osc %1 + + + + cents + centów + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + Oscyloskop + + + + Click to enable + Kliknij, aby włączyć + + + + lmms::gui::PatmanView + + + Open patch + Otwórz próbkę + + + + Loop + Pętla + + + + Loop mode + Tryb pętli + + + + Tune + Dostrojenie + + + + Tune mode + Tryb dostrojenia + + + + No file selected + Nie wybrano pliku + + + + Open patch file + Otwórz plik Patch + + + + Patch-Files (*.pat) + Pliki Patch (*.pat) + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + Otwórz w edytorze szablonów + + + + Reset name + Resetuj nazwę + + + + Change name + Zmień nazwę + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + Edytor szablonów + + + + Play/pause current pattern (Space) + Odtwarzaj/wstrzymaj bieżący szablon (Spacja) + + + + Stop playback of current pattern (Space) + Zatrzymaj odtwarzanie bieżącego szablonu (Spacja) + + + + Pattern selector + Selektor szablonu + + + + Track and step actions + Czynności ścieżki i kroku + + + + New pattern + Nowy szablon + + + + Clone pattern + Klonuj szablon + + + + Add sample-track + Dodaj ścieżkę-próbkę + + + + Add automation-track + Dodaj ścieżkę-automatyki + + + + Remove steps + Usuń kroki + + + + Add steps + Dodaj kroki + + + + Clone Steps + Klonuj kroki + + + + lmms::gui::PeakControllerDialog + + + PEAK + SZCZ + + + LFO Controller Kontroler LFO - PeakControllerEffectControlDialog + lmms::gui::PeakControllerEffectControlDialog + BASE BAZA - Base amount: - Współczynnik bazy: - - - Modulation amount: - Współczynnik modulacji: - - - Attack: - Atak: - - - Release: - Wybrzmiewanie: + + Base: + Baza: + AMNT - ILOŚĆ + WART + + Modulation amount: + Wartość modulacji: + + + MULT MNOŻ - Amount Multiplicator: - Mnożnik ilości: + + Amount multiplicator: + Mnożnik wartości: + ATCK - ATAK + NARA + + Attack: + Narastanie: + + + DCAY - ZANIK + + + Release: + Opadanie: + + + + TRSH + PRÓG + + + Treshold: Próg: - TRSH - PRÓG: - - - - 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 + + Absolute value + Wartość bezwzględna - PianoRoll + lmms::gui::PeakIndicator - Please open a pattern by double-clicking on it! - Otwórz wzorzec podwójnym kliknięciem! - - - Last note - Ostatnia nuta - - - Note lock - Blokada nuty + + -inf + -niesk. + + + lmms::gui::PianoRoll + Note Velocity - Głośność Nuty + Głośność nuty + Note Panning - Panoramowanie Nuty + Panoramowanie nuty + Mark/unmark current semitone Zaznacz/odznacz bieżący półton - Mark 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 + Zaznacz wszystkie nuty dla tej tonacji + + + + Note lock + Blokada nuty + + + + Last note + Ostatnia nuta + + + + No key + Brak tonacji + + + + No scale + Brak skali + + + + No chord + Brak akordu + + + + Nudge + Szturchaj + + + + Snap + Przyciągaj + + + + Velocity: %1% + Głośność: %1% + + + + Panning: %1% left + Panoramowanie: %1% w lewo + + + + Panning: %1% right + Panoramowanie: %1% w prawo + + + + Panning: center + Panoramowanie: środek + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + Otwórz klip, klikając na niego dwukrotnie myszką! + + + + + Please enter a new value between %1 and %2: + Wprowadź nową wartość między %1 a %2: - PianoRollWindow + lmms::gui::PianoRollWindow - Play/pause current pattern (Space) - Odtwórz/wstrzymaj obecny wzorzec (spacja) + + Play/pause current clip (Space) + Odtwarzaj/wstrzymaj bieżący klip (Spacja) + Record notes from MIDI-device/channel-piano - Nagraj nuty za pomocą urządzenia MIDI/kanału piano + - Record notes from MIDI-device/channel-piano while playing song or BB track - Nagraj nuty za pomocą urządzenia MIDI/kanału piano podczas odtwarzania kompozycji lub ścieżki perkusji/basu + + Record notes from MIDI-device/channel-piano while playing song or pattern track + - Stop playing of current pattern (Space) - Zatrzymaj odtwarzanie obecnego wzorca (spacja) + + 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. - Kliknij tutaj jeśli chcesz odtworzyć bieżący wzorzec. Jest to użyteczne podczas edycji. Wzorzec zostanie automatycznie zapętlony, gdy osiąga koniec. + + Stop playing of current clip (Space) + Zatrzymaj odtwarzanie bieżącego klipu (Spacja) - 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. + + Edit actions + Edytuj czynności + Draw mode (Shift+D) Tryb rysowania (Shift+D) + Erase mode (Shift+E) Tryb wymazywania (Shift+E) + Select mode (Shift+S) Tryb zaznaczania (Shift+S) - 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 - - - Copy paste controls - Regulacja kopiuj wklej - - - Timeline controls - Kontrola osi czasu - - - Zoom and note controls - Regulacja nut i powiększenia - - - Piano-Roll - %1 - Edytor Pianolowy - %1 - - - Piano-Roll - no pattern - Edytor Pianolowy - brak wzorca + + Pitch Bend mode (Shift+T) + Tryb pitchbend (Shift+T) + Quantize Kwantyzuj + + + Quantize positions + Kwantyzuj pozycje + + + + Quantize lengths + Kwantyzuj długości + + + + File actions + Czynności pliku + + + + Import clip + Importuj klip + + + + + Export clip + Eksportuj klip + + + + Copy paste controls + + + + + Cut (%1+X) + Wytnij (%1+X) + + + + Copy (%1+C) + Kopiuj (%1+C) + + + + Paste (%1+V) + Wklej (%1+V) + + + + Timeline controls + + + + + Glue + Klej + + + + Knife + Nóż + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + Minimalna długość jako ostatnia + + + + Max length as last + Maksymalna długość jako ostatnia + + + + Zoom and note controls + + + + + Horizontal zooming + Powiększanie poziome + + + + Vertical zooming + Powiększanie pionowe + + + + Quantization + Kwantyzacja + + + + Note length + Długość nuty + + + + Key + Tonacja + + + + Scale + Skala + + + + Chord + Akord + + + + Snap mode + Tryb przyciągania + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + Edytor pianolowy - %1 + + + + + Piano-Roll - no clip + Edytor pianolowy - brak klipu + + + + + XML clip file (*.xpt *.xptz) + Plik XML klipu (*.xpt *.xptz) + + + + Export clip success + Eksportowanie klipu zakończone pomyślnie + + + + Clip saved to %1 + Klip zapisany do %1 + + + + Import clip. + Importuj klip + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + Zamierzasz zaimportować klip. To zastąpi Twój bieżący klip. Chcesz kontynuować? + + + + Open clip + Otwórz klip + + + + Import clip success + Importowanie klipu zakończone pomyślnie + + + + Imported clip %1! + Zaimportowano klip %1! + - PianoView + lmms::gui::PianoView + Base note - Nuta podstawowa + Nuta bazowa + + + + First note + Pierwsza nuta + + + + Last note + Ostatnia nuta - Plugin + lmms::gui::PluginBrowser - Plugin not found - Nie znaleziono wtyczki + + Instrument Plugins + Wtyczki instrumentów - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Wtyczka "%1" Nie została odnaleziona albo nie może zostać załadowana! -Powód: "%2" - - - Error while loading plugin - Wystąpił błąd podczas ładowania wtyczki - - - Failed to load plugin "%1"! - Nie można załadować wtyczki "%1"! - - - - PluginBrowser - + Instrument browser Przeglądarka instrumentów - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Przeciągnij instrument do Edytora utworu, Edytora perkusji i linii basu lub na istniejącą ścieżkę instrumentu. + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + Przeciągnij instrument do edytora utworu, edytora szablonów lub istniejącej ścieżki instrumentu. - Instrument Plugins - Wtyczki instrumentów + + Search + Szukaj - PluginFactory + lmms::gui::PluginDescWidget - 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! + + Send to new instrument track + Wyślij do nowej ścieżki instrumentu - ProjectNotes + lmms::gui::ProjectNotes + + Project Notes + Notatki projektu + + + + Enter project notes here + Wprowadź tutaj notatki dotyczące projektu + + + Edit Actions - Edytuj akcje + Edytuj czynności + &Undo - C&ofnij + &Cofnij + %1+Z %1+Z + &Redo - Powtó&rz + &Ponów + %1+Y %1+Y + &Copy &Kopiuj + %1+C %1+C + Cu&t Wy&tnij + %1+X %1+X + &Paste &Wklej + %1+V %1+V + Format Actions - Formatowanie + Czynności formatowania + &Bold - Pogru&bienie + Pogru&biona + %1+B %1+B + &Italic - Pochylen&ie + &Kursywa + %1+I %1+I + &Underline - P&odkreślenie + &Podkreślona + %1+U %1+U + &Left Do &lewej + %1+L %1+L + C&enter - &Do środka + &Wyśrodkuj + %1+E %1+E + &Right Do p&rawej + %1+R %1+R + &Justify Wy&justuj + %1+J %1+J + &Color... - &Kolor… - - - Project Notes - Pokaż/ukryj notatki projektu - - - Enter project notes here - Wprowadź notatki dotyczące projektu + &Kolor... - ProjectRenderer + lmms::gui::RecentProjectsMenu - WAV-File (*.wav) - Plik WAV (*.wav) - - - Compressed OGG-File (*.ogg) - Skompresowany plik OGG (*.ogg) - - - FLAC-File (*.flac) - Plik FLAC (*.flac) - - - Compressed MP3-File (*.mp3) - Skompresowany plik MP3 (*.mp3) + + &Recently Opened Projects + Ostatnio otwa&rte projekty - QWidget - - Name: - Nazwa: - - - Maker: - Twórca: - - - Copyright: - Prawa autorskie: - - - Requires Real Time: - Wymaga czasu rzeczywistego: - - - Yes - Tak - - - No - Nie - - - Real Time Capable: - Zdolność do pracy w czasie rzeczywistym: - - - In Place Broken: - - - - Channels In: - Kanały wejściowe: - - - Channels Out: - Kanały wyjściowe: - - - File: - Plik: - - - File: %1 - Plik: %1 - - - - RenameDialog + lmms::gui::RenameDialog + Rename... - Zmień nazwę… + Zmień nazwę... - ReverbSCControlDialog + lmms::gui::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 + lmms::gui::SaControlsDialog - Input Gain - Wzmocnienie wejścia + + Pause + Wstrzymaj - Size - Rozmiar + + Pause data acquisition + Wstrzymaj akwizycję danych - Color - Kolor + + Reference freeze + Zamrożenie odniesienia - Output Gain - Wzmocnienie wyścia + + Freeze current input as a reference / disable falloff in peak-hold mode. + Zamroź bieżące wejście jako odniesienie/wyłącz zanik w trybie utrzymywania wartości szczytowej. + + + + Waterfall + Wodospad + + + + Display real-time spectrogram + Wyświetlaj spektrogram w czasie rzeczywistym + + + + Averaging + Uśrednianie + + + + Enable exponential moving average + Włącz wykładniczą średnią ruchomą + + + + Stereo + Stereo + + + + Display stereo channels separately + Wyświetlaj kanały stereo oddzielnie + + + + Peak hold + + + + + Display envelope of peak values + Wyświetlaj obwiednię wartości szczytowych + + + + Logarithmic frequency + Częstotliwość logarytmiczna + + + + Switch between logarithmic and linear frequency scale + Przełącz między skalą częstotliwości logarytmicznej i liniowej + + + + + Frequency range + Zakres częstotliwości + + + + Logarithmic amplitude + Amplituda logarytmiczna + + + + Switch between logarithmic and linear amplitude scale + Przełącz między skalą amplitudy logarytmicznej i liniowej + + + + + Amplitude range + Zakres amplitudy + + + + + FFT block size + Rozmiar bloku FFT + + + + + FFT window type + Typ okna FFT + + + + Envelope res. + Rozdz. obwiedni + + + + Increase envelope resolution for better details, decrease for better GUI performance. + Zwiększ rozdzielczość obwiedni, aby uzyskać lepsze szczegóły, zmniejsz ją, aby uzyskać lepszą wydajność graficznego interfejsu użytkownika. + + + + Maximum number of envelope points drawn per pixel: + Maksymalna liczba punktów obwiedni narysowanych na piksel: + + + + Spectrum res. + Rozdz. widma + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + Zwiększ rozdzielczość widma, aby uzyskać lepsze szczegóły, zmniejsz ją, aby uzyskać lepszą wydajność graficznego interfejsu użytkownika. + + + + Maximum number of spectrum points drawn per pixel: + Maksymalna liczba punktów widma narysowanych na piksel: + + + + Falloff factor + Współczynnik zaniku + + + + Decrease to make peaks fall faster. + Zmniejsz, aby szczyty opadały szybciej. + + + + Multiply buffered value by + Pomnóż wartość buforowaną przez + + + + Averaging weight + Uśrednianie wagi + + + + Decrease to make averaging slower and smoother. + Zmniejsz, aby uśrednianie było wolniejsze i płynniejsze. + + + + New sample contributes + Nowa próbka przyczynia się + + + + Waterfall height + Wysokość wodospadu + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + Zwiększ, aby uzyskać wolniejsze przewijanie, zmniejsz, aby lepiej widzieć szybkie przejścia. Ostrzeżenie: średnie użycie procesora. + + + + Number of lines to keep: + Liczba linii do zachowania: + + + + Waterfall gamma + Gamma wodospadu + + + + Decrease to see very weak signals, increase to get better contrast. + Zmniejsz, aby zobaczyć bardzo słabe sygnały, zwiększ, aby uzyskać lepszy kontrast. + + + + Gamma value: + Wartość gamma: + + + + Window overlap + Nakładanie się okien + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + Zwiększ, aby zapobiec pomijaniu szybkich przejść docierających w pobliże krawędzi okna FFT. Ostrzeżenie: wysokie użycie procesora. + + + + Number of times each sample is processed: + Liczba przetworzenia każdego sampla: + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + Zwiększ, aby uzyskać płynniej wyglądające widmo. Ostrzeżenie: wysokie użycie procesora. + + + + Processing buffer is + Bufor przetwarzania jest + + + + steps larger than input block + krokami większymi niż blok wejściowy + + + + Advanced settings + Ustwawienia zaawansowane + + + + Access advanced settings + Dostęp do ustawień zaawansowanych - SampleBuffer + lmms::gui::SampleClipView - Open audio file - Otwórz plik dźwiękowy + + Double-click to open sample + Kliknij dwukrotnie myszką, aby otworzyć próbkę - Wave-Files (*.wav) - Pliki Wave (*.wav) + + Reverse sample + Odwróć próbkę - 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) + + Set as ghost in automation editor + - SampleTCOView + lmms::gui::SampleTrackView - double-click to select sample - naciśnij dwukrotnie, aby wybrać sampel + + Mixer channel + Kanał miksera - Delete (middle mousebutton) - Usuń (środkowy przycisk myszy) - - - Cut - Wytnij - - - Copy - Kopiu - - - Paste - klej - - - Mute/unmute (<%1> + middle click) - Wycisz/cofnij wyciszenie (<%1> + środkowy przycisk myszy) - - - - SampleTrack - - Sample track - Ścieżka audio - - - Volume - Głośność - - - Panning - Panoramowanie - - - - SampleTrackView - + Track volume Głośność ścieżki + Channel volume: Głośność kanału: + VOL - VOL + + Panning Panoramowanie + Panning: Panoramowanie: + PAN PAN + + + %1: %2 + %1: %2 + - SetupDialog + lmms::gui::SampleTrackWindow - Setup LMMS - Konfiguracja LMMS + + Sample volume + Głośność próbki - General settings - Ustawienia ogólne + + Volume: + Głośność: - BUFFER SIZE - ROZMIAR BUFORU + + VOL + - Reset to default-value - Przywróć do domyślnej wartości + + Panning + Panoramowanie - MISC - DODATKOWE + + Panning: + Panoramowanie: + + PAN + PAN + + + + Mixer channel + Kanał miksera + + + + CHANNEL + KANAŁ + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + Odrzuć połączenia MIDI + + + + Save As Project Bundle (with resources) + Zapisz jako pakiet projektu (z zasobami) + + + + lmms::gui::SetupDialog + + + Settings + Ustawienia + + + + + General + Ogólne + + + + Graphical user interface (GUI) + Graficzny interfejs użytkownika (GUI) + + + + Display volume as dBFS + Wyświetlaj głośność jako dBFS + + + Enable tooltips Włącz podpowiedzi - Show restart warning after changing settings - Wyświetlaj przypomnienia o ponownym uruchomieniu po zmianie ustawień + + Enable master oscilloscope by default + Włącz domyślnie oscyloskop główny - Compress project files per default + + Enable all note labels in piano roll + Włącz etykiety wszystkich nut w edytorze pianolowym + + + + Enable compact track buttons + Włącz kompaktowe przyciski ścieżek + + + + Enable one instrument-track-window mode + Włącz tryb jednego okna ścieżki instrumentu + + + + Show sidebar on the right-hand side + Pokaż pasek boczny po prawej stronie + + + + Let sample previews continue when mouse is released + Pozwól na kontynuowanie podglądu próbki po zwolnieniu myszki + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + Pokaż ostrzeżenie podczas usuwania ścieżek + + + + Show warning when deleting a mixer channel that is in use + Pokaż ostrzeżenie podczas usuwania kanału miksera, który jest w użyciu + + + + Dual-button + Podwójny przycisk + + + + Grab closest + Złap najbliższy + + + + Handles + Uchwyty + + + + Loop edit mode + Tryb edycji pętli + + + + Projects + Projekty + + + + Compress project files by default Domyślnie kompresuj pliki projektu - One instrument track window mode - Tryb jednego, wspólnego okna dla wszystkich instrumentów + + Create a backup file when saving a project + Utwórz plik kopii zapasowej podczas zapisywania projektu - HQ-mode for output audio-device - Tryb wysokiej jakości wyjścia urządzenia audio + + Reopen last project on startup + Otwórz ponownie ostatni projekt podczas uruchamiania - Compact track buttons - Kompaktowe przyciski ścieżek + + Language + Język - Sync VST plugins to host playback - Synchronizuj wtyczki VST z hostem + + + Performance + Wydajność - Enable note labels in piano roll - Włącz etykiety nut w edytorze pianolowym. + + Autosave + Autozapisywanie - Enable waveform display by default - Włącz domyślnie wyświetlanie przebiegu + + Enable autosave + Włącz autozapisywanie + + Allow autosave while playing + Zezwalaj na autozapisywanie podczas odtwarzania + + + + User interface (UI) effects vs. performance + Efekty interfejsu użytkownika (UI) a wydajność + + + + Smooth scroll in song editor + Płynne przewijanie w edytorze utworu + + + + Display playback cursor in AudioFileProcessor + Wyświetlaj wskaźnik odtwarzania w AudioFileProcessorze + + + + Plugins + Wtyczki + + + + VST plugins embedding: + Osadzanie wtyczek VST: + + + + No embedding + Brak osadzania + + + + Embed using Qt API + Osadź za pomocą API Qt + + + + Embed using native Win32 API + Osadź za pomocą API Win32 + + + + Embed using XEmbed protocol + Osadź za pomocą protokołu XEmbed + + + + Keep plugin windows on top when not embedded + Trzymaj okna wtyczek na wierzchu, gdy nie są osadzone + + + Keep effects running even without input - Pozostaw efekty włączone, nawet bez wejścia + Trzymaj efekty włączone, nawet bez wyjścia - Create backup file when saving a project - Twórz kopię zapasową przy zapisywaniu pliku + + + Audio + Dźwięk - LANGUAGE - JĘZYK + + Audio interface + Interfejs dźwięku + + Buffer size + Rozmiar bufora + + + + Reset to default value + Resetuj do wartości domyślnej + + + + + MIDI + MIDI + + + + MIDI interface + Interfejs MIDI + + + + Automatically assign MIDI controller to selected track + Automatyczne przypisywanie kontrolera MIDI do zaznaczonej ścieżki + + + + Behavior when recording + Zachowanie podczas nagrywania + + + + Auto-quantize notes in Piano Roll + Autokwantyzacja nut w edytorze pianolowym + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + Jeśli włączone, nuty będą automatycznie kwantyzowane podczas nagrywania ich z kontrolera MIDI. Jeśli wyłączone, są zawsze nagrywane w najwyższej możliwej rozdzielczości. + + + + Paths Ścieżki + 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ślny plik SF2 + + + + GIG directory + Katalog GIG + + + + Theme directory + Katalog motywów + + + Background artwork Grafika w tle - STK rawwave directory - Katalog STK rawwave - - - Default Soundfont File - Domyślny plik SoundFont - - - Performance settings - Ustawienia wydajności - - - UI effects vs. performance - Efekty interfejsu a wydajność - - - Smooth scroll in Song Editor - Płynne przewijanie w Edytorze kompozycji - - - Show playback cursor in AudioFileProcessor - Wyświetlaj wskaźnik odtwarzania w AudioFileProcessorze - - - Audio settings - Ustawienia dźwięku - - - AUDIO INTERFACE - INTERFEJS AUDIO - - - MIDI settings - Ustawienia MIDI - - - MIDI INTERFACE - INTERFEJS MIDI + + Some changes require restarting. + Niektóre zmiany wymagają ponownego uruchomienia. + OK OK + Cancel Anuluj - Restart LMMS - Uruchom ponownie LMMS + + minutes + minuty - Please note that most changes won't take effect until you restart LMMS! - Większość zmian będzie zauważalna dopiero po zrestartowaniu LMMS! + + minute + minuta + + Disabled + Wyłączono + + + + Autosave interval: %1 + Częstotliwość autozpisywnia: %1 + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + Aktualnie wybrana wartość nie jest potęgą 2 (32, 64, 128, 256). Niektóre wtyczki mogą być niedostępne. + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + Aktualnie wybrana wartość jest mniejsza lub równa 32. Niektóre wtyczki mogą być niedostępne. + + + Frames: %1 Latency: %2 ms Ramki: %1 Opóźnienie: %2 ms - 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 + + Choose the LMMS working directory Wybierz katalog roboczy LMMS - Choose your VST-plugin directory - Wybierz katalog na wtyczki VST + + Choose your VST plugins directory + Wybierz swój katalog wtyczek 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 LADSPA plugins directory + Wybierz swój katalog wtyczek LADSPA + Choose your SF2 directory Wybierz swój katalog z SF2 - minutes - minuty + + Choose your default SF2 + Wybierz swój domyślny plik SF2 - minute - minuta + + Choose your GIG directory + Wybierz swój katalog z plikami GIG - Display volume as dBFS - Wyświetlaj głośność jako dBFS + + Choose your theme directory + Wybierz swój katalog motywów - Enable auto-save - Włącz automatyczny zapis - - - Allow auto-save while playing - Zezwalaj na automatyczny zapis podczas odtwarzania - - - Disabled - Wyłączono - - - Auto-save interval: %1 - Częstotliwość automatycznego zapisu: %1 - - - 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. + + Choose your background picture + Wybierz swój obraz tła - Song - - Tempo - Tempo - - - Master volume - Głośność główna - - - Master pitch - Odstrojenie główne - - - 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 - - - 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) - - - LMMS Error report - Zgłoszenie błędu LMMS - - - Save project - Zapisz projekt - - - - 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. - - - 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. - - - - 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 - - - Edit actions - Edytuj akcje - - - Timeline controls - Kontrola osi czasu - - - Zoom controls - Kontrola powiększenia - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - Spektrum liniowe - - - Linear Y axis - Oś liniowa Y - - - - SpectrumAnalyzerControls - - Linear spectrum - Spektrum liniowe - - - Linear Y axis - Oś liniowa Y - - - Channel mode - Tryb kanału - - - - SubWindow - - Close - Zamkni - - - Maximize - Minimalizuj - - - Restore - Przywróć - - - - TabWidget - - Settings for %1 - Ustawienia %1 - - - - 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 - - - - TimeDisplayWidget - - click to change time units - naciśnij, aby zmienić jednostkę czasu - - - MIN - MIN - - - SEC - SEK - - - MSEC - MILISEK - - - BAR - TAKT - - - BEAT - RYTM - - - TICK - CYK - - - - TimeLineWidget - - Enable/disable auto-scrolling - Wyłącz/włącz automatyczne przewijanie - - - Enable/disable loop-points - Włącz/wyłącz znaczniki pętli - - - After stopping go back to begin - Po zatrzymaniu powróć do początku - - - After stopping go back to position at which playing was started - Po zatrzymaniu powróć do pozycji z której rozpoczęto odtwarzanie - - - 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 - - - - 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 Track %1 (%2/Total %3) - Ładowanie utworu %1 (%2/Łącznie %3) - - - - TrackContentObject - - Mute - Wycisz - - - - TrackContentObjectView - - 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) - - - Delete (middle mousebutton) - Usuń (środkowy przycisk myszy) - - - Cut - Wytnij - - - Copy - Kopiuj - - - Paste - Wklej - - - Mute/unmute (<%1> + middle click) - Wycisz/cofnij wyciszenie (<%1> + środkowy przycisk myszy) - - - - 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ść'. - - - Actions for this track - Operacje dla tej ścieżki - - - Mute - Wycisz - - - Solo - Solo - - - Mute this track - Wycisz tą ścieżkę - - - Clone this track - Sklonuj tą ścieżkę - - - Remove this track - Usuń tą ścieżkę - - - Clear this track - Wyczyść tą ścieżkę - - - FX %1: %2 - FX %1: %2 - - - Turn all recording on - - - - Turn all recording off - - - - Assign to new FX Channel - Przypisz do nowego kanału efektów - - - - TripleOscillatorView - - Use phase modulation for modulating oscillator 1 with oscillator 2 - Użyj modulacji fazowej aby zmodulować oscylator 2 oscylatorem 1 - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Użyj modulacji amplitudowej aby zmodulować oscylator 2 oscylatorem 1 - - - Mix output of oscillator 1 & 2 - Miksuj wyjścia oscylatorów 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 - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Użyj modulacji fazowej aby zmodulować oscylator 3 oscylatorem 2 - - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Użyj modulacji amplitudowej aby zmodulować oscylator 3 oscylatorem 2 - - - Mix output of oscillator 2 & 3 - Miksuj wyjścia oscylatorów 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 - - - 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. - - - 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 a moog-like saw-wave for current oscillator. - Użyj piłokształtnego przebiegu Mooga dla bieżącego oscylatora. - - - Use an exponential wave for current oscillator. - Użyj fali wykładniczej 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. - - - - VersionedSaveDialog - - Increment version number - Zwiększ numer wersji o jeden - - - Decrement version number - Zminiejsz numer wersji o jeden - - - already exists. Do you want to replace it? - już istnieje. Czy chcesz go zastąpić? - - - - 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 - Otwórz wtyczkę VST - - - DLL-files (*.dll) - Pliki DLL (*.dll) - - - 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. - - - 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. - - - 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 - - - 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. - - - 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 /> - - - - VstPlugin - - Loading plugin - Ładowanie wtyczki - - - 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… - - - The VST plugin %1 could not be loaded. - Wtyczka VST %1 nie może zostać załadowana. - - - - WatsynInstrument - - Volume A1 - Głośność A1 - - - Volume A2 - Głośność A2 - - - Volume B1 - Głośność B1 - - - Volume B2 - Głośność B2 - - - Panning A1 - Panoramowanie A1 - - - Panning A2 - Panoramowanie A2 - - - Panning B1 - Panoramowanie B1 - - - Panning B2 - Panoramowanie B2 - - - Freq. multiplier A1 - Mnożnik częst. A1 - - - Freq. multiplier A2 - Mnożnik częst. A2 - - - Freq. multiplier B1 - Mnożnik częst. B1 - - - Freq. multiplier B2 - Mnożnik częst. B2 - - - Left detune A1 - Odstrojenie w lewo A1 - - - Left detune A2 - Odstrojenie w lewo A2 - - - Left detune B1 - Odstrojenie w lewo B1 - - - Left detune B2 - Odstrojenie w lewo B2 - - - Right detune A1 - Odstrojenie w prawo A1 - - - Right detune A2 - Odstrojenie w prawo A2 - - - Right detune B1 - Odstrojenie w prawo B1 - - - Right detune B2 - Odstrojenie w prawo B2 - - - A-B Mix - Miks A-B - - - A-B Mix envelope amount - A-B Mix ilość obwiedni - - - A-B Mix envelope attack - A-B Mix atak obwiedni - - - A-B Mix envelope hold - A-B Mix przetrzymywanie obwiedni - - - A-B Mix envelope decay - A-B Mix zanikanie obwiedni - - - A1-B2 Crosstalk - A1-B2 Przesłuch - - - A2-A1 modulation - A2-A1 Modulacja - - - B2-B1 modulation - B2-B1 Modulacja - - - Selected graph - Zaznaczony graf - - - - WatsynView - - 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 - - - - - ZynAddSubFxInstrument - - Portamento - Portamento - - - Filter Frequency - Częstotliwość Filtra - - - Filter Resonance - Zafalowanie Filtra - - - Bandwidth - Szerokość Pasma - - - FM Gain - Wzmocnienie FM - - - Resonance Center Frequency - Częstotliwość Środkowa Zafalowania - - - Resonance Bandwidth - Szerokość Pasma Zafalowania - - - Forward MIDI Control Change Events - Przekaż Zdarzenia MIDI typu Control Change - - - - 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: - - - FREQ - FREQ - - - Filter Resonance: - Zafalowanie Filtra: - - - RES - RES - - - Bandwidth: - Szerokość Pasma: - - - BW - BW - - - FM Gain: - Wzmocnienie FM: - - - 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 - - - - 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: - - - Loop mode - Tryb zapętlenia - - - Interpolation mode - Tryb interpolacji - - - None - Brak - - - Linear - Liniowa - - - Sinc - - - - Sample not found: %1 - Nie odnaleziono sampla: %1 - - - - bitInvader - - Samplelength - Długość próbki - - - - 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 - - - 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. - - - Click here for a triangle-wave. - Kliknij aby przełączyć na przebieg trójkątny. - - - Click here for a saw-wave. - Kliknij aby przełączyć na przebieg piłokształtny. - - - Click here for a square-wave. - Kliknij aby przełączyć na przebieg prostokątny. - - - Click here for white-noise. - Kliknij aby przełączyć na przebieg stochastyczny. - - - 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: - - - - 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. - - - Increase wavegraph amplitude by 1dB - Zwiększ amplitudę wykresu falowego o 1dB - - - Click here to increase wavegraph amplitude by 1dB - Kliknij aby zwiększyć amplitudę wykresu falowego o 1dB - - - Decrease wavegraph amplitude by 1dB - Zmniejsz amplitudę wykresu falowego o 1dB - - - Click here to decrease wavegraph amplitude by 1dB - Kliknij aby zmniejszyć amplitudę wykresu falowego o 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 - 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 - - Start frequency - Częstotliwość początkowa - - - End frequency - Częstotliwość końcowa - - - Gain - Wzmocnienie - - - Length - Długość - - - Distortion Start - Początek zniekształcenia - - - Distortion End - Koniec zniekształcenia - - - Envelope Slope - Nachylenie obwiedni - - - Noise - Szum - - - Click - Kliknięcie - - - Frequency Slope - Nachylenie częstotliwości - - - Start from note - Zacznij od nuty - - - End to note - Zakończ nutą - - - - kickerInstrumentView - - Start frequency: - Częstotliwość początkowa: - - - End frequency: - Częstotliwość końcowa: - - - Gain: - Wzmocnienie: - - - Frequency Slope: - Nachylenie częstotliwości: - - - Envelope Length: - Długość obwiedni: - - - Envelope Slope: - Nachylenie obwiedni: - - - Click: - Kliknięcie: - - - Noise: - Szum: - - - Distortion Start: - Początek zniekształcenia: - - - Distortion End: - Koniec zniekształcenia: - - - - 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 - - Plugins - Wtyczki - - - Description - Opis - - - - ladspaPortDialog - - Ports - Porty - - - Name - Nazwa - - - Rate - Tempo - - - Direction - Kierunek - - - Type - Rodzaj - - - Min < Default < Max - Min < Domyślne < Max - - - Logarithmic - Logarytmiczny - - - SR Dependent - Zależny od SR - - - Audio - Audio - - - Control - Regulator - - - Input - Wejście - - - Output - Wyjście - - - Toggled - Przełączalne - - - Integer - Całkowite - - - Float - Zmiennoprzecinkowe - - - Yes - Tak - - - - lb302Synth - - VCF Cutoff Frequency - Częstotliwość Odcięcia VCF - - - VCF Resonance - Rezonans VCF - - - VCF Envelope Mod - Modyfikacja Obwiedni VCF - - - VCF Envelope Decay - Zanikanie Obwiedni VCF - - - Distortion - Zniekształcenie - - - Waveform - Kształt Przebiegu - - - Slide Decay - Ślizgające Zanikanie - - - Slide - Ślizganie - - - Accent - Akcent - - - Dead - Martwy - - - 24dB/oct Filter - Filtr 24dB/okt - - - - lb302SynthView - - Cutoff Freq: - Częst. Odc.: - - - Resonance: - Rezonans: - - - Env Mod: - Mod. Obw.: - - - Decay: - Zanikanie: - - - 303-es-que, 24dB/octave, 3 pole filter - 303-es-que, 24dB/oktawę, filtr III rzędu - - - Slide Decay: - Zanikanie z poślizgiem: - - - DIST: - DIST: - - - Saw wave - Fala piłokształtna - - - Click here for a saw-wave. - Kliknij tutaj, aby przełączyć na przebieg piłokształtny. - - - Triangle wave - Fala trójkątna - - - Click here for a triangle-wave. - Kliknij tutaj, aby przełączyć na przebieg trójkątny. - - - Square wave - Fala prostokątna - - - Click here for a square-wave. - Kliknij tutaj, aby przełączyć na przebieg prostokątny. - - - Rounded square wave - Fala prostokątna, zaokrąglona - - - Click here for a square-wave with a rounded end. - Kliknij tutaj, aby przełączyć na przebieg prostokątny z zaokrąglonymi narożami. - - - Moog wave - Fala Mooga - - - Click here for a moog-like wave. - Kliknij tutaj, aby przełączyć na przebieg Mooga. - - - Sine wave - Fala sinusoidalna - - - Click for a sine-wave. - Kliknij tutaj, aby przełączyć na przebieg sinusoidalny. - - - White noise wave - Biały szum - - - Click here for an exponential wave. - Kliknij tutaj, aby przełączyć na przebieg wykładniczy. - - - Click here for white-noise. - Kliknij tutaj, aby przełączyć na przebieg stochastyczny. - - - Bandlimited saw wave - Fala piłokształtna pasmowo ograniczona - - - Click here for bandlimited saw wave. - Kliknij tutaj, aby przełączyć na pasmowo ograniczoną falę piłokształtną. - - - Bandlimited square wave - Fala kwadratowa pasmowo ograniczona - - - Click here for bandlimited square wave. - Kliknij tutaj, aby przełączyć na pasmowo ograniczoną falę kwadratową. - - - Bandlimited triangle wave - Fala trójkątna pasmowo ograniczona - - - Click here for bandlimited triangle wave. - Kliknij tutaj, aby przełączyć na pasmowo ograniczoną falę trójkątną. - - - Bandlimited moog saw wave - Fala piłokształtna Mooga pasmowo ograniczona - - - Click here for bandlimited moog saw wave. - Kliknij tutaj, aby przełączyć na pasmowo ograniczoną falę piłokształtną Mooga. - - - - malletsInstrument - - Hardness - Twardość - - - Position - Pozycja - - - Vibrato Gain - Vibrato - Wzmocnienie - - - Vibrato Freq - Vibrato - Częstotliwość - - - Stick Mix - Stick Mix - - - Modulator - Modulator - - - Crossfade - Crossfade - - - LFO Speed - LFO - Szybkość - - - LFO Depth - LFO - Głębokość - - - ADSR - ADSR - - - Pressure - Ciśnienie - - - Motion - Ruch - - - Speed - Prędkość - - - Bowed - Pochylenie - - - Spread - Rozstrzał - - - Marimba - Marimba - - - Vibraphone - Wibrafon - - - Agogo - Agogo - - - Wood1 - Wood1 - - - Reso - Rezonans - - - Wood2 - Wood2 - - - Beats - Uderzenia - - - Two Fixed - Dwa Stałe - - - Clump - Stąpnięcie - - - Tubular Bells - Dzwony Rurowe - - - Uniform Bar - Jednolity taki - - - Tuned Bar - - - - Glass - Harfa Szklana - - - Tibetan Bowl - Misy Tybetańskie - - - - 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. - - - - manageVSTEffectView - - - VST parameter control - - kontrola parametrów 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 effect knob-controller window. - Zamknij okno kontrolera pokręteł efektu VST. - - - - 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 - - Distortion - Zniekształcenie - - - Volume - Głośność - - - - organicInstrumentView - - Distortion: - Zniekształcenie: - - - Volume: - Głośność: - - - Randomise - Randomizuj - - - Osc %1 waveform: - Osc %1 przebieg: - - - Osc %1 volume: - Osc %1 głośność: - - - Osc %1 panning: - Osc %1 panoramowanie: - - - 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 - - - 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 - - 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 - - Bank - Bank - - - Patch - Próbka - - - Gain - Wzmocnienie - - - Reverb - Pogłos - - - Reverb Roomsize - Rozmiar pomieszczenia - - - Reverb Damping - Tłumienie pogłosu - - - Reverb Width - Rozpiętość pogłosu - - - Reverb Level - Poziom pogłosu - - - Chorus - Chorus - - - Chorus Lines - Linie chorusu - - - Chorus Level - Poziom chorusu - - - Chorus Speed - Prędkość chorusu - - - Chorus Depth - Głębokość chorusu - - - 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: - + lmms::gui::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) + Zastosuj pogłos (jeśli obsługiwany) + + + + Room size: + Rozmiar pokoju: + + + + Damping: + Tłumienie: + + + + Width: + Szerokość: + + + + + Level: + Poziom: + + + + Apply chorus (if supported) + Zastosuj chorus (jeśli obsługiwany) + + + + Voices: + Głosy: + + + + Speed: + Prędkość: + + + + Depth: + Głębia: + + + + SoundFont Files (*.sf2 *.sf3) + Pliki SoundFont (*.sf2 *.sf3) - sfxrInstrument - - Wave Form - Kształt przebiegu - - - - sidInstrument - - 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 + lmms::gui::SidInstrumentView + Volume: Głośność: + Resonance: - Zafalowanie charakterystyki: + Rezonans: + + Cutoff frequency: Częstotliwość graniczna: - High-Pass filter - Filtr górnoprzepustowy + + High-pass filter + - Band-Pass filter - Filtr pasmowoprzepustowy + + Band-pass filter + - Low-Pass filter - Filtr dolnoprzepustowy + + Low-pass filter + - Voice3 Off - Wyłącz głos 3 + + Voice 3 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. + Narastanie: + + 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). + Opadanie: + 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 + Fala pulsująca - Pulse Wave - Przebieg Prostokątny + + Triangle wave + Fala trójkątna - Triangle Wave - Przebieg Trójkątny - - - SawTooth - Przebieg Piłokształtny + + Saw wave + Fala piłokształtna + Noise Szum + Sync - Synchronizacja + Zsynchronizuj - 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. + + Ring modulation + Modulacja pierścieniowa + 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. + + Pulse width: + Współczynnik wypełnienia impulsu: - stereoEnhancerControlDialog + lmms::gui::SideBarWidget - WIDE - ROZSZERZ + + Close + Zamknij + + + + lmms::gui::SlicerTView + + + Slice snap + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + Włącz synchr. BPM + + + + Original sample BPM + Oryginalna próbka BPM + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + Próg + + + + Fade Out + Ściszenie + + + + Reset + Resetuj + + + + Midi + MIDI + + + + BPM + BPM + + + + Snap + Przyciągaj + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + Kliknij, aby załadować próbkę + + + + lmms::gui::SongEditor + + + Could not open file + Nie można otworzyć pliku + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + Nie można otworzyć pliku %1. Prawdopodobnie nie masz uprawnień do odczytu tego pliku. +Upewnij się, że masz przynajmniej uprawnienia do odczytu pliku i spróbuj ponownie. + + + + Operation denied + Operacja odrzucona + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + Folder pakietu o tej nazwie już istnieje w wybranej ścieżce. Nie można zastąpić pakietu projektu. Wybierz inną nazwę. + + + + + + Error + Błąd + + + + Couldn't create bundle folder. + Nie można utworzyć folderu pakietu. + + + + Couldn't create resources folder. + Nie można utworzyć folderu zasobów. + + + + Failed to copy resources. + Nie można skopiować zasobów. + + + + + Could not write file + Nie można zapisać pliku. + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + Nie można otworzyć %1 do zapisu. Prawdopodobnie nie masz uprawnień do zapisu do tego pliku. Upewnij się, że masz uprawnienia do zapisu do pliku i spróbuj ponownie. + + + + An unknown error has occurred and the file could not be saved. + + + + + 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. + + + + template + szablon + + + + project + projekt + + + + Version difference + Różnica wersji + + + + This %1 was created with LMMS %2 + %1 został utworzony w LMMS %2. + + + + Zoom + Powiększenie + + + + Tempo + Tempo + + + + TEMPO + TEMPO + + + + Tempo in BPM + Tempo w BPM + + + + + + Master volume + Głośność główna + + + + + + Global transposition + Transpozycja ogólna + + + + 1/%1 Bar + 1/%1 takt + + + + %1 Bars + %1 takty + + + + Value: %1% + Wartość: %1% + + + + Value: %1 keys + Wartość: %1 keys + + + + lmms::gui::SongEditorWindow + + + Song-Editor + Edytor utworu + + + + Play song (Space) + Odtwarzaj utwór (Spacja) + + + + Record samples from Audio-device + Nagrywaj próbki z urządzenia dźwiękowego + + + + Record samples from Audio-device while playing song or pattern track + Nagrywaj próbki z urządzenia dźwiękowego podczas odtwarzania utworu lub ścieżki szablonu + + + + Stop song (Space) + Zatrzymaj utwór (Spacja) + + + + Track actions + Czynności ścieżki + + + + Add pattern-track + Dodaj ścieżkę-szablon + + + + Add sample-track + Dodaj ścieżkę-próbkę + + + + Add automation-track + Dodaj ścieżkę automatyki + + + + Edit actions + Edytuj czynności + + + + Draw mode + Tryb rysowania + + + + Knife mode (split sample clips) + Tryb noża (podziel klipy próbek) + + + + Edit mode (select and move) + Tryb edycji (zaznacz i przesuń) + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + Wstaw takt + + + + Remove bar + Usuń takt + + + + Zoom controls + + + + + + Zoom + Powiększenie + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + Podpowiedź + + + + Move recording curser using <Left/Right> arrows + Przesuń kursor nagrywania za pomocą strzałek <lewo/prawo> + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + SZEROKOŚĆ + + + Width: Szerokość: - stereoEnhancerControls - - Width - Szerokość - - - - stereoMatrixControlDialog + lmms::gui::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 + lmms::gui::SubWindow - Left to Left - Lewy IN >> Lewy OUT + + Close + Zamknij - Left to Right - Lewy IN >> Prawy OUT + + Maximize + Maksymalizuj - Right to Left - Prawy IN >> Lewy OUT - - - Right to Right - Prawy IN >> Prawy OUT + + Restore + Przywróć - vestigeInstrument + lmms::gui::TapTempoView - Loading plugin - Ładowanie wtyczki + + 0 + 0 - Please wait while loading VST-plugin... - Ładowanie wtyczki VST. Proszę czekać... + + + Precision + Precyzja + + + + Display in high precision + Wyświetlaj z wysoką precyzją + + + + 0.0 ms + 0,0 ms + + + + Mute metronome + Wycisz metronom + + + + Mute + Cisza + + + + BPM in milliseconds + BPM w milisekundach + + + + 0 ms + 0 ms + + + + Frequency of BPM + Częstotliwość BPM + + + + 0.0000 hz + 0,0000 hz + + + + Reset + Resetuj + + + + Reset counter and sidebar information + Resetuj licznik i informacje na pasku bocznym + + + + Sync + Zsynchronizuj + + + + Sync with project tempo + Zsynchronizuj z tempem projektu + + + + %1 ms + %1 ms + + + + %1 hz + %1 hz - vibed + lmms::gui::TemplatesMenu - 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 - - - Detune %1 - Odstrojenie %1 - - - Fuzziness %1 - Rozmycie %1 - - - Length %1 - Długość %1 - - - Impulse %1 - Impuls %1 - - - Octave %1 - Oktawa %1 + + New from template + Nowy z szablonu - vibedView + lmms::gui::TempoSyncBarModelEditor - Volume: - Głośność: + + + Tempo Sync + Synchronizacja tempa - The 'V' knob sets the volume of the selected string. - Pokrętło 'V' ustala głośność wybranej struny. + + No Sync + Brak synchronizacji + + Eight beats + Osiem uderzeń + + + + Whole note + Cała nuta + + + + Half note + Półnuta + + + + Quarter note + Ćwierćnuta + + + + 8th note + Ósemka + + + + 16th note + Szesnastka + + + + 32nd note + Trzydziestodwójka + + + + Custom... + Niestandardowy... + + + + Custom + Niestandardowy + + + + Synced to Eight Beats + Zsynchronizowane do ośmiu uderzeń + + + + Synced to Whole Note + Zsynchronizowane do całej nuty + + + + Synced to Half Note + Zsynchronizowane do półnuty + + + + Synced to Quarter Note + Zsynchronizowane do ćwierćnuty + + + + Synced to 8th Note + Zsynchronizowane do ósemki + + + + Synced to 16th Note + Zsynchronizowane do szesnastki + + + + Synced to 32nd Note + Zsynchronizowane do trzydziestodwójki + + + + lmms::gui::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 + Trzydziestodwójka + + + + Custom... + Niestandardowy... + + + + Custom + Niestandardowy + + + + Synced to Eight Beats + Zsynchronizowane do ośmiu uderzeń + + + + Synced to Whole Note + Zsynchronizowane do całej nuty + + + + Synced to Half Note + Zsynchronizowane do półnuty + + + + Synced to Quarter Note + Zsynchronizowane do ćwierćnuty + + + + Synced to 8th Note + Zsynchronizowane do ósemki + + + + Synced to 16th Note + Zsynchronizowane do szesnastki + + + + Synced to 32nd Note + Zsynchronizowane do trzydziestodwójki + + + + lmms::gui::TimeDisplayWidget + + + Time units + Jednostki czasu + + + + MIN + MIN + + + + SEC + SEK + + + + MSEC + MSEK + + + + BAR + TAKT + + + + BEAT + MIARA + + + + TICK + TYK + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + Autoprzewijanie + + + + Stepped auto scrolling + Autoprzewijanie stopniowe + + + + Continuous auto scrolling + Autoprzewijanie ciągłe + + + + Auto scrolling disabled + Autoprzewijanie wyłączone + + + + Loop points + Znaczniki zapętlania + + + + After stopping go back to beginning + Po zatrzymaniu wróć do początku + + + + After stopping go back to position at which playing was started + Po zatrzymaniu wróć do pozycji, z której rozpoczęto odtwarzanie + + + + After stopping keep position + Po zatrzymaniu zapamiętaj pozycję + + + + Hint + Podpowiedź + + + + Press <%1> to disable magnetic loop points. + Naciśnij <%1>, aby wyłączyć punkty pętli magnetycznej. + + + + Set loop begin here + Ustaw początek pętli tutaj + + + + Set loop end here + Ustaw koniec pętli tutaj + + + + Loop edit mode (hold shift) + Tryb edycji pętli (przytrzymaj Shift) + + + + Dual-button + Podwójny przycisk + + + + Grab closest + Złap najbliższy + + + + Handles + Uchwyty + + + + lmms::gui::TrackContentWidget + + + Paste + Wklej + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + Naciśnij <%1>, klikając jednocześnie na uchwycie przesuwania, aby rozpocząć nową czynność przeciągania i upuszczania. + + + + Actions + Czynności + + + + + Mute + Cisza + + + + + Solo + Solo + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + Ścieżki nie można odzyskać po jej usunięciu. Na pewno chcesz usunąć ścieżkę „%1”? + + + + Confirm removal + Potwierdź usunięcie + + + + Don't ask again + Nie pytaj ponownie + + + + Clone this track + Klonuj tę ścieżkę + + + + Remove this track + Usuń tę ścieżkę + + + + Clear this track + Wyczyść tę ścieżkę + + + + Channel %1: %2 + Kanał %1: %2 + + + + Assign to new Mixer Channel + Przypisz do nowego kanału miksera + + + + Turn all recording on + Włącz wszystkie nagrania + + + + Turn all recording off + Wyłącz wszystkie nagrania + + + + Track color + Kolor ścieżki + + + + Change + Zmień + + + + Reset + Resetuj + + + + Pick random + Wybierz losowe + + + + Reset clip colors + Resetuj kolory klipu + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + Moduluj fazę oscylatora 1 z oscylatorem 2 + + + + Modulate amplitude of oscillator 1 by oscillator 2 + Moduluj amplitudę oscylatora 1 z oscylatorem 2 + + + + Mix output of oscillators 1 & 2 + Miksuj wyjścia oscylatorów 1 i 2 + + + + Synchronize oscillator 1 with oscillator 2 + Zsynchronizuj oscylator 1 z oscylatorem 2 + + + + Modulate frequency of oscillator 1 by oscillator 2 + Moduluj częstotliwość oscylatora 1 z oscylatorem 2 + + + + Modulate phase of oscillator 2 by oscillator 3 + Moduluj fazę oscylatora 2 z oscylatorem 3 + + + + Modulate amplitude of oscillator 2 by oscillator 3 + Moduluj amplitudę oscylatora 2 z oscylatorem 3 + + + + Mix output of oscillators 2 & 3 + Miksuj wyjścia oscylatorów 2 i 3 + + + + Synchronize oscillator 2 with oscillator 3 + Zsynchronizuj oscylator 2 z oscylatorem 3 + + + + Modulate frequency of oscillator 2 by oscillator 3 + Moduluj częstotliwość oscylatora 2 z oscylatorem 3 + + + + Osc %1 volume: + Głośność osc %1: + + + + Osc %1 panning: + Panoramowanie osc %1: + + + + Osc %1 coarse detuning: + + + + + semitones + półtonów + + + + Osc %1 fine detuning left: + + + + + + cents + centów + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + Przesunięcie fazowe osc %1: + + + + + degrees + stopni + + + + Osc %1 stereo phase-detuning: + Odstrojenie fazy stereo osc %1: + + + + Sine wave + Fala sinusoidalna + + + + Triangle wave + Fala trójkątna + + + + Saw wave + Fala piłokształtna + + + + Square wave + Fala prostokątna + + + + Moog-like saw wave + Fala piłokształtna Mooga + + + + Exponential wave + Fala wykładnicza + + + + White noise + Szum biały + + + + User-defined wave + Fala zdefiniowana przez użytkownika + + + + Use alias-free wavetable oscillators. + Użyj oscylatorów tablicowych wolnych od aliasów. + + + + lmms::gui::VecControlsDialog + + + HQ + HQ + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + Skala log. + + + + Display amplitude on logarithmic scale to better see small values. + Wyświetlaj amplitudę w skali logarytmicznej, aby lepiej widzieć małe wartości. + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + Zwiększ numer wersji o jeden + + + + Decrement version number + Zminiejsz numer wersji o jeden + + + + Save Options + Zapisz opcje + + + + already exists. Do you want to replace it? + już istnieje. Chcesz go zastąpić? + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + Otwórz wtyczkę VST + + + + Control VST plugin from LMMS host + Kontroluj wtyczkę VST z hosta LMMS + + + + Open VST plugin preset + Otwórz preset wtyczki VST + + + + Previous (-) + Poprzedni (-) + + + + Save preset + Zapisz preset + + + + Next (+) + Następny (+) + + + + Show/hide GUI + Pokaż/ukryj graficzny interfejs użytkownika + + + + Turn off all notes + Wycisz wszystkie nuty + + + + DLL-files (*.dll) + Pliki DLL (*.dll) + + + + EXE-files (*.exe) + Pliki EXE (*.exe) + + + + SO-files (*.so) + Pliki SO (*.so) + + + + No VST plugin loaded + Nie załadowano wtyczki VST + + + + Preset + Preset + + + + by + autorstwa + + + + - VST plugin control + - kontrola wtyczki VST + + + + lmms::gui::VibedView + + + Enable waveform + Włącz kształt fali + + + + + Smooth waveform + Gładki kształt fali + + + + + Normalize waveform + Normalizuj kształt fali + + + + + Sine wave + Fala sinusoidalna + + + + + Triangle wave + Fala trójkątna + + + + + Saw wave + Fala piłokształtna + + + + + Square wave + Fala prostokątna + + + + + White noise + Szum biały + + + + + User-defined wave + Fala zdefiniowana przez użytkownika + + + + String volume: + Głośność struny: + + + String stiffness: Sztywność struny: - 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. + Wybierz pozycję: + 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: + Panoramowanie struny: - Pan: - Panoramowanie: + + String detune: + Odstrojenie struny: - 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: + Rozmycie struny: - Detune: - Odstrojenie: + + String length: + Długość 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. - 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. + + Impulse Editor + Edytor impulsów - Fuzziness: - Rozmycie: + + Impulse + Impuls - 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). + + Enable/disable string + Włącz/wyłącz strunę + 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. - - + String Struna + + + lmms::gui::VstEffectControlDialog - 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. + + Show/hide + Pokaż/ukryj - Sine wave - Przebieg Sinusoidalny + + Control VST plugin from LMMS host + Kontroluj wtyczkę VST z hosta LMMS - Triangle wave - Przebieg Trójkątny + + Open VST plugin preset + Otwórz preset wtyczki VST - Saw wave - Przebieg Piłokształtny + + Previous (-) + Poprzedni (-) - Square wave - Przebieg Prostokątny + + Next (+) + Następny (+) - White noise wave - Biały Szum + + Save preset + Zapisz preset - User defined wave - Przebieg zdefiniowany przez użytkownika + + + Effect by: + Efekt autorstwa: - Smooth - Wygładzanie + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + lmms::gui::WatsynView + + + + + + Volume + Głośność - Click here to smooth waveform. - Kliknij tutaj, aby wygładzić przebieg. + + + + + Panning + Panoramowanie + + + + + Freq. multiplier + Mnożnik częst. + + + + + + + Left detune + Odstrojenie w lewo + + + + + + + + + + + cents + centów + + + + + + + Right detune + Odstrojenie w prawo + + + + A-B Mix + Miksuj A-B + + + + Mix envelope amount + Miksuj wartość obwiedni + + + + Mix envelope attack + Miksuj narastanie obwiedni + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + Przesłuch + + + + Select oscillator A1 + Wybierz oscylator A1 + + + + Select oscillator A2 + Wybierz oscylator A2 + + + + Select oscillator B1 + Wybierz oscylator B1 + + + + Select oscillator B2 + Wybierz oscylator B2 + + + + Mix output of A2 to A1 + Miksuj wyjście A2 do A1 + + + + Modulate amplitude of A1 by output of A2 + Moduluj amplitudę A1 z wyjściem A2 + + + + Ring modulate A1 and A2 + Modulacja pierścieniowa A1 i A2 + + + + Modulate phase of A1 by output of A2 + Moduluj fazę A1 z wyjściem A2 + + + + Mix output of B2 to B1 + Miksuj wyjście B2 do B1 + + + + Modulate amplitude of B1 by output of B2 + Moduluj amplitudę B1 z wyjściem B2 + + + + Ring modulate B1 and B2 + Modulacja pierścieniowa B1 i B2 + + + + Modulate phase of B1 by output of B2 + Moduluj fazę B1 z wyjściem B2 + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + Narysuj swój własny przebieg fali, przeciągając kursorem po tym wykresie. + + + + Load waveform + Załaduj kształt fali + + + + Load a waveform from a sample file + Załaduj kształt fali z przykładowego pliku + + + + Phase left + Faza w lewo + + + + Shift phase by -15 degrees + Przesuń fazę o -15 stopni + + + + Phase right + Faza w prawo + + + + Shift phase by +15 degrees + Przesuń fazę o +15 stopni + + + + Normalize - Normalizacja + Normalizuj - Click here to normalize waveform. - Kliknij tutaj, aby znormalizować przebieg. + + + Invert + Odwróć - Use a sine-wave for current oscillator. - Użyj fali sinusoidalnej dla bieżącego oscylatora. + + + Smooth + Wygładź - Use a triangle-wave for current oscillator. - Użyj fali trójkątnej dla bieżącego oscylatora. + + + Sine wave + Fala sinusoidalna - Use a saw-wave for current oscillator. - Użyj fali piłokształtnej dla bieżącego oscylatora. + + + + Triangle wave + Fala trójkątna - Use a square-wave for current oscillator. - Użyj fali prostokątnej dla bieżącego oscylatora. + + Saw wave + Fala piłokształtna - 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. + + + Square wave + Fala prostokątna - 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 + lmms::gui::WaveShaperControlDialog + INPUT WEJŚCIE + Input gain: Wzmocnienie wejścia: + OUTPUT WYJŚCIE + Output gain: Wzmocnienie wyjścia: - Reset waveform - Resetuj kształt przebiegu + + + Reset wavegraph + Resetuj wykres falowy - Click here to reset the wavegraph back to default - Kliknij tutaj, aby przywrócić kształt przebiegu do domyślnego + + + Smooth wavegraph + Płynny wykres falowy - Smooth waveform - Gładki kształt przebiegu + + + Increase wavegraph amplitude by 1 dB + Zwiększ amplitudę wykresu falowego o 1 dB - Click here to apply smoothing to wavegraph - Kliknij tutaj, aby wygładzić przebieg. - - - Increase graph amplitude by 1dB - - - - Click here to increase wavegraph amplitude by 1dB - Kliknij aby zwiększyć amplitudę wykresu falowego o 1dB - - - Decrease graph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB - Kliknij aby zmniejszyć amplitudę wykresu falowego o 1dB + + + Decrease wavegraph amplitude by 1 dB + Zmniejsz amplitudę wykresu falowego o 1 dB + Clip input Przytnij wejście - Clip input signal to 0dB - Przytnij sygnał wejścia do 0dB + + Clip input signal to 0 dB + Przytnij sygnał wejścia do 0 dB - waveShaperControls + lmms::gui::XpressiveView - Input gain - Wzmocnienie wejścia + + Draw your own waveform here by dragging your mouse on this graph. + Narysuj swój własny przebieg fali, przeciągając kursorem po tym wykresie. - Output gain - Wzmocnienie wyścia + + Select oscillator W1 + Wybierz oscylator W1 + + + + Select oscillator W2 + Wybierz oscylator W2 + + + + Select oscillator W3 + Wybierz oscylator W3 + + + + Select output O1 + Wybierz wyjście O1 + + + + Select output O2 + Wybierz wyjście O2 + + + + Open help window + Otwórz okno pomocy + + + + + Sine wave + Fala sinusoidalna + + + + + Moog-saw wave + Fala piłokształtna Mooga + + + + + Exponential wave + Fala wykładnicza + + + + + Saw wave + Fala piłokształtna + + + + + User-defined wave + Fala zdefiniowana przez użytkownika + + + + + Triangle wave + Fala trójkątna + + + + + Square wave + Fala prostokątna + + + + + White noise + Szum biały + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + Ogólnego zastosowania 1: + + + + General purpose 2: + Ogólnego zastosowania 2: + + + + General purpose 3: + Ogólnego zastosowania 3: + + + + O1 panning: + Panoramowanie O1: + + + + O2 panning: + Panoramowanie O2: + + + + Release transition: + Przejście do opadania: + + + + Smoothness + Gładkość - + + lmms::gui::ZynAddSubFxView + + + Portamento: + Portamento: + + + + PORT + PORT + + + + Filter frequency: + Częstotliwość filtra: + + + + FREQ + CZĘST + + + + Filter resonance: + Rezonans filtra: + + + + RES + REZ + + + + Bandwidth: + Szerokość pasma: + + + + BW + SP + + + + FM gain: + Wzmocnienie FM: + + + + FM GAIN + WZMOC FM + + + + Resonance center frequency: + Częstotliwość środkowa rezonansu: + + + + RES CF + CŚ REZ + + + + Resonance bandwidth: + Szerokość pasma rezonansu: + + + + RES BW + SP REZ + + + + Forward MIDI control changes + Przekaż zmiany sterowania MIDI + + + + Show GUI + Pokaż graficzny interfejs użytkownika + + + \ No newline at end of file diff --git a/data/locale/pt.ts b/data/locale/pt.ts index f1a2386f3..fe3c1c192 100644 --- a/data/locale/pt.ts +++ b/data/locale/pt.ts @@ -1,10294 +1,18761 @@ - + AboutDialog + About LMMS Sobre o LMMS - Version %1 (%2/%3, Qt %4, %5) - Versão %1 (%2/%3, Qt %4, %5) + + 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 musical fácil para todos + + LMMS - easy music production for everyone. + LMMS - produção de música 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 - 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 - - + Involved Envolvidos + Contributors ordered by number of commits: - Contribuidores ordenados por número de contribuição: + Contribuidores por número de contribuições: - 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 + AboutJuceDialog - VOL - VOL + + About JUCE + Sobre o JUCE - Volume: - Volume: + + <b>About JUCE</b> + <b>Sobre o JUCE</b> - PAN - PAN + + This program uses JUCE version 3.x.x. + Este programa usa o JUCE versão 3.x.x. - Panning: - Panorâmico: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + JUCE é uma framework de aplicativos C++ multiplataforma de código aberto para a criação de aplicativos desktop e móveis de alta qualidade + +Os módulos principais do JUCE (juce_audio_basics, juce_audio_devices, juce_core e juce_events) são permissivamente licenciados sob os termos da licença ISC. +Outros módulos são cobertos por uma licença GNU GPL 3.0. + +Copyright (C) 2022 Raw Material Software Limited. - LEFT - LEFT - - - Left gain: - Ganho na esquerda: - - - RIGHT - RIGHT - - - Right gain: - Ganho na Direita: + + This program uses JUCE version + Este programa usa o JUCE versão - AmplifierControls + AudioDeviceSetupWidget - Volume - Volume - - - Panning - Panorâmico - - - Left gain - Ganho na Esquerda - - - Right gain - Ganho na Direita - - - - AudioAlsaSetupWidget - - DEVICE - DISPOSITIVO - - - CHANNELS - CANAIS - - - - AudioFileProcessorView - - Open 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. - - - 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. - - - 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. - - - 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. - - - 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. - - - 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: - - - - AudioJack - - JACK client restarted - Cliente JACK reiniciado - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS foi chutado pelo JACK por alguma razão. Logo que o JACK restaure a comunicação com o LMMS você poderá precisar fazer as conexões manualmente. - - - JACK server down - O servidor JACK caiu - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - O servidor de áudio JACK parece ter caído e ao reiniciar uma nova instância falhou. De qualquer maneira LMMS é capaz de prosseguir. Certifique-se de salvar seu projeto e reiniciar primeiro o JACK depois o LMMS. - - - CLIENT-NAME - NOME DO CLIENTE - - - CHANNELS - CANAIS - - - - AudioOss::setupWidget - - DEVICE - DISPOSITIVO - - - CHANNELS - CANAIS - - - - AudioPortAudio::setupWidget - - BACKEND - BACKEND - - - DEVICE - DISPOSITIVO - - - - AudioPulseAudio::setupWidget - - DEVICE - DISPOSITIVO - - - CHANNELS - CANAIS - - - - AudioSdl::setupWidget - - DEVICE - DISPOSITIVO - - - - AudioSndio::setupWidget - - DEVICE - DISPOSITIVO - - - CHANNELS - CANAIS - - - - AudioSoundIo::setupWidget - - BACKEND - BACKEND - - - DEVICE - DISPOSITIVO - - - - AutomatableModel - - &Reset (%1%2) - &Resetar (%1%2) - - - &Copy value (%1%2) - &Copiar valor (%1%2) - - - &Paste value (%1%2) - C&olar valor (%1%2) - - - 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 - - - - AutomationEditor - - Please open an automation pattern 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) - 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) - 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 - - - Interpolation controls - Controles de interpolação - - - Timeline controls - Controles de cronograma - - - Zoom controls - Controles de zoom - - - 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. - - - - AutomationPattern - - Drag a control while pressing <%1> - Arraste o controle enquanto pressiona a tecla <%1> - - - - AutomationPatternView - - 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. - O modelo já está conectado para este padrão. - - - - AutomationTrack - - Automation track - Pista de Automação - - - - BBEditor - - 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 sample-track - Adicionar faixa de amostra - - - - BBTCOView - - 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 - - Beat/Bassline %1 - Batida/Linha de Baixo %1 - - - Clone of %1 - Clone de %1 - - - - BassBoosterControlDialog - - FREQ - FREQ - - - Frequency: - Frequência: - - - GAIN - GANHO - - - Gain: - Ganho: - - - RATIO - RELAÇÃO - - - Ratio: - Relação: - - - - BassBoosterControls - - Frequency - Frequência - - - Gain - Ganho - - - Ratio - Relação - - - - BitcrushControlDialog - - IN - IN - - - OUT - OUT - - - 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: - - - NOISE - RUÍDO - - - FREQ - FREQ - - - STEREO - - - - QUANT + + [System Default] - CaptionMenu + CarlaAboutW + + About Carla + Sobre Carla + + + + About + Sobre + + + + About text here + Texto sobre aqui + + + + Extended licensing here + Licença extendida aqui + + + + Artwork + Arte + + + + Using KDE Oxygen icon set, designed by Oxygen Team. + Usando o conjunto de ícones KDE Oxygen, projetado pelo Oxygen Team. + + + + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. + Contém alguns botões, fundos e outras pequenas artes dos projetos Calf Studio Gear, OpenAV e OpenOctave. + + + + VST is a trademark of Steinberg Media Technologies GmbH. + VST é uma marca comercial de Steinberg Media Technologies GmbH. + + + + Special thanks to António Saraiva for a few extra icons and artwork! + Agradecimento especial para António Saraiva por alguns ícones e arte extra! + + + + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. + O logo de LV2 foi projetado por Thorsten Wilms, baseado no conceito de Peter Shorthose. + + + + MIDI Keyboard designed by Thorsten Wilms. + Teclado MIDI projetado por Thorsten Wilms. + + + + Carla, Carla-Control and Patchbay icons designed by DoosC. + Ícones de Carla, Carla-Control e Patchbay projetados por DoosC. + + + + Features + Recursos + + + + AU/AudioUnit: + AU/UnidadeAudio + + + + LADSPA: + + + + + + + + + + + + TextLabel + Texto + + + + VST2: + + + + + DSSI: + + + + + LV2: + + + + + VST3: + + + + + OSC + + + + + Host URLs: + + + + + Valid commands: + Comandos válidos: + + + + valid osc commands here + comandos osc válidos aqui + + + + Example: + Exemplo: + + + + License + Licença + + + + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + 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 + Versão da Ponte OSC + + + + Plugin Version + Versão do Plugin + + + + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> + <br>Versão %1<br>Carla é um servidor de plugin de áudio cheio de funcionalidades%2.<br><br>Copyright (C) 2011-2019 falkTX<br> + + + + + (Engine not running) + (Engine não executada) + + + + Everything! (Including LRDF) + Tudo! (Incluindo LRDF) + + + + Everything! (Including CustomData/Chunks) + + + + + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + + + + + + + Using Juce host + + + + + About 85% complete (missing vst bank/presets and some minor stuff) + + + + + CarlaHostW + + + MainWindow + JanelaPrincipal + + + + Rack + Rack + + + + Patchbay + + + + + Logs + + + + + Loading... + Carregando... + + + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + &Arquivo + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help Aj&uda - Help (not available) - Ajuda (não disponível) - - - - CarlaInstrumentView - - Show GUI - Mostrar GUI - - - 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. - - - - Controller - - Controller %1 - Controlador %1 - - - - ControllerConnectionDialog - - Connection Settings - Configuração das Conexões - - - MIDI CONTROLLER - CONTROLADOR MIDI - - - Input channel - Canal de entrada - - - CHANNEL - CANAL - - - Input controller - Entrada do controlador - - - CONTROLLER - CONTROLADOR - - - Auto Detect - Auto detectar - - - MIDI-devices to receive MIDI-events from - Dispositivos MIDI para receber eventos MIDI de - - - USER CONTROLLER - CONTROLADOR DO USUÁRIO - - - MAPPING FUNCTION - MAPEAR FUNÇÃO - - - OK - OK - - - Cancel - Cancelar - - - LMMS - LMMS - - - Cycle Detected. - Ciclo Detectado. - - - - ControllerRackView - - Controller Rack - Estante de Controladores - - - Add - Adicionar - - - Confirm Delete - Confirmação para Apagar - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Confirmar apagar? Há conexão existente(s) associada a este controlador. Não há maneira de desfazer. - - - - ControllerView - - Controls - Controles - - - 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 - - - &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 2/3 Crossover: - 2/3 Cruzamento de Banda: - - - Band 3/4 Crossover: - 3/4 Cruzamento de Banda: - - - Band 1 Gain: - Banda 1 Ganho: - - - Band 2 Gain: - Banda 2 Ganho: - - - Band 3 Gain: - Banda 3 Ganho: - - - Band 4 Gain: - Banda 4 Ganho: - - - Band 1 Mute - Banda 1 Mudo - - - Mute Band 1 - Silenciar Banda 1 - - - Band 2 Mute - Banda 2 Mudo - - - Mute Band 2 - Silenciar Banda 2 - - - Band 3 Mute - Banda 3 Mudo - - - Mute Band 3 - Silenciar Banda 3 - - - Band 4 Mute - Banda 4 Mudo - - - Mute Band 4 - Silenciar Banda 4 - - - - DelayControls - - Delay Samples - Amostras de atraso - - - Feedback - Retorno - - - Lfo Frequency - Lfo Frequência - - - Lfo Amount - Lfo Quantidade - - - Output gain - Ganho de saída - - - - DelayControlsDialog - - Lfo Amt + + Tool Bar - Delay Time - Tempo de atraso + + Disk + Disco - Feedback Amount - Quantidade de Retorno + + + Home + Início - Lfo - Lfo - - - Out Gain - Ganho - - - Gain - Ganho - - - DELAY - ATRASO - - - FDBK - RTRN - - - RATE - TAXA - - - AMNT - QNTD - - - - 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 - - - - DualFilterControls - - Filter 1 enabled - Filtro 1 habilitado - - - Filter 1 type - Filtro 1 Tipo - - - Cutoff 1 frequency - Frequência de corte 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 - - - Q/Resonance 2 - Q/Ressonância 2 - - - Gain 2 - Ganho 2 - - - LowPass - Passa Baixa - - - HiPass - Passa Alta - - - BandPass csg - Passa Banda csg - - - BandPass czpg - Passa Banda czpg - - - Notch - Vale - - - Allpass - Passa todas - - - Moog - Moog - - - 2x LowPass - 2x Passa Baixa - - - RC LowPass 12dB - RC PassaBaixa 12dB - - - RC BandPass 12dB - RC PassaBanda 12dB - - - RC HighPass 12dB - RC PassaAlta 12dB - - - RC LowPass 24dB - RC PassaBaixa 24dB - - - RC BandPass 24dB - RC PassaBanda 24dB - - - RC HighPass 24dB - RC PassaAlta 24dB - - - Vocal Formant Filter - Filtro de Formante Vocal - - - 2x Moog + + Transport - SV LowPass + + Playback Controls - SV BandPass + + Time Information - SV HighPass + + Frame: - SV Notch + + 000'000'000 - Fast Formant - Formato Rápido - - - Tripole - - - - - Editor - - Play (Space) - Tocar (Espaço) - - - Stop (Space) - Parar (Espaço) - - - Record - Gravar - - - Record while playing - Gravar enquanto toca - - - Transport controls - Controles de transporte - - - - Effect - - Effect enabled - Efeito ativado - - - Wet/Dry mix - Mix Processada/Limpa - - - Gate - Portal - - - Decay - Decaimento - - - - EffectChain - - Effects enabled - Efeitos ativados - - - - EffectRackView - - EFFECTS CHAIN - CADEIA DE EFEITOS - - - Add effect - Adicionar Efeito - - - - EffectSelectDialog - - Add effect - Adicionar Efeito - - - Name - Nome - - - Type - Tipo - - - Description - Descrição - - - Author - Autor - - - - EffectView - - 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 - - - - EnvelopeAndLfoParameters - - Predelay - Pré-atraso - - - Attack - Ataque - - - Hold - Espera - - - Decay - Decaimento - - - Sustain - Sustentação - - - Release - Relaxamento - - - Modulation - Modulação - - - LFO Predelay - LFO - Pré-atraso - - - LFO Attack - LFO - Ataque - - - LFO speed - LFO - Velocidade - - - LFO Modulation - LFO - Modulação - - - LFO Wave Shape - LFO - Forma de Onda - - - Freq x 100 - Freq x 100 - - - Modulate Env-Amount - Modular Tanto-de-Envelope - - - - 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. - - - 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. - - - 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 - Multiplica a frequência do LFO por 100 - - - 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 - - - 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. - - - - EqControls - - Input gain - Ganho de entrada - - - Output gain - Ganho de saída - - - Low shelf gain + + 00:00:00 - 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 + + BBT: - HP res + + 000|00|0000 - Low Shelf res + + Settings + Opções + + + + BPM - Peak 1 BW + + Use JACK Transport - Peak 2 BW + + Use Ableton Link - Peak 3 BW + + &New + &Novo + + + + Ctrl+N - Peak 4 BW + + &Open... + &Abrir... + + + + + Open... + Abrir... + + + + Ctrl+O - High Shelf res + + &Save + &Salvar + + + + Ctrl+S - LP res + + Save &As... + Salvar &como... + + + + + Save As... - HP freq + + Ctrl+Shift+S - Low Shelf freq + + &Quit + Sai&r + + + + Ctrl+Q - Peak 1 freq + + &Start - Peak 2 freq + + F5 - Peak 3 freq + + St&op - Peak 4 freq + + F6 - High shelf freq + + &Add Plugin... - LP freq + + Ctrl+A - HP active + + &Remove All - Low shelf active + + Enable - Peak 1 active + + Disable - Peak 2 active + + 0% Wet (Bypass) - Peak 3 active + + 100% Wet - Peak 4 active + + 0% Volume (Mute) - High shelf active + + 100% Volume - LP active - LP ativo + + Center Balance + Balanço Central - LP 12 - LP 12 + + &Play + &Reproduzir - LP 24 - LP 24 - - - LP 48 - LP 48 - - - HP 12 - HP 12 - - - HP 24 - HP 24 - - - HP 48 - HP 48 - - - low pass type + + Ctrl+Shift+P - high pass type + + &Stop + &Parar + + + + Ctrl+Shift+X - Analyse IN + + &Backwards - Analyse OUT + + Ctrl+Shift+B + + + + + &Forwards + + + + + Ctrl+Shift+F + + + + + &Arrange + + + + + Ctrl+G + + + + + + &Refresh + + + + + Ctrl+R + + + + + Save &Image... + + + + + Auto-Fit + + + + + Zoom In + Aumentar Zoom + + + + Ctrl++ + + + + + Zoom Out + Reduzir Zoom + + + + Ctrl+- + + + + + Zoom 100% + + + + + Ctrl+1 + + + + + Show &Toolbar + + + + + &Configure Carla + &Configurar Carla + + + + &About + &Sobre + + + + About &JUCE + Sobre &JUCE + + + + About &Qt + Sobre &QT + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + Ctrl+P + + + + + &Connect... + + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + + + + + &Configure driver... + + + + + Panic + Pânico + + + + Open custom driver panel... + Abrir painel de drivers personalizados... + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + Copiar como Imagem para a Área de Transferência + + + + Ctrl+Shift+C - EqControlsDialog + CarlaHostWindow - HP - HP + + Export as... + Exportar como... - Low Shelf + + + + + Error + Erro + + + + Failed to load project + Falha ao carregar projeto + + + + Failed to save project + Falha ao salvar projeto + + + + Quit + Fechar + + + + Are you sure you want to quit Carla? - Peak 1 + + Could not connect to Audio backend '%1', possible reasons: +%2 - Peak 2 + + Could not connect to Audio backend '%1' - Peak 3 - + + Warning + Aviso - Peak 4 - - - - High Shelf - - - - LP - LP - - - In Gain - - - - Gain - Ganho - - - Out Gain - Ganho - - - Bandwidth: - Largura de Banda: - - - Resonance : - Ressonância: - - - Frequency: - Frequência: - - - lp grp - - - - hp grp - - - - Octave - Oitava + + 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? - EqHandle + CarlaSettingsW - Reso: - Reso: + + Settings + Opções - BW: - BW: + + main + principal - Freq: - Freq: + + 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 + + + + Use "Classic" as default rack skin + + + + + Interface refresh interval: + Intervalo de atualização da interface: + + + + + ms + ms + + + + Show console output in Logs tab (needs engine restart) + + + + + Show a confirmation dialog before quitting + + + + + + Theme + Tema + + + + Use Carla "PRO" theme (needs restart) + Usar tema "PRO" da Carla (precisa reiniciar) + + + + Color scheme: + Esquema de cores: + + + + Black + Preto + + + + System + Sistema + + + + Enable experimental features + + + + + <b>Canvas</b> + + + + + Bezier Lines + Linhas de Bezier + + + + Theme: + Tema: + + + + Size: + Tamanho: + + + + 775x600 + 775x600 + + + + 1550x1200 + 1550x1200 + + + + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 + + + + + Options + Opções + + + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + + + + + Anti-Aliasing + + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + + + + + + Core + + + + + Single Client + + + + + Multiple Clients + + + + + + Continuous Rack + + + + + + Patchbay + + + + + Audio driver: + + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + + + + + Reset Xrun counter after project load + + + + + Plugin UIs + + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + + + + + <b>OSC</b> + + + + + Enable OSC + + + + + Enable TCP port + + + + + + Use specific port: + + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + + + + + Audio + Áudio + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + Usado para o plugin "audiofile" + + + + Used for the "midifile" plugin + Usado para o plugin "midifile" + + + + + Add... + + + + + + Remove + + + + + + Change... + + + + + <b>Plugin Paths</b> + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + SF2/3 + + + + + SFZ + + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + + + + + <b>Wine</b> + + + + + Executable + + + + + Path to 'wine' binary: + + + + + Prefix + + + + + Auto-detect Wine prefix based on plugin filename + Detectar automaticamente o prefixo Wine baseado no nome de arquivo do plugin + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + Usar OpenGL para renderização (requer reinicialização) + + + + High Quality Anti-Aliasing (OpenGL only) + Antisserrilhamento de Alta Qualidade (apenas OpenGL) + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + + + + + Force mono plugins as stereo + + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path + + + + + Dialog + + + Carla Control - Connect + + + + + Remote setup + + + + + UDP Port: + + + + + Remote host: + + + + + TCP Port: + + + + + Set value + + + + + TextLabel + + + + + Scale Points + + + + + DriverSettingsW + + + Driver Settings + + + + + Device: + Dispositivo: + + + + Buffer size: + + + + + Sample rate: + Taxa de amostragem: + + + + Triple buffer + + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings + 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) + Exportar como loop (remove o compasso extra) + Export between loop markers Exportar entre os marcadores de repetição - Could not open file - Não é possível abrir o arquivo + + Render Looped Section: + Renderizar Sessão de Loop - Export project to %1 - Exportar projeto para %1 + + time(s) + vez(es) - Error - Erro + + File format settings + Ajuste no formato do arquivo - 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. + + File format: + Formato do arquivo: - Rendering: %1% - Renderizando: %1% + + Sampling rate: + Taxa de amostragem - 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! - + + 44100 Hz + 44100 Hz - 24 Bit Integer - + + 48000 Hz + 48000 Hz - Use variable bitrate - + + 88200 Hz + 88200 Hz + + 96000 Hz + 96000 Hz + + + + 192000 Hz + 192000 Hz + + + + Bit depth: + Profundidade de Bits + + + + 16 Bit integer + Inteiro 16 Bits + + + + 24 Bit integer + Inteiro 24 Bits + + + + 32 Bit float + Flutuante 32 Bits + + + Stereo mode: - - - - Stereo - - - - Joint Stereo - + Modo estéreo + Mono - + Mono + + Stereo + Estéreo + + + + Joint stereo + Joint stereo + + + Compression level: - + Nível de compressão - (fastest) - + + Bitrate: + Velocidade em bits: - (default) - + + 64 KBit/s + 64 KBit/s - (smallest) - + + 128 KBit/s + 128 KBit/s - - - Expressive - Selected graph - + + 160 KBit/s + 160 KBit/s - A1 - + + 192 KBit/s + 192 KBit/s - A2 - + + 256 KBit/s + 256 KBit/s - A3 - + + 320 KBit/s + 320 KBit/s - W1 smoothing - + + Use variable bitrate + Usar taxa de bits variável - W2 smoothing - + + Quality settings + Configurações de qualidade - W3 smoothing - + + Interpolation: + Interpolação: - PAN1 - + + Zero order hold + Retentor de Ordem Zero - PAN2 - + + Sinc worst (fastest) + Sinc pior (mais rápida) - REL TRANS - + + Sinc medium (recommended) + Sinc média (recomendada) - - - Fader - Please enter a new value between %1 and %2: - Por favor coloque com um novo valor entre %1 e %2: + + Sinc best (slowest) + Sinc melhor (mais lenta) - - - FileBrowser - Browser - Navegador + + Start + Começar - Search - - - - Refresh list - - - - - FileBrowserTreeWidget - - Send to active instrument-track - Enviar para a faixa de instrumento ativa - - - Open in new instrument-track/B+B Editor - - - - 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 - - - file - arquivo - - - - FlangerControls - - Delay Samples - Amostras de atraso - - - Lfo Frequency - Lfo Frequência - - - Seconds - Segundos - - - Regen - - - - Noise - Ruído - - - Invert - Inverter - - - - FlangerControlsDialog - - Delay Time: - Tempo de Atraso: - - - Feedback Amount: - - - - White Noise Amount: - Quantidade de Ruído Branco: - - - DELAY - ATRASO - - - RATE - TAXA - - - AMNT - QNTD - - - Amount: - Quantidade: - - - FDBK - RTRN - - - NOISE - RUÍDO - - - Invert - Inverter - - - Period: - - - - - FxLine - - 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 - - - - FxMixer - - Master - Mestre - - - FX %1 - FX %1 - - - Volume - Volume - - - Mute - Mudo - - - Solo - Solo - - - - FxMixerView - - FX-Mixer - Mixer de Efeitos - - - FX Fader %1 - FX Fader %1 - - - Mute - Mudo - - - Mute this FX channel - Este canal FX mudo - - - Solo - Solo - - - Solo FX channel - Canal FX solo - - - - FxRoute - - Amount to send from channel %1 to channel %2 - Quantidade para enviar do canal %1 para o canal %2 - - - - GigInstrument - - Bank - Banco - - - Patch - Programação - - - Gain - Ganho - - - - GigInstrumentView - - Open 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 - - - GIG Files (*.gig) - Arquivos GIG (*.gig) - - - - GuiApplication - - Working directory - Diretório de trabalho - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - - - - Preparing UI - Preparando UI - - - Preparing song editor - Preparando o editor de som - - - Preparing mixer - Preparando o misturador - - - Preparing controller rack - - - - Preparing project notes - Preparando notas do projeto - - - Preparing beat/bassline editor - Preparando editor de batida/base - - - Preparing piano roll - - - - Preparing automation editor - Preparando editor de automação - - - - InstrumentFunctionArpeggio - - Arpeggio - Arpegio - - - Arpeggio type - Tipo de Arpegio - - - Arpeggio range - Escala de Arpejo - - - Arpeggio time - Tempo de Arpejo - - - 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 - - - Skip rate - - - - Miss rate - - - - Cycle steps - - - - - 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 - - - - 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. - - - - 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. - + + Cancel + Cancelar 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 + + Phrygian Frígio + 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 - + Mínima-Diminuída + 5 5 + Phrygian dominant - + Frígio dominante + Persian Persa - - 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: - - - - InstrumentMidiIOView - - ENABLE MIDI INPUT - HABILITAR ENTRADA MIDI - - - CHANNEL - CANAL - - - VELOCITY - VELOCITY - - - ENABLE MIDI OUTPUT - HABILITAR SAÍDA MIDI - - - PROGRAM - PROGRAMA - - - 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 - - - - BASE VELOCITY - - - - - InstrumentMiscView - - 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 + + + JackAppDialog - Envelopes/LFOs - Envelopes/LFOs - - - Filter type - Tipo de filtro - - - Q/Resonance - Q/Ressonância - - - LowPass - Passa Baixa - - - HiPass - Passa Alta - - - BandPass csg - Passa Banda csg - - - BandPass czpg - Passa Banda czpg - - - Notch - Vale - - - Allpass - Passa todas - - - Moog - Moog - - - 2x LowPass - 2x Passa Baixa - - - RC LowPass 12dB - RC PassaBaixa 12dB - - - RC BandPass 12dB - RC PassaBanda 12dB - - - RC HighPass 12dB - RC PassaAlta 12dB - - - RC LowPass 24dB - RC PassaBaixa 24dB - - - RC BandPass 24dB - RC PassaBanda 24dB - - - RC HighPass 24dB - RC PassaAlta 24dB - - - Vocal Formant Filter - Filtro de Formante Vocal - - - 2x Moog + + Add JACK Application - SV LowPass + + Note: Features not implemented yet are greyed out - SV BandPass + + Application - SV HighPass + + Name: - SV Notch + + Application: - Fast Formant - Formato Rápido + + From template + - Tripole + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + Entradas MIDI: + + + + Audio outputs: + + + + + MIDI outputs: + Saídas MIDI: + + + + Take control of main application window + + + + + Workarounds + Gambiarras + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + Capturar apenas a primeira Janela X11 + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + Erro aqui + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used - InstrumentSoundShapingView + JuceAboutW - 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: - - - Envelopes, LFOs and filters are not supported by the current instrument. + + This program uses JUCE version %1. - InstrumentTrack + MidiPatternW - unnamed_track - pista_sem_nome + + MIDI Pattern + Padrão MIDI - Volume - Volume + + Time Signature: + Fórmula de Compasso: - 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 - - - Pitch range - Extensão - - - Master Pitch - - - - - 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 - FX %1: %2 - - - - InstrumentTrackWindow - - GENERAL SETTINGS - AJUSTES GERAIS - - - Instrument volume - Volume do instrumento - - - 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 - - - Save current instrument track settings in a preset file + + + + 1/4 - 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 + + 2/4 - Chord stacking & arpeggio + + 3/4 - Effects + + 4/4 - MIDI settings - Configurações MIDI - - - Miscellaneous + + 5/4 - Plugin - - - - - Knob - - Set linear + + 6/4 - Set logarithmic + + Measures: + Medidas: + + + + + + 1 - 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: - - - - - LadspaControl - - Link channels - Conectar canais - - - - LadspaControlDialog - - Link Channels - Conectar Canais - - - Channel - Canal - - - - 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. - - - - LcdSpinBox - - Please enter a new value between %1 and %2: - Por favor coloque um novo valor entre %1 e %2: - - - - LeftRightNav - - Previous - Anterior - - - Next - Próximo - - - Previous (%1) - Anterior (%1) - - - Next (%1) - Próximo (%1) - - - - LfoController - - LFO Controller - Controlador de LFO - - - Base value - Valor base - - - Oscillator speed - Velocidade do oscilador - - - Oscillator amount - Quantidade do oscilador - - - Oscillator phase - Fase do oscilador - - - Oscillator waveform - Forma de onda do oscilador - - - Frequency Multiplier - Multiplicador de frequência - - - - LfoControllerDialog - - LFO - LFO - - - LFO Controller - Controlador de LFO - - - BASE - CENTRO - - - Base amount: - Ponto de Referência: - - - 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). - - - SPD - VEL - - - 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. - - - 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. + + 2 - AMNT - QNTD - - - - LmmsCore - - Generating wavetables + + 3 - Initializing data structures + + 4 - Opening audio and midi devices + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 - Launching mixer threads + + 9 + 9 + + + + 10 - - - MainWindow - &New - &Novo + + 11 + 11 - &Open... - &Abrir... + + 12 + - &Save - &Salvar + + 13 + 13 - Save &As... - Salvar &como... + + 14 + - Import... - Importar... + + 15 + - E&xport... - &Renderizar... + + 16 + - &Quit - Sai&r + + Default Length: + Tamanho Padrão: - &Edit - &Editar + + + 1/16 + - Settings - Opções + + + 1/15 + - &Tools - &Ferramentas + + + 1/12 + - &Help - Aj&uda + + + 1/9 + - Help - Ajuda + + + 1/8 + - What's this? - O que é isso? + + + 1/6 + - About - Sobre + + + 1/3 + - Create new project - Criar novo projeto + + + 1/2 + - 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 - - - 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 - 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. - - - 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 - - - Untitled - Sem_nome - - - LMMS %1 - LMMS %1 - - - 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? - - - 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) - - - Version %1 - Versão %1 - - - 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 + + Quantize: + Quantizar: + &File &Arquivo - &Recently Opened Projects - &Projetos Abertos Recentes + + &Edit + &Editar - Save as New &Version - Salvar como Nova &Versão + + &Quit + Sai&r - 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? - - - - 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. - - - - Smooth scroll - Rolagem suave - - - Enable note labels in piano roll - - - - Save project template - - - - Volume as dBFS - - - - Could not open file - Não é possível abrir o arquivo - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - - - - Export &MIDI... - Exportar &MIDI... - - - - MeterDialog - - Meter Numerator - Numerador Métrico - - - Meter Denominator - Denominador Métrico - - - TIME SIG - COMPASSO - - - - MeterModel - - Numerator - Numerador - - - Denominator - Denominador - - - - MidiController - - MIDI Controller - Controlador MIDI - - - unnamed_midi_controller - controlador-midi-sem-nome - - - - 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 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. - - - Track - Faixa - - - - MidiJack - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - O servidor JACK caiu - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - O servidor JACK parece estar encerrado. - - - - 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 - - - Base velocity - Velocidade base - - - - MidiSetupWidget - - 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 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 Volume - - - Osc 2 Panning - Panorâmico Osc 2 - - - Osc 2 Coarse detune - - - - Osc 2 Fine detune left - - - - Osc 2 Fine detune right - - - - Osc 2 Stereo phase offset - - - - Osc 2 Waveform - - - - Osc 2 Sync Hard - - - - Osc 2 Sync Reverse - - - - Osc 3 Volume - Osc 3 Volume - - - Osc 3 Panning - Panorâmico Osc 3 - - - Osc 3 Coarse detune - - - - Osc 3 Stereo phase offset - - - - Osc 3 Sub-oscillator mix - - - - Osc 3 Waveform 1 - - - - Osc 3 Waveform 2 - - - - Osc 3 Sync Hard - - - - Osc 3 Sync Reverse - - - - LFO 1 Waveform - - - - LFO 1 Attack - LFO 1 Ataque - - - LFO 1 Rate - - - - LFO 1 Phase - - - - LFO 2 Waveform - - - - LFO 2 Attack - LFO 2 Ataque - - - 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 - Vista selecionada - - - Vol1-Env1 - - - - Vol1-Env2 - - - - Vol1-LFO1 - Vol1-LFO1 - - - Vol1-LFO2 - Vol1-LFO2 - - - Vol2-Env1 - - - - Vol2-Env2 - - - - Vol2-LFO1 - Vol2-LFO1 - - - Vol2-LFO2 - Vol2-LFO2 - - - Vol3-Env1 - - - - Vol3-Env2 - - - - Vol3-LFO1 - Vol3-LFO1 - - - Vol3-LFO2 - 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 - Onda senoidal - - - Bandlimited Triangle wave - - - - Bandlimited Saw wave - - - - Bandlimited Ramp wave - - - - Bandlimited Square wave - - - - Bandlimited Moog saw wave - - - - Soft square wave - - - - Absolute sine wave - - - - Exponential wave - Onda exponencial - - - White noise - - - - Digital Triangle wave - - - - Digital Saw wave - - - - Digital Ramp wave - - - - Digital Square wave - - - - Digital Moog saw wave - - - - Triangle wave - Onda triangular - - - Saw wave - Onda dente de serra - - - Ramp wave - Onda de rampa - - - Square wave - Onda quadrada - - - Moog saw wave - - - - Abs. sine wave - - - - Random - Aleatório - - - Random smooth - - - - - MonstroView - - Operators view - Visão do operador - - - 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 - - - - 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 - Ataque - - - Rate - Taxa - - - Phase - Fase - - - Pre-delay - - - - Hold - Espera - - - Decay - Decaimento - - - Sustain - Sustentação - - - Release - Relaxamento - - - Slope - - - - Modulation amount - Quantidade de modulação - - - - MultitapEchoControlDialog - - Length - Comprimento - - - Step length: - - - - Dry - Seco - - - Dry Gain: - Ganho seco: - - - Stages - Estágios - - - Lowpass stages: - - - - Swap inputs - - - - Swap left and right input channel for reflections - - - - - NesInstrument - - Channel 1 Coarse detune - - - - Channel 1 Volume - Canal 1 Volume - - - Channel 1 Envelope length - - - - Channel 1 Duty cycle - - - - Channel 1 Sweep amount - - - - Channel 1 Sweep rate - - - - Channel 2 Coarse detune - - - - Channel 2 Volume - Canal 2 Volume - - - Channel 2 Envelope length - - - - Channel 2 Duty cycle - - - - Channel 2 Sweep amount - - - - Channel 2 Sweep rate - - - - Channel 3 Coarse detune - - - - Channel 3 Volume - Canal 3 Volume - - - Channel 4 Volume - Canal 4 Volume - - - Channel 4 Envelope length - - - - Channel 4 Noise frequency - - - - Channel 4 Noise frequency sweep - - - - Master volume - Volume Final - - - Vibrato - Vibrato - - - - NesInstrumentView - - Volume - Volume - - - Coarse detune - - - - Envelope length - - - - Enable channel 1 - Ativar canal 1 - - - Enable envelope 1 - - - - Enable envelope 1 loop + + Esc - 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 + + &Insert Mode + &Modo de Inserção - Noise Frequency - Ruído de Frequência - - - Frequency sweep + + F - Enable channel 4 - Ativar canal 4 - - - Enable envelope 4 + + &Velocity Mode - Enable envelope 4 loop + + D - Quantize noise frequency when using note frequency + + Select All - Use note frequency for noise - Usar frequência de nota para ruído - - - Noise mode - Modo de ruído - - - Master Volume - Volume Mestre - - - Vibrato - Vibrato - - - - 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 + + A PatchesDialog + + Qsynth: Channel Preset + + Bank selector - + Selecionar banco + + Bank Banco + + Program selector - + Selecionar programa + + Patch Programação + + Name Nome + + OK OK + + Cancel Cancelar - - PatmanView - - Open 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. - - - 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 - - Open in piano-roll - Abrir no Editor de Notas MIDI - - - Clear all notes - Limpar todas as notas - - - Reset name - Restaurar nome - - - Change name - Mudar nome - - - Add steps - Adicionar passo - - - Remove steps - Remover passo - - - Clone Steps - Clonar Etapas - - - - PeakController - - Peak Controller - Controlador de Picos - - - Peak Controller Bug - Problema no Controlador de Picos - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Devido a um problema na versão mais antiga do LMMS, os controladores de pico não pode se conectar corretamente. Certifique-se de que os controladores de pico estão conectados corretamente e volte a salvar este arquivo. Desculpe por qualquer inconveniente causado. - - - - PeakControllerDialog - - PEAK - Pico - - - LFO Controller - Controlador de LFO - - - - PeakControllerEffectControlDialog - - BASE - BASE - - - Base amount: - Quantidade de base: - - - Modulation amount: - Quantidade de modulação: - - - Attack: - Ataque: - - - Release: - Relaxamento: - - - AMNT - QNTD - - - MULT - MULT - - - Amount Multiplicator: - Multiplicador de quantidade: - - - ATCK - ATQU - - - DCAY - DCAI - - - Treshold: - - - - TRSH - - - - - 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 - - - - - 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 - - - - Select all notes on this key - Selecionar todas as notas desta chave - - - - PianoRollWindow - - Play/pause current pattern (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) - 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 - - - Copy paste controls - - - - Timeline controls - Controles de cronograma - - - Zoom and note controls - Controles de Zoom e nota - - - Piano-Roll - %1 - - - - Piano-Roll - no pattern - - - - Quantize - Quantizar - - - - PianoView - - Base note - Nota base - - - - Plugin - - Plugin not found - Plugin não encontrado - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - O plugin "%1" não pode ser carregado! -Motivo: "%2" - - - Error while loading plugin - Erro ao carregar plugin - - - Failed to load plugin "%1"! - Falha ao carregar o plugin "%1"! - - PluginBrowser - Instrument browser - Navegador de Instrumento - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - - - - Instrument Plugins - - - - - PluginFactory - - Plugin not found. - Plugin não achado. - - - LMMS plugin %1 does not have a plugin descriptor named %2! - - - - - 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 - - - - - ProjectRenderer - - WAV-File (*.wav) - Arquivo WAV (*.wav) - - - Compressed OGG-File (*.ogg) - Arquivo OGG compactado (*.ogg) - - - FLAC-File (*.flac) - - - - Compressed MP3-File (*.mp3) - - - - - QWidget - - Name: - Nome: - - - 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: - Arquivo: - - - File: %1 - Arquivo: %1 - - - - RenameDialog - - Rename... - Renomear... - - - - ReverbSCControlDialog - - Input - Entradas - - - Input Gain: - Ganho da entrada: - - - Size - Tamanho - - - Size: - Tamanho: - - - Color - Cor - - - Color: - Cor: - - - Output - Saídas - - - Output Gain: - Ganho de saída: - - - - ReverbSCControls - - Input Gain - - - - Size - Tamanho - - - Color - Cor - - - Output Gain - - - - - 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 - - - Delete (middle mousebutton) - Excluir (botão do meio do mouse) - - - Cut - Recortar - - - Copy - Copiar - - - Paste - Colar - - - Mute/unmute (<%1> + middle click) - Mudo/Não Mudo (<%1> + middle click) - - - - SampleTrack - - Sample track - Áudio Amostras - - - Volume - Volume - - - Panning - Panorâmico - - - - SampleTrackView - - Track volume - Volume da pista - - - Channel volume: - Volume do canal: - - - VOL - VOL - - - Panning - Panorâmico - - - Panning: - Panorâmico: - - - PAN - PAN - - - - SetupDialog - - Setup LMMS - Configurar LMMS - - - General settings - Configurações gerais - - - BUFFER SIZE - - - - Reset to default-value - Reiniciar para valor padrão - - - MISC - - - - Enable tooltips - Ativar Dicas - - - Show restart warning after changing settings - - - - 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 - LINGUAGEM - - - Paths - Caminhos - - - LMMS working directory - Diretório de trabalho LMMS - - - VST-plugin directory - Diretório de VST-plugin - - - Background artwork - - - - STK rawwave directory - - - - Default Soundfont File - Arquivo padrão de Soundfont - - - Performance settings - Configuração de Performance - - - UI effects vs. performance - - - - Smooth scroll in Song Editor - - - - Show playback cursor in AudioFileProcessor - - - - Audio settings - Configurações de áudio - - - AUDIO INTERFACE - INTERFACE DE ÁUDIO - - - MIDI settings - Configurações MIDI - - - MIDI INTERFACE - INTERFACE DO MIDI - - - 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 - - - Auto-save interval: %1 - - - - 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. - - - - - 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! - - - - Select directory for writing exported tracks... - - - - untitled - sem título - - - Select file for project-export... - - - - The following errors occured while loading: - - - - MIDI File (*.mid) - Arquivo MIDI (*.mid) - - - LMMS Error report - Reportar erro LMMS - - - Save project - Guardar projeto - - - - 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. - - - 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. - - - - - 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 - - - - Edit actions - Editar ações - - - Timeline controls - Controles de cronograma - - - Zoom controls - Controles de zoom - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - Espectro linear - - - Linear Y axis - - - - - SpectrumAnalyzerControls - - Linear spectrum - Espectro linear - - - Linear Y axis - - - - Channel mode - Modo de Canal - - - - SubWindow - - Close - Fechar - - - Maximize - Maximizar - - - Restore - Restaurar - - - - TabWidget - - Settings for %1 - Opções para %1 - - - - 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 - - - - TimeDisplayWidget - - click to change time units - clique para mudar as unidades de tempo - - - MIN - MIN - - - SEC - SEC - - - MSEC - - - - BAR - - - - BEAT - - - - TICK - - - - - 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 - 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 - - - - 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 Track %1 (%2/Total %3) - - - - - TrackContentObject - - Mute - Mudo - - - - TrackContentObjectView - - 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) - - - Delete (middle mousebutton) - Excluir (botão do meio do mouse) - - - Cut - Recortar - - - Copy - Copiar - - - Paste - Colar - - - Mute/unmute (<%1> + middle click) - Mudo/Não Mudo (<%1> + middle click) - - - - TrackOperationsWidget - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - - - - Actions for this track - Ações para esta faixa - - - Mute - Mudo - - - Solo - Solo - - - Mute this track - Deixar esta faixa muda - - - Clone this track - Clonar esta faixa - - - Remove this track - Remover esta faixa - - - Clear this track - Desmarcar esta faixa - - - FX %1: %2 - FX %1: %2 - - - Turn all recording on - - - - Turn all recording off - - - - Assign to new FX Channel - Atribuir novo Canal FX - - - - 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 - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Use o modulador de amplitude para modular o oscilador 2 com o oscilador 1 - - - Mix output of oscillator 1 & 2 - Misture as saídas do oscilador 1 e 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 - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Use o modulador de fase para modular o oscilador 3 com o oscilador 2 - - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Use o modulador de amplitude para modular o oscilador 3 com o oscilador 2 - - - Mix output of oscillator 2 & 3 - Misture as saídas do oscilador 2 e 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 - - - 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. - - - 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 a moog-like saw-wave for current oscillator. - Use uma onda dente de serra moog no oscilador atual. - - - Use an exponential wave for current oscillator. - Use uma onda exponencial 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. - - - - VersionedSaveDialog - - Increment version number - Incrementar número da versão - - - Decrement version number - Decrementar número da versão - - - already exists. Do you want to replace it? - - - - - VestigeInstrumentView - - Open other VST-plugin - Abrir outro 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. - Clique aqui se você quer abrir outro plugin VST. clicando neste botão, você verá uma caixa da seleção para escolher o arquivo. - - - 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. - - - 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. - - - 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 - - - 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. - - - 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 /> - - - - VstPlugin - - Loading plugin - Carregando plugin - - - 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... - - - The VST plugin %1 could not be loaded. - - - - - 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 - - - - 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. - 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 - - - - - ZynAddSubFxInstrument - - Portamento - - - - Filter Frequency - Frequência do Filtro - - - Filter Resonance - Ressonância do Filtro - - - Bandwidth - Largura da Banda - - - FM Gain - Ganho da FM - - - Resonance Center Frequency - Frequência Central de Ressonância - - - Resonance Bandwidth - Banda de Ressonância - - - Forward MIDI Control Change Events - Próximo evento de mudança de controle MIDI - - - - 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: - - - FREQ - FREQ - - - Filter Resonance: - Ressonância do Filtro: - - - RES - - - - Bandwidth: - Largura da Banda: - - - BW - LBnd - - - FM Gain: - Ganho da FM: - - - 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 - - - - audioFileProcessor - - Amplify - Amplificar - - - Start of sample - Início da amostra - - - End of sample - Fim da amostra - - - Reverse sample - Amostra reversa - - - Stutter - Gaguejar - - - Loopback point - - - - Loop mode - Modo de loop - - - Interpolation mode - - - - None - Nenhum - - - Linear - Linear - - - Sinc - - - - Sample not found: %1 - - - - - bitInvader - - Samplelength - Tamanho de amostra - - - - 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 - - - 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. - - - 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 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: - - - - RELEASE - 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 - Processo baseado no máximo de ambos canais estéreo - - - Stereomode Average - - - - Process based on the average of both stereo channels - - - - Stereomode Unlinked - - - - Process each stereo channel independently - Processo de cada canal estéreo independentemente - - - - dynProcControls - - Input gain - Ganho de entrada - - - Output gain - Ganho de saída - - - Attack time - Tempo de ataque - - - Release time - Tempo de lançamento - - - Stereo mode - Modo Estéreo - - - - 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 - - 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 - - - - Noise - Ruído - - - Click - Clique - - - Frequency Slope - - - - Start from note - - - - End to note - - - - - kickerInstrumentView - - Start frequency: - Frequência de partida: - - - End frequency: - Frequência final: - - - Gain: - Ganho: - - - Frequency Slope: - - - - Envelope Length: - - - - Envelope Slope: - - - - Click: - Clique: - - - Noise: - Ruído: - - - Distortion Start: - Início da distorção: - - - Distortion End: - Fim da distorção: - - - - 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 - - Plugins - Plugins - - - Description - Descrição - - - - ladspaPortDialog - - Ports - Portas - - - Name - Nome - - - Rate - Taxa - - - Direction - Direção - - - Type - Tipo - - - Min < Default < Max - Min < Padrão < Máx - - - Logarithmic - Logarítmico - - - SR Dependent - Dependente de SR - - - Audio - Áudio - - - Control - Controle - - - Input - Entradas - - - Output - Saídas - - - Toggled - Alternado - - - Integer - Inteiro - - - Float - Decimal - - - Yes - Sim - - - - lb302Synth - - VCF Cutoff Frequency - VCF - Frequência de corte - - - VCF Resonance - VCF - Ressonância - - - VCF Envelope Mod - VCF - Modulação do Envelope - - - VCF Envelope Decay - VCF - Decaimento do Envelope - - - Distortion - Distorção - - - Waveform - Forma de onda - - - Slide Decay - Decaimento gradual - - - Slide - Gradual - - - Accent - Realce - - - Dead - Morto - - - 24dB/oct Filter - Filtro 24dB/oct - - - - lb302SynthView - - Cutoff Freq: - Freq Corte: - - - Resonance: - Ressonância: - - - Env Mod: - Mod Env: - - - Decay: - Decaimento: - - - 303-es-que, 24dB/octave, 3 pole filter - 303-es-que, 24dB/octave, filtro 3 pole - - - Slide Decay: - Decaimento gradual: - - - DIST: - - - - Saw wave - Onda dente de serra - - - Click here for a saw-wave. - Clique aqui para usar uma onda dente de serra. - - - Triangle wave - Onda triangular - - - Click here for a triangle-wave. - Clique aqui para usar uma onda triangular. - - - Square wave - Onda quadrada - - - Click here for a square-wave. - Clique aqui para usar uma onda quadrada. - - - Rounded square wave - Onda quadrada arredondada - - - Click here for a square-wave with a rounded end. - Clique aqui para usar uma onda quadrada arredondada. - - - Moog wave - Onda Moog - - - Click here for a moog-like wave. - Clique aqui para usar uma onda tipo moog. - - - Sine wave - Onda senoidal - - - Click for a sine-wave. - Clique aqui para usar uma onda senoidal. - - - White noise wave - Ruído branco - - - Click here for an exponential wave. - Clique aqui para usar uma onda exponencial. - - - Click here for white-noise. - Clique aqui para usar um ruído branco. - - - Bandlimited saw wave - - - - Click here for bandlimited saw wave. - - - - Bandlimited square wave - - - - Click here for bandlimited square wave. - - - - Bandlimited triangle wave - - - - Click here for bandlimited triangle wave. - - - - Bandlimited moog saw wave - - - - Click here for bandlimited moog saw wave. - - - - - malletsInstrument - - Hardness - Dificuldade - - - Position - Posição - - - Vibrato Gain - Ganho do Vibrato - - - Vibrato Freq - Frequência do Vibrato - - - Stick Mix - Percussa Mix - - - Modulator - Modulador - - - Crossfade - Transição - - - LFO Speed - LFO - Velocidade - - - LFO Depth - LFO - Profundidade - - - ADSR - ADSR - - - Pressure - Pressão - - - Motion - Movimento - - - Speed - Velocidade - - - Bowed - De Arco - - - Spread - Propagação - - - Marimba - Marimba - - - Vibraphone - Vibrafone - - - Agogo - Agogo - - - Wood1 - Madeira-1 - - - Reso - Resso - - - Wood2 - Madeira-2 - - - Beats - Batidas - - - Two Fixed - Duas Fixas - - - Clump - - - - Tubular Bells - Sinos Tubulares - - - Uniform Bar - Barra Uniforme - - - Tuned Bar - Barra Afinada - - - Glass - Taça - - - Tibetan Bowl - Tigelas Tibetanas - - - - 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! - - - - - 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. - - - 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 - - - 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 - - Distortion - Distorção - - - Volume - Volume - - - - organicInstrumentView - - Distortion: - Distorção: - - - Volume: - Volume: - - - Randomise - Aleatorizar - - - Osc %1 waveform: - Forma de Onda Osc %1: - - - Osc %1 volume: - Volume Osc %1: - - - Osc %1 panning: - Panorâmico Osc %1: - - - 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 - - - - 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 - - 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 + + A native amplifier plugin + Um plugin amplificador nativo - Plugin for freely manipulating stereo output - Plugin para livre manipulação das saídas estéreo + + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + Amostrador simples com várias configurações para usar amostras (ex. Percussão) em uma trilha de instrumento - Plugin for controlling knobs with sound peaks - Plugin para controlar botões com os picos sonoros + + Boost your bass the fast and simple way + Aumente os graves de forma rápida e simples - 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 + + Customizable wavetable synthesizer + Sintetizador de formas de onda customizáveis + + An oversampling bitcrusher + + + + + Carla Patchbay Instrument + Instrumento do Carla Patchbay + + + + Carla Rack Instrument + Instrumento do Carla Rack + + + + A dynamic range compressor. + + + + + A 4-band Crossover Equalizer + Um Equalizador Crossover de 4 bandas + + + + A native delay plugin + Plugin de delay nativo + + + + A Dual filter plugin + Plugin de filtro duplo + + + + plugin for processing dynamics in a flexible way + plugin para processamento dinâmico de um jeito flexível + + + + A native eq plugin + Um plugin equalizador nativo + + + + A native flanger plugin + + + + + Emulation of GameBoy (TM) APU + Emulação do GameBoy (TM) APU + + + + Player for GIG files + Tocador para arquivos GIG + + + + Filter for importing Hydrogen files into LMMS + Filtro para importação de arquivos do Hydrogen para o LMMS + + + + Versatile drum synthesizer + Sintetizador de Bateria Versátil + + + List installed LADSPA plugins Lista dos plugins LADSPA instalados - 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. + + Incomplete monophonic imitation TB-303 + Imitação monofônica incompleta do TB-303 + + + + plugin for using arbitrary LV2-effects inside LMMS. + plugin para usar efeitos LV2 arbitrários no LMMS + + + + plugin for using arbitrary LV2 instruments inside LMMS. + plugin para usar instrumentos LV2 arbitrários no LMMS + + + + Filter for exporting MIDI-files from LMMS + Filtro para exportar arquivos MIDI do LMMS + + + Filter for importing MIDI-files into LMMS Filtro para importação de arquivos MIDI para o LMMS + + Monstrous 3-oscillator synth with modulation matrix + Sintetizador monstruoso de 3 osciladores com matriz de modulação + + + + A multitap echo delay plugin + Um plugin de delay multi ecos + + + + A NES-like synthesizer + Um sintetizador como o Nintendinho + + + + 2-operator FM Synth + Dois Operadores de Síntese FM + + + + Additive Synthesizer for organ-like sounds + Síntetizador de Síntese Aditiva para sons tipo de órgão + + + + GUS-compatible patch instrument + Pré definição de instrumento compatível com GUS (Gravis Ultrasound) + + + + Plugin for controlling knobs with sound peaks + Plugin para controlar botões com os picos sonoros + + + + Reverb algorithm by Sean Costello + Algoritmo de reverberação por Sean Costello + + + + Player for SoundFont files + Tocador para arquivos SoundFont + + + + LMMS port of sfxr + sfxr para LMMS + + + Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. Emulação do MOS6581 e do MOS8580 SID. Este chip foi utilizado no computador Commodore 64. - Player for SoundFont files - Tocador de arquivos de SounFont + + A graphical spectrum analyzer. + Um analisador gráfico de espectro - Emulation of GameBoy (TM) APU - Emulação do GameBoy (TM) APU + + 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 - Customizable wavetable synthesizer - Sintetizador de formas de onda customizáveis + + Plugin for freely manipulating stereo output + Plugin para livre manipulação das saídas estéreo + + Tuneful things to bang on + Instrumentos percussivos com afinação para você usar + + + + Three powerful oscillators you can modulate in several ways + Três osciladores poderosos que você pode modular em diversas formas + + + + A stereo field visualizer. + Um visualizador do campo estéreo + + + + VST-host for using VST(i)-plugins within LMMS + Servidor (host) VST para usar plugins VST(i) com o LMMS + + + + Vibrating string modeler + Modelador de Cordas vibrantes + + + + plugin for using arbitrary VST effects inside LMMS. + plugin para uso de efeitos VST arbitrários no LMMS + + + + 4-oscillator modulatable wavetable synth + Sintetizador de tabela ondulatória com 4 osciladores moduláveis + + + + plugin for waveshaping + plugin para formas de ondas + + + + Mathematical expression parser + Analisador de expressões matemáticas + + + Embedded ZynAddSubFX Poderoso sintetizador ZynAddSubFx embutido no LMMS - 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 + + An all-pass filter allowing for extremely high orders. - Three powerful oscillators you can modulate in several ways + + Granular pitch shifter - A native amplifier plugin + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - Carla Rack Instrument - Instrumento do Rack Carla - - - 4-oscillator modulatable wavetable synth + + Basic Slicer - plugin for waveshaping + + Tap to the beat + Toque no ritmo + + + + PluginEdit + + + Plugin Editor + Editor de Plugin + + + + Edit - Boost your bass the fast and simple way + + Control + Controle + + + + MIDI Control Channel: - Versatile drum synthesizer + + N - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + + Output dry/wet (100%) - plugin for processing dynamics in a flexible way + + Output volume (100%) - Carla Patchbay Instrument + + Balance Left (0%) - plugin for using arbitrary VST effects inside LMMS. + + + Balance Right (0%) - Graphical spectrum analyzer plugin + + Use Balance - A NES-like synthesizer + + Use Panning - A native delay plugin + + Settings + Opções + + + + Use Chunks - Player for GIG files - Tocador para arquivos GIG - - - A multitap echo delay plugin + + Audio: - A native flanger plugin + + Fixed-Size Buffer - An oversampling bitcrusher + + Force Stereo (needs reload) - A native eq plugin + + MIDI: - A 4-band Crossover Equalizer + + Map Program Changes - A Dual filter plugin + + Send Notes - Filter for exporting MIDI-files from LMMS + + Send Bank/Program Changes - Reverb algorithm by Sean Costello + + Send Control Changes - Mathematical expression parser + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + Programa MIDI: + + + + Save State + + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + Tipo: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: - sf2Instrument + PluginFactory - Bank - Banco + + Plugin not found. + Plugin não achado. - Patch - Programação - - - Gain - Ganho - - - Reverb - Reverberação - - - Reverb Roomsize - Tamanho da sala em Reverberação - - - Reverb Damping - Absorção da Reverberação - - - Reverb Width - Tamanho da Reverberação - - - Reverb Level - Nível de Reverberação - - - Chorus - Chorus - - - Chorus Lines - Linhas de Chorus - - - Chorus Level - Nível de Chorus - - - Chorus Speed - Velocidade do Chorus - - - Chorus Depth - Profundidade do Chorus - - - A soundfont %1 could not be loaded. + + LMMS plugin %1 does not have a plugin descriptor named %2! - sf2InstrumentView + PluginListDialog - Open other SoundFont file - Abrir outro arquivo SoundFont + + Carla - Add New + - Click here to open another SF2 file - Clique aqui para abrir outro arquivo SF2 + + Requirements + - Choose the patch - Escolher o patch + + With Custom GUI + - Gain - Ganho + + With CV Ports + - Apply reverb (if supported) - Aplicar reverberação (se suportado) + + Real-time safe only + - 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. + + Stereo only + Apenas estéreo - Reverb Roomsize: - Tamanho da sala em Reverbaração: + + With Inline Display + - Reverb Damping: - Absorção da Reverberação: + + Favorites only + - Reverb Width: - Tamanho da Reverberação: + + (Number of Plugins go here) + - Reverb Level: - Nível de Reverberação: + + &Add Plugin + - Apply chorus (if supported) - Aplicar chorus (se suportado) + + Cancel + - 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. + + Refresh + Atualizar - Chorus Lines: - Linhas de Chorus: + + Reset filters + - Chorus Level: - Nível de Chorus: + + + + + + + + + + + + + + + + + TextLabel + - Chorus Speed: - Velocidade do Chorus: + + Format: + - Chorus Depth: - Profundidade do Chorus: + + Architecture: + - Open SoundFont file - Abrir o arquivo SoundFont + + Type: + - SoundFont2 Files (*.sf2) - Arquivos SoundFont2 (*sf2) + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + Plugins MIDI + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + Descobrindo kits SF2 + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + - sfxrInstrument + PluginParameter - Wave Form - Forma de Onda + + Form + + + + + Parameter Name + + + + + TextLabel + + + + + ... + - sidInstrument + PluginRefreshDialog - Cutoff - Corte + + Plugin Refresh + - Resonance - Ressonância + + Search for: + - Filter type - Tipo de filtro + + All plugins, ignoring cache + - Voice 3 off - Voz 3 desligada + + Updated plugins only + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + Liga/Desliga + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + + + ProjectRenderer + + + WAV (*.wav) + + + + + FLAC (*.flac) + + + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + Recarregar Plugin + + + + Show GUI + Mostrar GUI + + + + Help + Ajuda + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + Abrir arquivo de áudio + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + Nome: + + + + 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: + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + &Arquivo + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + Volume Volume - Chip model - Modelo do chip + + Panning + Panorâmico + + + + Left gain + Ganho esquerdo + + + + Right gain + Ganho direito - sidInstrumentView + lmms::AudioFileProcessor - Volume: - Volume: + + Amplify + Amplificar - Resonance: - Ressonância: + + Start of sample + Início da amostra - Cutoff frequency: - Frequência de corte: + + End of sample + Fim da amostra - High-Pass filter - Filtro Passa Alta + + Loopback point + Ponto de retorno - Band-Pass filter - Filtro Passa Banda + + Reverse sample + Inverter amostra - Low-Pass filter - Filtro Passa Baixa + + Loop mode + Modo de loop - Voice3 Off - Voz3 Desligada - - - MOS6581 SID + + Stutter - MOS8580 SID + + Interpolation mode + Modo de interpolação + + + + None + Nenhum + + + + Linear + Linear + + + + Sinc + Sinc + + + + Sample not found + Amostra não encontrada + + + + lmms::AudioJack + + + JACK client restarted + Cliente JACK reiniciou + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - Attack: - Ataque: + + JACK server down + - 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. + + 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. + - Decay: - Decaimento: + + Client name + Nome do cliente - 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. + + Channels + Canais + + + + lmms::AudioOss + + + Device + Dispositivos - Sustain: - Sustentação: + + Channels + Canais + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Backend - 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. + + Device + + + + + lmms::AudioPulseAudio + + + Device + - Release: - Relaxamento: + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + - 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. + + Input device + + + + + lmms::AudioSndio + + + Device + - Pulse Width: - Tamanho do Pulso: + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + - 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. + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + - Coarse: - Ajuste Bruto: + + &Copy value (%1%2) + - 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. + + &Paste value (%1%2) + - Pulse Wave - Onda de Pulso + + &Paste value + - Triangle Wave - Onda Triangular + + Edit song-global automation + Editar automação global da música - SawTooth - Dente de Serra + + Remove song-global automation + Apagar automação global da música + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + Trilha de Automação + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + Interpolação + + + + Normalize + Normalizar + + + + lmms::BitcrushControls + + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + Quantidade + + + + Frequency + Frequência + + + + Resonance + Ressonância + + + + Feedback + Retorno + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + Abrindo áudio e dispositivos midi + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + Noise Ruído + + Invert + Inverter + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + Sync - 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. + - stereoEnhancerControlDialog + lmms::InstrumentFunctionNoteStacking - WIDE - ABRIR + + Chords + - Width: - Largura: + + Chord type + + + + + Chord range + - stereoEnhancerControls + lmms::InstrumentSoundShaping + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + Ativar/Desativar MIDI CC + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + Ruído + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + Vidro + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + Numerador + + + + Denominator + Denominador + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + Controlador MIDI + + + + unnamed_midi_controller + controlador_midi_sem_nome + + + + lmms::MidiImport + + + + Setup incomplete + Configuração incompleta + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + Você não definiu um soundfont padrão no diálogo de configurações (Editar->Configurações). Portanto nenhum som irá tocar após importar este arquivo MIDI. Você deve baixar um soundfont MIDI Geral, especifique-o no diálogo de configurações e tente novamente. + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + Você não compilou o LMMS com suporte para o tocador SoundFont2, que é usado para adicionar som padrão aos arquivos MIDI importados. Portanto nenhum som irá tocar após importar este arquivo MIDI. + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + Programa de saída MIDI + + + + Base velocity + + + + + Receive MIDI-events + Receber eventos MIDI + + + + Send MIDI-events + Enviar eventos MIDI + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + Ruído branco + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + Trilha de Amostras + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + Um soundfont %1 não pôde ser carregado. + + + + lmms::SfxrInstrument + + + Wave + Onda + + + + lmms::SidInstrument + + + Cutoff frequency + Frequência de corte + + + + Resonance + Ressonância + + + + Filter type + Tipo de filtro + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + Width - Largura + - stereoMatrixControlDialog - - Left to Left Vol: - Esq para Esq Vol: - - - Left to Right Vol: - Esq para Dir Vol: - - - Right to Left Vol: - Dir para Esq Vol: - - - Right to Right Vol: - Dir para Dir Vol: - - - - stereoMatrixControls + lmms::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 + lmms::Track + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + Não foi possível importar o arquivo + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + Não foi possível abrir o arquivo + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + Carregando projeto + + + + + Cancel + Cancelar + + + + + Please wait... + Por favor espere... + + + + Loading cancelled + Carregamento cancelado + + + + Project loading was cancelled. + Carregamento do projeto foi cancelado + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + Importando arquivo MIDI + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + Escala logarítmica + + + + High quality + + + + + lmms::VestigeInstrument + + Loading plugin Carregando plugin - Please wait while loading VST-plugin... - Por favor, espere enquanto carrego o plugin VST... + + Please wait while loading the VST plugin... + Por favor espere enquanto o plugin VST carrega... - vibed + lmms::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 + lmms::VoiceObject + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + Abrir Predefinição + + + + + VST Plugin Preset (*.fxp *.fxb) + Predefinição de Plugin VST (*.fxp *.fxb) + + + + : default + + + + + Save Preset + Salvar Predefinição + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + Por favor espere enquanto o plugin VST carrega... + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + Volume: - Volume: + - The 'V' knob sets the volume of the selected string. - O botão "V" modifica o volume da corda selecionada. + + PAN + - String stiffness: - Dureza da corda: + + Panning: + - 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. + + LEFT + - Pick position: - Escolher pinçada: + + Left gain: + - 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. + + RIGHT + - Pickup position: - Posição do captador: + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + - 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. + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + Abrir amostra - Pan: - Pan: + + Reverse sample + Inverter amostra - 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. + + Disable loop + - Detune: - Desafinar: + + Enable loop + - 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. + + Enable ping-pong loop + - Fuzziness: - Encrespando: + + Continue sample playback across notes + - 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". + + Amplify: + Amplificar: - Length: - Tamanho: + + Start point: + Ponto inicial: - 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. + + End point: + Ponto final: - Impulse or initial state - Impulso ou estado inicial + + Loopback point: + Ponto de retorno: + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + Tamanho da amostra + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + Abrir no editor de Automação - 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. + + Clear + - Octave - Oitava + + Reset name + Restaurar nome - 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. + + Change name + Mudar nome - Impulse Editor - Editor de Impulso + + Set/clear record + - 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. + + Flip Vertically (Visible) + - 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. + + Flip Horizontally (Visible) + - Enable waveform - Habilitar forma de onda + + %1 Connections + - Click here to enable/disable waveform. - Clique aqui para habilitar/desabilitar forma de onda. + + Disconnect "%1" + - String - Corda + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + - 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. + + New outValue + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + Modo desenho (Shift+D) + + + + Erase mode (Shift+E) + Modo Apagar (Shift+E) + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + Editor de Automação - %1 + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Sine wave - Onda senoidal + + + Triangle wave - Onda triangular + + + Saw wave - Onda dente de serra + + + Square wave - Onda quadrada + - White noise wave + + + White noise Ruído branco - User defined wave - Onda definida pelo usuário - - - Smooth - Suavizar - - - 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. - - - - voiceObject - - Voice %1 pulse width - Voz %1 tamanho do pulso - - - Voice %1 attack - Voz %1 ataque - - - Voice %1 decay - Voz %1 decaimento - - - Voice %1 sustain - Voz %1 sustentação - - - Voice %1 release - Voz %1 relaxamento - - - Voice %1 coarse detuning - Voz %1 ajuste bruto - - - Voice %1 wave shape - Voz %1 forma da onda - - - Voice %1 sync - Voz %1 sincronizada - - - Voice %1 ring modulate - Voz %1 modulada em anel - - - Voice %1 filtered - Voz %1 filtrada - - - Voice %1 test - Voz %1 teste - - - - waveShaperControlDialog - - INPUT - ENTRADA - - - Input gain: - Ganho de entrada: - - - OUTPUT - SAÍDA - - - Output gain: - Ganho de saída: - - - 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 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 + + Normalize - waveShaperControls + lmms::gui::BitcrushControlDialog - Input gain - Ganho de entrada + + IN + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + RUÍDO + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + Output gain - Ganho de saída + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + CONTROLADOR MIDI + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + Dispositivos MIDI recebem eventos MIDI de + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + QNT + + + + Number of all-pass filters + Números de filtros all-pass + + + + FREQ + + + + + Frequency: + Frequência: + + + + RESO + RESS + + + + Resonance: + Ressonância: + + + + FEED + RTRN + + + + Feedback: + Retorno: + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + Não foi possível abrir o arquivo + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + Abrir pasta contendo + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + --- Arquivos de fábrica --- + + + + lmms::gui::FileDialog + + + %1 files + %1 arquivos + + + + All audio files + + + + + Other files + Outros arquivos + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + RUÍDO + + + + White noise amount: + Quantidade de ruído branco: + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + Abrir arquivo GIG + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + Preparando o editor de automação + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + ATIVAR ENTRADA MIDI + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + ATIVAR SAÍDA MIDI + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + Dispositivos MIDI recebem eventos MIDI de + + + + MIDI devices to send MIDI events to + Dispositivos MIDI enviam eventos MIDI para + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + Abrir/Fechar Rack MIDI CC + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + Arquivo de predefinição XML (*.xpf) + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + Ruído: + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + Clique aqui para ruído-branco + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + Ruído branco + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + Arquivo de configuração + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + Não foi possível abrir o arquivo + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + Há um arquivo de recuperação presente. Parece que a última sessão não terminou devidamente ou outra instância do LMMS está em execução. Você quer recuperar o projeto desta sessão? + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + Recuperar o arquivo. Por favor não execute múltiplas instâncias do LMMS quando fizer isto. + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + Abrir uma sessão padrão e apagar os arquivos restaurados. Isto não é reversível. + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + Preparando exploradores de arquivo + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + &Arquivo + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + Abrir projeto existente + + + + Recently opened projects + Projetos abertos recentemente + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + Editor de Automação + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + O projeto atual foi modificado desde o último salvamento. Gostaria de salvar agora? + + + + Open Project + Abrir Projeto + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + Arquivo MIDI (*.mid) + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + Limpar todas as notas + + + + Reset name + + + + + Change name + Mudar nome + + + + Add steps + Adicionar passos + + + + Remove steps + Remover passos + + + + Clone Steps + Clonar Passos + + + + lmms::gui::MidiSetupWidget + + + Device + Dispositivo + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + Cor + + + + Change + Mudar + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + Não perguntar novamente + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + Taxa + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + Frequência de Ruído + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + Modo de ruído + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + Nenhum arquivo selecionado + + + + Open patch file + + + + + Patch-Files (*.pat) + Arquivos-Patch (*.pat) + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + Adicionar trilha de automação + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + Grava notas de um dispositivo MIDI/canal de piano + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + Gravar notas de um dispositivo MIDI/canal de piano enquanto toca a música ou Base + + + + Record notes from MIDI-device/channel-piano, one step at the time + Gravar notas de um dispositivo MIDI/canal de piano um passo por vez + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + Lâmina + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + Enviar para uma nova trilha de instrumento + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + &Projetos Abertos Recentemente + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + Duplo clique para abrir amostra + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + Silenciar trilhas de automação durante solo + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + Mostrar aviso ao deletar um canal mixer que está em uso + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + Interface MIDI + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + Diretório SF2 + + + + Default SF2 + SF2 padrão + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + Escolha seu diretório SF2 + + + + Choose your default SF2 + Escolha seu SF2 padrão + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + Abrir arquivo SoundFont + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + Arquivos SoundFont (*.sf2 *.sf3) + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + Ruído + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + Não foi possível abrir o arquivo + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + Erro no arquivo + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + Gravar amostras de um dispositivo de áudio + + + + Record samples from Audio-device while playing song or pattern track + Gravar amostras de um dispositivo enquanto toca a música ou uma Base + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + Adicionar trilha de automação + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + Modo lâmina (cortar clipes de amostra) + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + Silenciar metrônomo + + + + Mute + Silenciar + + + + BPM in milliseconds + BPM em milissegundos + + + + 0 ms + + + + + Frequency of BPM + Frequência do BPM + + + + 0.0000 hz + + + + + Reset + Resetar + + + + Reset counter and sidebar information + Resetar contador e informação da barra lateral + + + + Sync + Sincronizar + + + + Sync with project tempo + Sincronizar com o andamento do projeto + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + Ruído branco + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + Abrir plugin VST + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + Abrir predefinição de plugin VST + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + Ruído branco + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + Abrir predefinição de plugin VST + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + Abrir janela de ajuda + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + Ruído branco + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + \ No newline at end of file diff --git a/data/locale/ro.ts b/data/locale/ro.ts new file mode 100644 index 000000000..4823ca57e --- /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 + + + + + MixerChannelView + + + Channel send amount + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Set channel color + + + + + Remove channel color + + + + + Pick random channel color + + + + + MixerChannelLcdSpinBox + + + Assign to: + + + + + New mixer Channel + + + + + Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + 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 + + + + + InstrumentTuningView + + + 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 f717d598d..5c3af4e83 100644 --- a/data/locale/ru.ts +++ b/data/locale/ru.ts @@ -1,5194 +1,6867 @@ - + 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 Лицензия - AmplifierControlDialog + AboutJuceDialog - - 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. - Нажмите здесь, чтобы открыть другой звуковой файл. В новом окне диалога вы сможете выбрать нужный файл. Такие настройки, как режим повтора, точки начала/конца, усиление и прочие не сбросятся, поэтому звучание может отличаться от оригинала. - - - - 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. - Эта кнопка включает переднюю петлю. Сэмпл кольцуется между конечной точкой и точкой петли. - - - - 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% исходный звук не меняется, в противном случае ― он будет ослаблен или усилен. (Обратите внимание, что исходная запись при этом останется нетронутой.) - - - - 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. - Этот регулятор ставит точку начала петли. - - - - AudioFileProcessorWaveView - - - Sample length: - Длина записи: - - - - AudioJack - - - JACK client restarted - JACK-клиент перезапущен - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS не был подключен к JACK по какой-то причине, поэтому LMMS подключение к JACK было перезапущено. Вам придётся заново вручную создать соединения. - - - - JACK server down - JACK-сервер не доступен - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Возможно JACK-сервер был выключен и запуск нового процесса не удался, поэтому ЛММС не может продолжить работу. Вам следует сохранить проект и перезапустить JACK и LMMS. - - - - CLIENT-NAME - ИМЯ КЛИЕНТА - - - - CHANNELS - КАНАЛЫ - - - - AudioOss::setupWidget - - - DEVICE - УСТРОЙСТВО - - - - CHANNELS - КАНАЛЫ - - - - AudioPortAudio::setupWidget - - - BACKEND - УПРАВЛЕНИЕ - - - - DEVICE - УСТРОЙСТВО - - - - AudioPulseAudio::setupWidget - - - DEVICE - УСТРОЙСТВО - - - - CHANNELS - КАНАЛЫ - - - - AudioSdl::setupWidget - - - DEVICE - УСТРОЙСТВО - - - - AudioSndio::setupWidget - - - DEVICE - УСТРОЙСТВО - - - - CHANNELS - КАНАЛЫ - - - - AudioSoundIo::setupWidget - - - BACKEND - БЭКЕНД - - - - DEVICE - УСТРОЙСТВО - - - - AutomatableModel - - - &Reset (%1%2) - &R Сбросить (%1%2) - - - - &Copy value (%1%2) - &C Копировать значение (%1%2) - - - - &Paste value (%1%2) - &P Вставить значение (%1%2) - - - - Edit song-global automation - Изменить глоабльную автоматизацию композиции - - - - Remove song-global automation - Убрать глобальную автоматизацию композиции - - - - Remove all linked controls - Убрать всё присоединенное управление - - - - Connected to %1 - Подсоединено к %1 - - - - Connected to controller - Подсоединено к контроллеру - - - - Edit connection... - Настроить соединение... - - - - Remove connection - Удалить соединение - - - - Connect to controller... - Соединить с контроллером... - - - - AutomationEditor - - - Please open an automation pattern with the context menu of a control! - Откройте редатор автоматизации через контекстное меню регулятора! - - - - Values copied - Значения скопированы - - - - All selected values were copied to the clipboard. - Все выбранные значения скопированы в буфер обмена. - - - - AutomationEditorWindow - - - Play/pause current pattern (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. - Нажмите здесь, если вы хотите остановить воспроизведение текущей мелодии. - - - - Edit actions - Правка: - - - - 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. - - - - 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 - Приблизить управление - - - - 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. + + About JUCE - - - Automation Editor - no pattern - Редактор автоматизаци — нет шаблона + + <b>About JUCE</b> + - - - Automation Editor - %1 - Редактор автоматизации — %1 + + This program uses JUCE version 3.x.x. + - - Model is already connected to this pattern. - Модель уже подключена к этому шаблону. + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + + + + + This program uses JUCE version + - AutomationPattern + AudioDeviceSetupWidget - - Drag a control while pressing <%1> - Тяните контроль удерживая <%1> + + [System Default] + - AutomationPatternView + CarlaAboutW - - double-click to open this pattern in automation editor - Дважды щёлкните мышью чтобы настроить автоматизацию этого шаблона + + About Carla + О Carla - - Open in Automation editor - Открыть в редакторе автоматизации + + About + О программе - - Clear - Очистить + + About text here + О тексте здесь - - Reset name - Сбросить название + + Extended licensing here + Расширенное лицензирование здесь - - Change name - Переименовать + + Artwork + Художественное оформление - - Set/clear record - Установить/очистить запись + + Using KDE Oxygen icon set, designed by Oxygen Team. + Использует набор значков KDE Oxygen, созданный Oxygen Team. - - Flip Vertically (Visible) - Перевернуть вертикально (Видимое) + + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. + Содержит некоторые регуляторы, фоны и другие небольшие иллюстрации из проектов Calf Studio Gear, OpenAV и OpenOctave. - - Flip Horizontally (Visible) - Перевернуть горизонтально (Видимое) + + VST is a trademark of Steinberg Media Technologies GmbH. + VST является торговой маркой Steinberg Media Technologies GmbH. - - %1 Connections - Соединения %1 + + Special thanks to António Saraiva for a few extra icons and artwork! + Отдельное спасибо Антониу Сараиве за несколько дополнительных иконок и иллюстраций! - - Disconnect "%1" - Отсоединить «%1» + + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. + Логотип LV2 был разработан Торстеном Вильмсом на основе концепта Петера Шортозе. - - Model is already connected to this pattern. - Модель уже подключена к этому шаблону. + + MIDI Keyboard designed by Thorsten Wilms. + MIDI-клавиатура, разработанная Торстеном Уилмсом. + + + + Carla, Carla-Control and Patchbay icons designed by DoosC. + Иконки Carla, Carla-Control и Patchbay разработаны DoosC. + + + + Features + Возможности + + + + AU/AudioUnit: + AU/AudioUnit: + + + + LADSPA: + LADSPA: + + + + + + + + + + + TextLabel + ТекстоваяМетка + + + + VST2: + VST2: + + + + DSSI: + DSSI: + + + + LV2: + LV2: + + + + VST3: + VST3: + + + + OSC + OSC + + + + Host URLs: + Адреса хостов: + + + + Valid commands: + Допустимые команды: + + + + valid osc commands here + допустимые команды osc здесь + + + + 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 + Версия OSC Bridge + + + + Plugin Version + Версия плагина + + + + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> + <br>Версия %1<br>Carla — полнофункциональный хост аудио-плагинов%2.<br><br>Copyright © 2011–2019 falkTX<br> + + + + + (Engine not running) + (Движок не запущен) + + + + Everything! (Including LRDF) + Всё! (Включая LRDF) + + + + Everything! (Including CustomData/Chunks) + Всё! (Включая CustomData/Chunks) + + + + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + Завершено около 110&#37; (с пользовательскими расширениями)<br/>Реализованные функции и расширения:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + + + + + + Using Juce host + Использование узла Juce + + + + About 85% complete (missing vst bank/presets and some minor stuff) + Примерно на 85% (не хватает vst банка/пресетов и некоторых мелочей) - AutomationTrack + CarlaHostW - - Automation track - Дорожка автоматизации - - - - BBEditor - - - Beat+Bassline Editor - Ритм+Бас Редактор + + MainWindow + ГлавноеОкно - - Play/pause current beat/bassline (Space) - Игра/пауза текущей линии ритма/баса (<Space>) + + Rack + Стойка - - Stop playback of current beat/bassline (Space) - Остановить воспроизведение текущей линии ритм-баса (ПРОБЕЛ) + + Patchbay + Патчбэй - - Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. - Нажмите чтобы проиграть текущую линию ритм-баса. Она будет закольцована по достижении окончания. + + Logs + Журналы - - Click here to stop playing of current beat/bassline. - Остановить воспроизведение (Пробел). + + Loading... + Загрузка… - - Beat selector - Выбор бита + + Save + - - Track and step actions - Действия для дорожки или ее части + + Clear + - - Add beat/bassline - Добавить ритм/бас + + Ctrl+L + - - Add sample-track - Добавить дорожку записи + + Auto-Scroll + - - Add automation-track - Добавить дорожку автоматизации + + Buffer Size: + Размер буфера: - - Remove steps - Убрать такты - - - - Add steps - Добавить такты - - - - Clone Steps - Клонировать такты - - - - BBTCOView - - - Open in Beat+Bassline-Editor - Открыть в редакторе ритм + баса - - - - Reset name - Сбросить название - - - - Change name - Переименовать - - - - Change color - Изменить цвет - - - - Reset color to default - Установить цвет по умолчанию - - - - BBTrack - - - Beat/Bassline %1 - Ритм-Бас Линия %1 - - - - Clone of %1 - Копия %1 - - - - BassBoosterControlDialog - - - FREQ - ЧАСТ - - - - Frequency: - Частота: - - - - GAIN - МОЩ - - - - Gain: - Мощность: - - - - RATIO - ОТН - - - - Ratio: - Отношение: - - - - BassBoosterControls - - - Frequency - Частота - - - - Gain - Мощность - - - - Ratio - Отношение - - - - BitcrushControlDialog - - - IN - ВХОД - - - - OUT - ВЫХОД - - - - - GAIN - МОЩ - - - - Input Gain: - Входная мощность: - - - - NOISE - Шум - - - - Input Noise: - Входной шум: - - - - Output Gain: - Выходная мощность: - - - - CLIP - СРЕЗ - - - - Output Clip: - Выходная обрезка: - - - - Rate Enabled - Частота выборки включена - - - - Enable samplerate-crushing - Включить дробление частоты дискретизации - - - - Depth Enabled - Глубина включена - - - - Enable bitdepth-crushing - Включить дробление битовой глубины - - - - FREQ - FREQ - - - - Sample rate: + + Sample Rate: Частота сэмплирования: - - STEREO - СТЕРЕО + + ? Xruns + - - Stereo difference: - Стерео разница: + + DSP Load: %p% + Загрузка DSP: %p% - - QUANT - КВАНТ + + &File + &Файл - - Levels: - Уровни: + + &Engine + Движо&к - - - CaptionMenu - + + &Plugin + &Плагин + + + + Macros (all plugins) + Макросы (все плагины) + + + + &Canvas + &Холст + + + + Zoom + Масштаб + + + + &Settings + &Настройки + + + &Help - &H Справка + &Справка - - Help (not available) - Справка (не доступна) - - - - CarlaInstrumentView - - - Show GUI - Показать интерфейс - - - - Click here to show or hide the graphical user interface (GUI) of Carla. - Нажмите сюда, чтобы показать или скрыть графический интерфейс Карла. - - - - Controller - - - Controller %1 - Контроллер %1 - - - - ControllerConnectionDialog - - - Connection Settings - Параметры соединения - - - - MIDI CONTROLLER - MIDI-КОНТРОЛЛЕР - - - - Input channel - Канал ввода - - - - CHANNEL - КАНАЛ - - - - Input controller - Контроллер ввода - - - - CONTROLLER - КОНТРОЛЛЕР - - - - - Auto Detect - Автоопределение - - - - MIDI-devices to receive MIDI-events from - Устройства MiDi для приёма событий - - - - USER CONTROLLER - ПОЛЬЗ. КОНТРОЛЛЕР - - - - MAPPING FUNCTION - ПЕРЕОПРЕДЕЛЕНИЕ - - - - OK - ОК - - - - Cancel - Отменить - - - - LMMS - LMMS - - - - Cycle Detected. - Обнаружен цикл. - - - - ControllerRackView - - - Controller Rack - Рэка контроллеров - - - - Add - Добавить - - - - Confirm Delete - Подтвердить удаление - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Подтверждаете удаление? Есть возможные соединения с этим контроллером, возврата не будет. - - - - ControllerView - - - Controls - Управление - - - - 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 2/3 Crossover: - Полоса 2/3 кроссовер: - - - - Band 3/4 Crossover: - Полоса 3/4 кроссовер: - - - - 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 - Полоса 2 выключена - - - - Mute Band 2 - Заглушить полосу 2 - - - - Band 3 Mute - Полоса 3 заглушена - - - - Mute Band 3 - Заглушить полосу 3 - - - - Band 4 Mute - Полоса 4 заглушена - - - - Mute Band 4 - Заглушить полосу 4 - - - - DelayControls - - - Delay Samples - Задержка сэмплов - - - - Feedback - Возврат - - - - Lfo Frequency - Частота LFO - - - - Lfo Amount - Объём LFO - - - - Output gain - Выходная мощность - - - - DelayControlsDialog - - - DELAY - ЗАДЕРЖ - - - - Delay Time - Время задержки - - - - FDBK + + Tool Bar - - Feedback Amount - Объём возврата: + + Disk + Диск - - RATE - ЧАСТ + + + Home + Home - - Lfo - Lfo - - - - AMNT - ГЛУБ - - - - Lfo Amt - Вел LFO - - - - Out Gain - Выходная мощность - - - - Gain - Усиление - - - - DualFilterControlDialog - - - - FREQ - FREQ - - - - - Cutoff frequency - Срез частот - - - - - RESO - RESO - - - - - Resonance - Резонанс - - - - - GAIN - МОЩ - - - - - Gain - УСИЛ - - - - MIX - МИКС - - - - Mix - Микс - - - - Filter 1 enabled - Фильтр 1 включен - - - - Filter 2 enabled - Фильтр 2 включен - - - - Click to enable/disable Filter 1 - Кликнуть для включения/выключения Фильтра 1 - - - - Click to enable/disable Filter 2 - Кликнуть для включения/выключения Фильтра 2 - - - - DualFilterControls - - - Filter 1 enabled - Фильтр 1 включен - - - - Filter 1 type - Фильтр 1 тип - - - - Cutoff 1 frequency - Срез 1 частоты - - - - Q/Resonance 1 + + Transport - - Gain 1 - Усиление 1 + + Playback Controls + Элементы управления воспроизведением - - Mix - Микс + + Time Information + Информации о времени - - Filter 2 enabled - Фильтр 2 включен + + Frame: + Кадр: - - Filter 2 type - Фильтр 2 тип + + 000'000'000 + 000'000'000 - - Cutoff 2 frequency - Срез 2 частоты - - - - Q/Resonance 2 - - - - - Gain 2 - Усиление 2 - - - - - LowPass - Низ.ЧФ - - - - - HiPass - Выс.ЧФ - - - - - BandPass csg - Сред.ЧФ csg - - - - - BandPass czpg - Сред.ЧФ czpg - - - - - Notch - Полосно-заграждающий - - - - - Allpass - Все проходят - - - - - Moog - Муг - - - - - 2x LowPass - 2х Низ.ЧФ - - - - - RC LowPass 12dB - RC Низ.ЧФ 12дБ - - - - - RC BandPass 12dB - RC Сред.ЧФ 12 дБ - - - - - RC HighPass 12dB - RC Выс.ЧФ 12дБ - - - - - RC LowPass 24dB - RC Низ.ЧФ 24дБ - - - - - RC BandPass 24dB - RC Сред.ЧФ 24дБ - - - - - RC HighPass 24dB - RC Выс.ЧФ 24дБ - - - - - Vocal Formant Filter - Фильтр Вокальной форманты - - - - - 2x Moog - 2x Муг - - - - - SV LowPass - SV Низ.ЧФ - - - - - SV BandPass - SV Сред.ЧФ - - - - - SV HighPass - SV Выс.ЧФ - - - - - SV Notch - - - - - - Fast Formant - - - - - - Tripole - Триполи - - - - Editor - - - Transport controls - Управление транспортом - - - - Play (Space) - Игра (Пробел) - - - - Stop (Space) - Стоп (Пробел) - - - - Record - Запись - - - - Record while playing - Запись при игре - - - - Effect - - - Effect enabled - Эффект включён - - - - Wet/Dry mix - Насыщенность - - - - Gate - Шлюз - - - - Decay - Затихание - - - - EffectChain - - - Effects enabled - Эффекты включёны - - - - EffectRackView - - - EFFECTS CHAIN - ЦЕПЬ ЭФФЕКТОВ - - - - Add effect - Добавить эффект - - - - EffectSelectDialog - - - Add effect - Добавить эффект - - - - - 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 - - - - + 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) эффектах. + + 00:00:00 + 00:00:00 - - GATE - ШЛЮЗ + + BBT: + - - Gate: - Шлюз: + + 000|00|0000 + 000|00|0000 - - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - GATE (Шлюз) определяет уровень сигнала, который будет считаться "тишиной" при определении остановки обрабатывания сигналов. + + Settings + Настройки - - Controls - Управление + + BPM + BPM - - 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) устанавливает "заданную длину времени" Чем меньше значение, тем меньше требования к ЦП, поэтому лучше ставить это число низким для большинства эффектов. однако это может вызвать обрезку звука при использовании эффектов с длительными периодами тишины, типа задержки. - -Регулятор шлюза служит для указания порога сигнала для авто-отключения эффекта, отсчёт для "заданной длины времени" начнётся как только обрабатываемый сигнал упадёт ниже указанного этим регулятором уровня. - -Кнопка „Управление“ открывает окно изменения параметров эффекта. - -Контекстное меню, вызываемое щелчком правой кнопкой мыши, позволяет менять порядок следования фильтров или удалять их вместе с другими. + + Use JACK Transport + Использовать транспорт JACK - - Move &up - &u Переместить выше + + Use Ableton Link + Использовать Ableton Link - - Move &down - &d Переместить ниже + + &New + &Создать - - &Remove this plugin - &R Убрать фильтр + + Ctrl+N + Ctrl+N + + + + &Open... + &Открыть... + + + + + Open... + Открыть… + + + + Ctrl+O + Ctrl+O + + + + &Save + Со&хранить + + + + Ctrl+S + Ctrl+S + + + + Save &As... + Сохранить &как... + + + + + Save As... + Сохранить как… + + + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Quit + &Выход + + + + Ctrl+Q + Ctrl+Q + + + + &Start + &Начать + + + + F5 + F5 + + + + St&op + Ст&оп + + + + F6 + F6 + + + + &Add Plugin... + &Добавить плагин… + + + + Ctrl+A + Ctrl+A + + + + &Remove All + &Удалить все + + + + Enable + Включить + + + + Disable + Отключить + + + + 0% Wet (Bypass) + + + + + 100% Wet + + + + + 0% Volume (Mute) + 0% громкости (приглушить) + + + + 100% Volume + 100% громкости + + + + Center Balance + Центрировать баланс + + + + &Play + &Играть + + + + Ctrl+Shift+P + Ctrl+Shift+P + + + + &Stop + &Стоп + + + + Ctrl+Shift+X + Ctrl+Shift+X + + + + &Backwards + &Назад + + + + Ctrl+Shift+B + Ctrl+Shift+B + + + + &Forwards + &Вперёд + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + Ра&сположить + + + + Ctrl+G + Ctrl+G + + + + + &Refresh + &Обновить + + + + Ctrl+R + Ctrl+R + + + + Save &Image... + Сохранить &изображение… + + + + Auto-Fit + Вписать + + + + Zoom In + Увеличить + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + Уменьшить + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + Исходный размер + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + Показать панель инструментов + + + + &Configure Carla + &Настроить Carla + + + + &About + &О программе + + + + About &JUCE + О &JUCE + + + + About &Qt + О &Qt + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + Показать внутренний + + + + Show External + Показать внешний + + + + Show Time Panel + Показать панель времени + + + + Show &Side Panel + Показать боковую панель + + + + Ctrl+P + + + + + &Connect... + &Подключить… + + + + Compact Slots + Компактные слоты + + + + Expand Slots + Развернуть слоты + + + + Perform secret 1 + Выполнить секрет 1 + + + + Perform secret 2 + Выполнить секрет 2 + + + + Perform secret 3 + Выполнить секрет 3 + + + + Perform secret 4 + Выполнить секрет 4 + + + + Perform secret 5 + Выполнить секрет 5 + + + + Add &JACK Application... + Добавить приложение JACK + + + + &Configure driver... + &Настроить драйвер... + + + + Panic + Паника + + + + Open custom driver panel... + Открыть панель пользовательского драйвера… + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + - EnvelopeAndLfoParameters + CarlaHostWindow - - Predelay - Задержка + + Export as... + Экспортировать как… - - Attack - Вступление + + + + + Error + Ошибка - - Hold - Удерживание + + Failed to load project + Не удалось загрузить проект - - Decay - Затихание + + Failed to save project + Не удалось сохранить проект - - Sustain - Выдержка + + Quit + Покинуть - - Release - Убывание + + Are you sure you want to quit Carla? + Закрыть Carla? - - Modulation - Модуляция + + Could not connect to Audio backend '%1', possible reasons: +%2 + - - LFO Predelay - Задержка LFO + + Could not connect to Audio backend '%1' + - - LFO Attack - Вступление LFO + + Warning + Предупреждение - - LFO speed - Скорость LFO - - - - LFO Modulation - Модуляция LFO - - - - LFO Wave Shape - Форма сигнала LFO - - - - Freq x 100 - ЧАСТ x 100 - - - - Modulate Env-Amount - Модулировать огибающую + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + Имеются загруженные плагины. Нужно удалить их, чтобы остановить движок. +Сделать это сейчас? - EnvelopeAndLfoView + CarlaSettingsW - - - DEL - DEL + + Settings + Настройки - - Predelay: - Задержка: + + main + главное - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Эта ручка определяет задержку огибающей. Чем больше эта величина, тем дольше время до старта текущей огибающей. + + canvas + холст - - - ATT - ATT + + engine + движок - - Attack: - Вступление: + + osc + - - 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. - Эта ручка устанавливает время возрастания для текущей огибающей. Чем больше значение, тем дольше характеристика (н-р, громкость) возрастает до максимума. Для инструменов вроде пианино характерны малые времена нарастания, а для струнных - большие. + + file-paths + пути-файлов - - HOLD - HOLD + + plugin-paths + пути-плагинов - - Hold: - Удержание: + + wine + wine - - 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. - Эта ручка устанавливает длительность огибающей. Чем больше значение, тем дольше огибающая держится на наивысшем уровне. + + experimental + экспериментально - - DEC - DEC + + Widget + Виджет - - Decay: - Затухание: + + + Main + Главное - - 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. - Эта ручка устанавливает время спада для текущей огибающей. Чем больше значение, тем дольше огибающая должна сокращаться от вступления до уровня выдержки. Для инструментов вроде пианино следует выбирать небольшие значения. + + + Canvas + Холсты - - SUST - SUST + + + Engine + Движок - - Sustain: - Выдержка: + + File Paths + Пути файлов - - 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. - Эта ручка устанавливает уровень выдержки. Чем больше эта величина, тем выше уровень на котором остаётся огибающая, прежде чем опуститься до нуля. + + Plugin Paths + Пути плагинов - - REL - REL + + Wine + Wine - - Release: - Убывание: + + + Experimental + Экспериментально - - 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. - Эта ручка устанавливает время убывания для текущей огибающей. Чем больше значение, тем дольше характеристика (н-р, громкость) уменьшается от уровня выдержки до нуля. Для струнных инструментов следует выбирать большие значения. + + <b>Main</b> + <b>Главное</b> - - - AMT - AMT + + Paths + Пути - - - Modulation amount: - Глубина модуляции: + + Default project folder: + Стандартная папка проекта: - - 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. - Эта ручка устанавливает глубину модуляции для текущей огибающей. Чем больше значение, тем в большей степени выбранная характеристика (н-р, громкость или частота среза) будет зависеть от этой огибающей. + + Interface + Интерфейс - - LFO predelay: - Пред. задержка LFO: + + Use "Classic" as default rack skin + - - 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 начнёт работать. + + Interface refresh interval: + Интервал обновления интерфейса: - - LFO- attack: - Вступление LFO: + + + ms + мс - - 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 нуждается в увеличении своей амплитуды до максимума. + + Show console output in Logs tab (needs engine restart) + Показывать вывод консоли на вкладке "Журналы" (требуется перезапуск движка) - - SPD - SPD + + Show a confirmation dialog before quitting + Показать окно подтверждения перед выходом - - LFO speed: - Скорость LFO: + + + Theme + Тема - - 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 Carla "PRO" theme (needs restart) + Использовать тему Carla “PRO” (требуется перезагрузка) - - 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. + + Color scheme: + Цветовая схема: - - Click here for a sine-wave. - Синусоида. + + Black + Чёрная - - Click here for a triangle-wave. - Сгенерировать треугольный сигнал. + + System + Системная - - Click here for a saw-wave for current. - Сгенерировать зигзагообразный сигнал. + + Enable experimental features + Включить экспериментальные функции - - Click here for a square-wave. - Сгенерировать квадрат. + + <b>Canvas</b> + <b>Холст</b> - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Задать свою форму сигнала. Впоследствии, перетащить соответствующий файл с записью в граф LFO. + + Bezier Lines + Кривые Безье - - Click here for random wave. - Нажмите сюда для случайной волны. + + Theme: + Тема: - - FREQ x 100 - ЧАСТОТА x 100 + + Size: + Размер: - - Click here if the frequency of this LFO should be multiplied by 100. - Нажмите, чтобы умножить частоту этого LFO на 100. + + 775x600 + 775×600 - - multiply LFO-frequency by 100 - Умножить частоту LFO на 100 + + 1550x1200 + 1550×1200 - - MODULATE ENV-AMOUNT - МОДУЛИР ОГИБАЮЩУЮ + + 3100x2400 + 3100×2400 - - Click here to make the envelope-amount controlled by this LFO. - Нажмите сюда, чтобы глубина модуляции огибающей задавалась этим LFO. + + 4650x3600 + 4650×3600 - - control envelope-amount by this LFO - Разрешить этому LFO задавать значение огибающей + + 6200x4800 + 6200×4800 - - ms/LFO: - мс/LFO: + + 12400x9600 + - - Hint - Подсказка + + Options + Опции - - Drag a sample from somewhere and drop it in this window. - Перетащите в это окно какую-нибудь запись. + + Auto-hide groups with no ports + Автоматическое скрытие групп без портов + + + + Auto-select items on hover + Автоматический выбор элементов при наведении + + + + Basic eye-candy (group shadows) + + + + + Render Hints + Подсказки по рендерингу + + + + Anti-Aliasing + Сглаживание + + + + Full canvas repaints (slower, but prevents drawing issues) + Полная перерисовка холста (медленно, но предотвращает проблемы с рисованием) + + + + <b>Engine</b> + <b>Движок</b> + + + + + Core + Ядро + + + + Single Client + Один клиент + + + + Multiple Clients + + + + + + Continuous Rack + + + + + + Patchbay + Патчбэй + + + + Audio driver: + Звуковой драйвер: + + + + Process mode: + Режим обработки: + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + Максимальное количество параметров, разрешенных во встроенном диалоге 'Редактировать' + + + + Max Parameters: + Макс. параметров: + + + + ... + + + + + Reset Xrun counter after project load + Сбрасывать счётчик Xrun после загрузки проекта + + + + Plugin UIs + Оболочки плагинов + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + Перезапустите движок, чтобы загрузить новые настройки + + + + <b>OSC</b> + + + + + Enable OSC + Включить OSC + + + + Enable TCP port + Включить порт TCP + + + + + Use specific port: + Использовать указанный порт: + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + Включить порт UDP + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + <b>Пути файлов</b> + + + + Audio + Аудио + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + Добавить… + + + + + Remove + Удалить + + + + + Change... + Изменить… + + + + <b>Plugin Paths</b> + <b>Пути плагинов</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + Перезапустите Carla, чтобы найти новые плагины + + + + <b>Wine</b> + <b>Wine</b> + + + + Executable + Исполняемый + + + + Path to 'wine' binary: + + + + + Prefix + Префикс + + + + Auto-detect Wine prefix based on plugin filename + Автоматически определять префикс Wine на основе имени файла плагина + + + + Fallback: + Запасной: + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + Приоритет в реальном времени + + + + Base priority: + Базовый приоритет: + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + <b>Экспериментально</b> + + + + Experimental options! Likely to be unstable! + Экспериментальные возможности! Скорее всего, будут нестабильными! + + + + Enable plugin bridges + Включить мосты для плагина + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + Экспорт отдельных плагинов в LV2 + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + Модное (затухания/появления групп, светящиеся подключения) + + + + Use OpenGL for rendering (needs restart) + + + + + High Quality Anti-Aliasing (OpenGL only) + Высококачественное сглаживание (только OpenGL) + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + Принудительное преобразование монофонических плагинов в стереофонические путем одновременного запуска двух экземпляров. +Этот режим недоступен для VST-плагинов. + + + + Force mono plugins as stereo + Принудительное преобразование моно плагинов в стерео + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + По возможности запускать плагины в режиме моста + + + + + + + Add Path + Добавить путь - EqControls + Dialog - - Input gain - Входная мощность + + Carla Control - Connect + - - Output gain - Выходная мощность + + Remote setup + Удалённая настройка - - Low shelf gain - Низкая ступень усиления + + UDP Port: + Порт UDP: - - Peak 1 gain - Пик 1 усиление + + Remote host: + Удалённый хост: - - Peak 2 gain - Пик 2 усиление + + TCP Port: + Порт TCP: - - Peak 3 gain - Пик 3 усиление + + Set value + Установить значение - - Peak 4 gain - Пик 4 усиление + + TextLabel + ТекстоваяМетка - - High Shelf gain - Высокая степень усиления - - - - HP res - ВЧ резон - - - - Low Shelf res - Низкая ступень резон - - - - Peak 1 BW - Пик 1 BW - - - - Peak 2 BW - Пик 2 BW - - - - Peak 3 BW - Пик 3 BW - - - - Peak 4 BW - Пик 4 BW - - - - High Shelf res - Высокая ступень резон - - - - LP res - НЧ резон - - - - HP freq - НЧ част - - - - Low Shelf freq - Низкая степень част - - - - Peak 1 freq - Пик 1 част - - - - Peak 2 freq - Пик 2 част - - - - Peak 3 freq - Пик 3 част - - - - Peak 4 freq - Пик 4 част - - - - High shelf freq - Высокая ступень част - - - - LP freq - НЧ част - - - - HP active - ВЧ активна - - - - Low shelf active - Низкая ступень активна - - - - Peak 1 active - Пик 1 активен - - - - Peak 2 active - Пик 2 активен - - - - Peak 3 active - Пик 3 активен - - - - Peak 4 active - Пик 3 активен - - - - High shelf active - Высокая степень активна - - - - LP active - НЧ активна - - - - LP 12 - НЧ 12 - - - - LP 24 - НЧ 24 - - - - LP 48 - НЧ 48 - - - - HP 12 - ВЧ 12 - - - - HP 24 - ВЧ 24 - - - - HP 48 - ВЧ 48 - - - - low pass type - Тип нижних частот - - - - high pass type - Тип верхних частот - - - - Analyse IN - Анализировать ВХОД - - - - Analyse OUT - Анализировать ВЫХОД + + Scale Points + - EqControlsDialog + DriverSettingsW - - HP - ВЧ + + Driver Settings + Параметры драйвера - - Low Shelf - Низкая ступень + + Device: + Устройство: - - Peak 1 - Пик 1 + + Buffer size: + Размер буфера: - - Peak 2 - Пик 2 + + Sample rate: + Частота сэмплирования: - - Peak 3 - Пик 3 + + Triple buffer + Тройной буфер - - Peak 4 - Пик 3 + + Show Driver Control Panel + - - High Shelf - Высокая ступень - - - - LP - НЧ - - - - In Gain - Входная мощность - - - - - - Gain - Мощность - - - - Out Gain - Выходная мощность - - - - Bandwidth: - Полоса пропускания: - - - - Octave - Октава - - - - Resonance : - Резонанс: - - - - Frequency: - Частота: - - - - lp grp - нч grp - - - - hp grp - вч grp - - - - EqHandle - - - Reso: - Резон: - - - - BW: - BW - - - - - Freq: - Част: + + Restart the engine to load the new settings + Перезапустите движок, чтобы загрузить новые настройки 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 лучший (медленно) + + + 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 - - - - 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 - - - - Please enter a new value between %1 and %2: - Введите новое значение от %1 до %2: - - - - FileBrowser - - - Browser - Обозреватель файлов - - - Search - - - - Refresh list - - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Послать на активную инструментальную-дорожку - - - - Open in new instrument-track/Song Editor - Отркрыть в новой инструментальной дорожке/редакторе песни - - - - Open in new instrument-track/B+B Editor - Открыть в новой инструментальной дорожке/Б+Б редакторе - - - - Loading sample - Загрузка записи - - - - Please wait, loading sample for preview... - Пж. ждите, запись загружается для просмотра... - - - - Error - Ошибка - - - - does not appear to be a valid - Не похоже на правильное - - - - file - файл - - - - --- Factory files --- - --- Заводские файлы --- - - - - FlangerControls - - - Delay Samples - Задержка сэмплов - - - - Lfo Frequency - Частота LFO - - - - Seconds - Секунды - - - - Regen - - - - - Noise - Шум - - - - Invert - Инвертировать - - - - FlangerControlsDialog - - - DELAY - Задержка - - - - Delay Time: - Время задержки: - - - - RATE - ЧАСТ - - - - Period: - Период: - - - - AMNT - ГЛУБ - - - - Amount: - Величина: - - - - FDBK - - - - - Feedback Amount: - Объём возврата: - - - - NOISE - Шум - - - - White Noise Amount: - Объём белого шума: - - - - Invert - Инвертировать - - - - 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. - - Канал эффектов (ЭФ) получает сигнал на вход от одной или нескольких инструментальных дорожек. -В свою очередь его можно подключить к нескольким другим каналам эффектов. ЛММС автоматически предотвращает бесконечные циклы и не позволяет создавать соединения, которые приведут к бесконечному циклу. -Чтобы соединить один канал с другим, выберите канал ЭФфектов и кликните кнопку послать (Send) на канале, куда нужно послать. Регулятор под кнопкой "послать" контролирует уровень сигнала, посылаемого на канал. -Можно убирать и двигать каналы эффектов через контекстное меню, если кликнуть правой кнопкой мыши по каналу эффектов. - - - - - Move &left - Двигать влево &L - - - - Move &right - Двигать вправо &r - - - - Rename &channel - Переименовать канал &c - - - - R&emove channel - Удалить канал &e - - - - Remove &unused channels - Удалить неиспользуемые каналы &u - - - - FxMixer - - - Master - Главный - - - - - - FX %1 - Эффект %1 - - - - Volume - Громкость - - - - Mute - Тихо - - - - Solo - Соло - - - - FxMixerView - - - FX-Mixer - Микшер Эффектов - - - - FX Fader %1 - - - - - Mute - Тихо - - - - Mute this FX channel - Заглушить этот канал ЭФ - - - - Solo - Соло - - - - Solo FX channel - Соло канал ЭФ - - - - FxRoute - - - - Amount to send from channel %1 to channel %2 - Величина отправки с канала %1 на канал %2 - - - - 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 файл - - - - GIG Files (*.gig) - GIG Файлы (*.gig) - - - - GuiApplication - - - Working directory - Рабочий каталог - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Рабочий каталог LMMS (%1) не существует. Создать его? Позже вы сможете сменить его через Правка -> Параметры. - - - - Preparing UI - Подготовка UI - - - - Preparing song editor - Подготовка редактора песни - - - - Preparing mixer - Подготовка микшера - - - - Preparing controller rack - Подготовка стойки управления - - - - Preparing project notes - Подготовка заметок проекта - - - - Preparing beat/bassline editor - Подготовка Ритм+Бас редактора - - - - Preparing piano roll - Подготовка редактора нот - - - - Preparing automation editor - Подготовка редактора автоматизации - - - - InstrumentFunctionArpeggio - - - Arpeggio - Арпеджио - - - - Arpeggio type - Тип арпеджио - - - - Arpeggio range - Диапазон арпеджио - - - - Cycle steps - - - - - Skip rate - Частота пропуска - - - - Miss rate - - - - - Arpeggio time - Период арпеджио - - - - Arpeggio gate - Шлюз арпеджио - - - - Arpeggio direction - Направление арпеджио - - - - Arpeggio mode - Режим арпеджио - - - - Up - Вверх - - - - Down - Вниз - - - - Up and down - Вверх и вниз - - - - Down and up - Вниз и вверх - - - - Random - Случайно - - - - Free - Свободно - - - - Sort - Упорядочить - - - - Sync - Синхронизировать - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - 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. - Используйте эту ручку, чтобы установить диапазон арпеджио (в октавах). Выбранный тип арпеджио будет охватывать указанное количество октав. - - - - 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: - Режим: + Отмена InstrumentFunctionNoteStacking - + octave Октава - - + + Major Мажорный - + Majb5 Majb5 - + minor минорный - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Гармонический минор - + Melodic minor Мелодический минор - + Whole tone Целый тон - + Diminished Пониженный - + Major pentatonic Мажорная пентатоника - + Minor pentatonic Минорная пентатоника - + Jap in sen - + Японский лад Ин Сен - + Major bebop - + Мажор бибоп - + Dominant bebop - + Бибоп доминанта - + Blues - Blues + Блюз - + Arabic Арабский - + Enigmatic - + Загадочный - + Neopolitan Неополитанский - + Neopolitan minor Неополитанский минор - - - Hungarian minor - - - - - Dorian - Дорийский - - - - Phrygian - Фригийский - - - - Lydian - Лидийский - - - - Mixolydian - Миксолидийский - - - - Aeolian - Эолийский - - Locrian - + Hungarian minor + Венгерский минор - 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) - Октав[а/ы] - - - - 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 - - - - NOTE - 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% - - - - BASE VELOCITY - БАЗОВАЯ СКОРОСТЬ - - - - InstrumentMiscView - - - MASTER PITCH - Мастер-высота - - - - Enables the use of Master Pitch - Включает использование основной тональности + Персидский InstrumentSoundShaping - + VOLUME - VOLUME + ГРОМКОСТЬ - + Volume Громкость - + CUTOFF CUTOFF - - + Cutoff frequency Срез частоты - + RESO - RESO + РЕЗО - + Resonance Резонанс + + + JackAppDialog - - Envelopes/LFOs - Огибание/LFO - - - - Filter type - Тип фильтра - - - - Q/Resonance + + Add JACK Application - - LowPass - Низ.ЧФ - - - - HiPass - Выс.ЧФ - - - - BandPass csg - Сред.ЧФ csg - - - - BandPass czpg - Сред.ЧФ czpg - - - - Notch - Полосно-заграждающий - - - - Allpass - Все проходят - - - - Moog - Муг - - - - 2x LowPass - 2х Низ.ЧФ - - - - RC LowPass 12dB - RC Низ.ЧФ 12дБ - - - - RC BandPass 12dB - RC Сред.ЧФ 12 дБ - - - - RC HighPass 12dB - RC Выс.ЧФ 12дБ - - - - RC LowPass 24dB - RC Низ.ЧФ 24дБ - - - - RC BandPass 24dB - RC Сред.ЧФ 24дБ - - - - RC HighPass 24dB - RC Выс.ЧФ 24дБ - - - - Vocal Formant Filter - Фильтр Вокальной форманты - - - - 2x Moog - 2x Муг - - - - SV LowPass - SV Низ.ЧФ - - - - SV BandPass - SV Сред.ЧФ - - - - SV HighPass - SV Выс.ЧФ - - - - SV Notch + + Note: Features not implemented yet are greyed out - - Fast Formant + + Application - - Tripole - Триполи + + Name: + + + + + Application: + + + + + From template + + + + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + - InstrumentSoundShapingView + JuceAboutW - - 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: - Срез частот: - - - - 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: - Усиление: - - - - 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 и фильтры не поддерживаются этим инструментом. + + This program uses JUCE version %1. + Эта программа использует JUCE версии %1. - InstrumentTrack + MidiPatternW - - With this knob you can set the volume of the opened channel. - Регулировка громкости текущего канала. + + MIDI Pattern + Шаблон MIDI - - - unnamed_track - безымянная_дорожка + + Time Signature: + Временная сигнатура: - - Base note - Опорная нота + + + + 1/4 + 1/4 - + + 2/4 + 2/4 + + + + 3/4 + 3/4 + + + + 4/4 + 4/4 + + + + 5/4 + 5/4 + + + + 6/4 + 6/4 + + + + Measures: + + + + + + + 1 + 1 + + + + 2 + 2 + + + + 3 + 3 + + + + 4 + 4 + + + + 5 + 5 + + + + 6 + 6 + + + + 7 + 7 + + + + 8 + 8 + + + + 9 + 9 + + + + 10 + 10 + + + + 11 + 11 + + + + 12 + 12 + + + + 13 + 13 + + + + 14 + 14 + + + + 15 + 15 + + + + 16 + 16 + + + + Default Length: + + + + + + 1/16 + 1/16 + + + + + 1/15 + 1/15 + + + + + 1/12 + 1/12 + + + + + 1/9 + 1/9 + + + + + 1/8 + 1/8 + + + + + 1/6 + 1/6 + + + + + 1/3 + 1/3 + + + + + 1/2 + 1/2 + + + + Quantize: + Квантовать: + + + + &File + &Файл + + + + &Edit + &Правка + + + + &Quit + В&ыход + + + + Esc + + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + Ре-диез D + + + + Select All + Выбрать всё + + + + A + Ля диез A + + + + PatchesDialog + + + + Qsynth: Channel Preset + Qsynth: преднастройка канала + + + + + 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 + Настраиваемый синтезатор звукозаписей (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. + Плагин для использования произвольных 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 + Фильтр для экспорта 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 + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + + + + + PluginEdit + + + Plugin Editor + Редактор плагинов + + + + Edit + Правка + + + + Control + Контроль + + + + MIDI Control Channel: + + + + + N + N + + + + Output dry/wet (100%) + + + + + Output volume (100%) + Выходная громкость (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 Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + +Название плагина + + + + + Program: + Программа: + + + + MIDI Program: + + + + + Save State + Сохранить состояние + + + + Load State + Загрузить состояние + + + + Information + Информация + + + + Label/URI: + Метка/адрес: + + + + Name: + Название: + + + + Type: + Тип: + + + + Maker: + Автор: + + + + Copyright: + Авторское право: + + + + Unique ID: + Уникальный ИД: + + + + PluginFactory + + + Plugin not found. + Плагин не найден. + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + Плагин LMMS «%1» не имеет дескриптора с именем «%2»! + + + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + Форма + + + + Parameter Name + Название параметра + + + + TextLabel + + + + + ... + + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + Кадр + + + + Enable + Включить + + + + On/Off + Вкл/Выкл + + + + + + + PluginName + ИмяПлагина + + + + MIDI + MIDI + + + + AUDIO IN + ВХОД ЗВУКА + + + + AUDIO OUT + ВЫХОД ЗВУКА + + + + GUI + Графический интерфейс + + + + Edit + Правка + + + + Remove + Удалить + + + + Plugin Name + Название плагина + + + + Preset: + Пресет: + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + + + + + Show GUI + Показать интерфейс + + + + Help + Справка + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + Название: + + + + Maker: + Автор: + + + + Copyright: + Авторское право: + + + + Requires Real Time: + Требует работать в реальном времени: + + + + + + Yes + да + + + + + + No + нет + + + + Real Time Capable: + Работа в реальном времени: + + + + In Place Broken: + Неисправен: + + + + Channels In: + Каналов на входе: + + + + Channels Out: + Каналов на выходе: + + + + File: %1 + Файл: %1 + + + + File: + Файл: + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + Volume Громкость - + Panning - Стерео + Баланс - + + Left gain + Усиление (Л) + + + + Right gain + Усиление (П) + + + + lmms::AudioFileProcessor + + + Amplify + Усиление + + + + Start of sample + Начало сэмпла + + + + End of sample + Конец сэмпла + + + + Loopback point + Точка петли + + + + Reverse sample + Перевернуть сэмпл + + + + Loop mode + Режим повтора + + + + Stutter + Запинание + + + + Interpolation mode + Режим интерполяции + + + + None + Нет + + + + Linear + Линейный + + + + Sinc + Приёмник + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + Клиент JACK перезапущен + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS не был подключен к JACK по какой-то причине, поэтому подключение LMMS к JACK было перезапущено. Вам придётся заново вручную создать соединения. + + + + JACK server down + Cервер JACK выключен + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + Возможно JACK-сервер был выключен и запуск нового процесса не удался, поэтому LMMS не может продолжить работу. Вам следует сохранить проект и перезапустить JACK и LMMS. + + + + Client name + Имя клиента + + + + Channels + Каналы + + + + lmms::AudioOss + + + Device + Устройство + + + + Channels + Каналы + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Интерфейс + + + + Device + Устройство + + + + lmms::AudioPulseAudio + + + Device + Устройство + + + + Channels + Каналы + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + Устройство + + + + Channels + Каналы + + + + lmms::AudioSoundIo::setupWidget + + + Backend + Интерфейс + + + + Device + Устройство + + + + lmms::AutomatableModel + + + &Reset (%1%2) + &Сбросить (%1%2) + + + + &Copy value (%1%2) + &Копировать значение (%1%2) + + + + &Paste value (%1%2) + &Вставить значение (%1%2) + + + + &Paste value + &Вставить значение + + + + Edit song-global automation + Изменить глобальную автоматизацию + + + + Remove song-global automation + Убрать глобальную автоматизацию + + + + Remove all linked controls + Убрать всё присоединенное управление + + + + Connected to %1 + Подключено к %1 + + + + Connected to controller + Соединено с контроллером + + + + Edit connection... + Изменить соединение… + + + + Remove connection + Удалить соединение + + + + Connect to controller... + Соединить с контроллером... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + Перетащите элемент управления, удерживая <%1> + + + + lmms::AutomationTrack + + + Automation track + Дорожка автоматизации + + + + lmms::BassBoosterControls + + + Frequency + Частота + + + + Gain + Усиление + + + + Ratio + Соотношение + + + + lmms::BitInvader + + + Sample length + Длина сэмпла + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + Входное усиление + + + + Input noise + Входной шум + + + + Output gain + Выходное усиление + + + + Output clip + Выходная обрезка + + + + Sample rate + Частота сэмплирования + + + + Stereo difference + Разница стерео + + + + Levels + Уровни + + + + Rate enabled + Частота выборки включена + + + + Depth enabled + Глубина включена + + + + lmms::Clip + + + Mute + Заглушить + + + + lmms::CompressorControls + + + Threshold + Пороговый уровень + + + + Ratio + Соотношение + + + + Attack + Атака + + + + Release + Затухание + + + + Knee + + + + + Hold + Удержание + + + + Range + Диапазон + + + + RMS Size + + + + + Mid/Side + Середина/стороны + + + + Peak Mode + Держать пик + + + + Lookahead Length + + + + + Input Balance + Входной баланс: + + + + Output Balance + Выходной баланс + + + + Limiter + Лимитер + + + + Output Gain + Выходная мощность + + + + Input Gain + Входная мощность + + + + Blend + Смешать + + + + Stereo Balance + Баланс стерео + + + + Auto Makeup Gain + + + + + Audition + Прослушивание + + + + Feedback + Обратная связь + + + + Auto Attack + Автоатака + + + + Auto Release + Убывание + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + Фильтр Частот + + + + Stereo Link + + + + + Mix + Микс + + + + lmms::Controller + + + Controller %1 + Контроллер %1 + + + + lmms::DelayControls + + + Delay samples + Задержка сэмплов + + + + Feedback + Обратная связь + + + + LFO frequency + Частота LFO + + + + LFO amount + Объём LFO + + + + Output gain + Выходное усиление + + + + lmms::DispersionControls + + + Amount + Величина + + + + Frequency + Частота + + + + Resonance + Резонанс + + + + Feedback + Обратная связь + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + Фильтр 1 включен + + + + Filter 1 type + Фильтр 1 тип + + + + Cutoff frequency 1 + Частота среза 1 + + + + Q/Resonance 1 + Q/Резонанс 1 + + + + Gain 1 + Усиление 1 + + + + Mix + Микс + + + + Filter 2 enabled + Фильтр 2 включен + + + + Filter 2 type + Фильтр 2 тип + + + + Cutoff frequency 2 + Частота среза 2 + + + + Q/Resonance 2 + Q/Резонанс 2 + + + + Gain 2 + Усиление 2 + + + + + Low-pass + Пропуск низких + + + + + Hi-pass + Пропуск высоких + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + Вырез + + + + + All-pass + Пропускать все + + + + + Moog + Муг + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + RC полосовой 12 дБ/окт + + + + + RC High-pass 12 dB/oct + RC ФВЧ 12 дБ/окт + + + + + RC Low-pass 24 dB/oct + RC ФНЧ 24 дБ/окт + + + + + RC Band-pass 24 dB/oct + RC полосовой 24 дБ/окт + + + + + RC High-pass 24 dB/oct + RC ФВЧ 24 дБ/окт + + + + + Vocal Formant + Формантный + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + Трёхполюсный + + + + lmms::DynProcControls + + + Input gain + Входное усиление + + + + Output gain + Выходное усиление + + + + Attack time + Время атаки + + + + Release time + Время затухания + + + + Stereo mode + Режим стерео + + + + lmms::Effect + + + Effect enabled + Эффект включён + + + + Wet/Dry mix + + + + + Gate + Порог + + + + Decay + Спад + + + + lmms::EffectChain + + + Effects enabled + Эффекты включены + + + + lmms::Engine + + + Generating wavetables + Генерация волновых таблиц + + + + Initializing data structures + Инициализация структуры данных + + + + Opening audio and midi devices + Открываем аудио и MIDI-устройства + + + + Launching audio engine threads + Запускаем потоки микшера + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Огиб предзадержка + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + LFO предзадержка + + + + LFO attack + Атака LFO + + + + LFO frequency + Частота LFO + + + + LFO mod amount + Глубина мод LFO + + + + LFO wave shape + Форма LFO волны + + + + LFO frequency x 100 + Частота x 100 LFO + + + + Modulate env amount + Модулировать уровень огибающей + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + Входное усиление + + + + Output gain + Выходное усиление + + + + Low-shelf gain + Усиление уровня низких + + + + Peak 1 gain + Пик 1 усиление + + + + Peak 2 gain + Пик 2 усиление + + + + Peak 3 gain + Пик 3 усиление + + + + Peak 4 gain + Пик 4 усиление + + + + High-shelf gain + Усиление уровня высоких + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + НЧ активна + + + + LP 12 + НЧ 12 + + + + LP 24 + НЧ 24 + + + + LP 48 + НЧ 48 + + + + HP 12 + ВЧ 12 + + + + HP 24 + ВЧ 24 + + + + HP 48 + ВЧ 48 + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + Фаза стерео + + + + Feedback + + + + + Noise + Шум + + + + Invert + Инвертировать + + + + lmms::FreeBoyInstrument + + + Sweep time + Время колебаний + + + + Sweep direction + Направление колебаний + + + + Sweep rate shift amount + Величина сдвига частоты колебаний + + + + + Wave pattern duty cycle + Рабочий цикл волны + + + + Channel 1 volume + Громкость 1 канала + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + Громкость 2 канала + + + + Channel 3 volume + Громкость 3 канала + + + + Channel 4 volume + Громкость 4 канала + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + Верхние + + + + Bass + Басы + + + + lmms::GigInstrument + + + Bank + Банк + + + + Patch + Патч + + + + Gain + Усиление + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + Арпеджио + + + + Arpeggio type + Тип арпеджио + + + + Arpeggio range + Диапазон арпеджио + + + + Note repeats + + + + + Cycle steps + Шагов в цикле + + + + Skip rate + Частота пропуска + + + + Miss rate + Частость обхода + + + + Arpeggio time + Период арпеджио + + + + Arpeggio gate + Шлюз арпеджио + + + + Arpeggio direction + Направление арпеджио + + + + Arpeggio mode + Режим арпеджио + + + + Up + Вверх + + + + Down + Вниз + + + + Up and down + Вверх и вниз + + + + Down and up + Вниз и вверх + + + + Random + Случайно + + + + Free + Свободно + + + + Sort + Упорядочить + + + + Sync + Синхро + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + Аккорды + + + + Chord type + Тип аккорда + + + + Chord range + Диапазон аккорда + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + Огибание/LFO + + + + Filter type + Тип фильтра + + + + Cutoff frequency + Частота среза + + + + Q/Resonance + Q/Резонанс + + + + Low-pass + Пропуск низких + + + + Hi-pass + Пропуск высоких + + + + Band-pass csg + Полосовой csg + + + + Band-pass czpg + Полосовой czpg + + + + Notch + Вырез + + + + All-pass + Пропускать все + + + + Moog + Муг + + + + 2x Low-pass + 2x ФНЧ + + + + RC Low-pass 12 dB/oct + RC ФНЧ 12дБ/окт + + + + RC Band-pass 12 dB/oct + RC полосовой 12 дБ/окт + + + + RC High-pass 12 dB/oct + RC ФВЧ 12 дБ/окт + + + + RC Low-pass 24 dB/oct + RC ФНЧ 24 дБ/окт + + + + RC Band-pass 24 dB/oct + RC полосовой 24 дБ/окт + + + + RC High-pass 24 dB/oct + RC ФВЧ 24 дБ/окт + + + + Vocal Formant + Формантный + + + + 2x Moog + 2x Муг + + + + SV Low-pass + SV нижних частот + + + + SV Band-pass + SV полосовой + + + + SV High-pass + SV верхних частот + + + + SV Notch + SV Notch (вырез) + + + + Fast Formant + Быстрый формантный + + + + Tripole + Трёхполюсный + + + + lmms::InstrumentTrack + + + + 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 + - Master Pitch - Основная тональность - - - - + Default preset Основная предустановка - InstrumentTrackView + lmms::Keymap - - Volume - Громкость - - - - Volume: - Громкость: - - - - VOL - ГРОМ - - - - Panning - Баланс - - - - Panning: - Баланс: - - - - PAN - БАЛ - - - - MIDI - MIDI - - - - Input - Вход - - - - Output - Выход - - - - FX %1: %2 - ЭФ %1: %2 + + empty + пусто - InstrumentTrackWindow + lmms::KickerInstrument - - GENERAL SETTINGS - ОСНОВНЫЕ НАСТРОЙКИ + + Start frequency + Начальная частота - - Use these controls to view and edit the next/previous track in the song editor. - Используйте эти регуляторы, чтобы видеть и редактировать дорожку в редакторе песни. + + End frequency + Конечная частота - - Instrument volume - Громкость инструмента + + Length + Длина - - Volume: - Громкость: + + Start distortion + Начало перегруза - - VOL - ГРОМ + + End distortion + Конец перегруза - - Panning - Баланс + + Gain + Усиление - - Panning: - Стереобаланс: + + Envelope slope + Уклон огибающей - - PAN - БАЛ + + Noise + Шум - - Pitch - Тональность + + Click + Щелчок - - Pitch: - Тональность: + + Frequency slope + Уклон частоты - - cents - процентов + + Start from note + Начать с ноты - - PITCH - ТОН + + End to note + Закончить нотой + + + lmms::LOMMControls - - Pitch range (semitones) - Диапазон тональности (полутона) - - - - RANGE - ДИАП - - - - 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. - Нажать здесь, чтобы сохранить настройки текущей инстр. дорожки в файл предустановок. Позже можно загрузить эту предустановку двойным кликом в браузере предустановок. - - - - SAVE - Сохранить - - - - Envelope, filter & LFO + + Depth - - Chord stacking & arpeggio + + Time - - Effects - Эффекты + + Input Volume + - - MIDI settings - Параметры MIDI + + Output Volume + - - Miscellaneous - Разное + + Upward Depth + - - Save preset - Сохранить предустановку + + Downward Depth + - - XML preset file (*.xpf) - XML файл настроек (*.xpf) + + High/Mid Split + - - Plugin - Модуль + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + - Knob + lmms::LadspaControl - - Set linear - Установить линейно - - - - Set logarithmic - Установить логарифмически - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Введите новое значение от –96,0 дБВ до 6,0 дБВ: - - - - Please enter a new value between %1 and %2: - Введите новое значение от %1 до %2: - - - - LadspaControl - - + Link channels Связать каналы - LadspaControlDialog + lmms::LadspaEffect - - Link Channels - Связать каналы - - - - Channel - Канал - - - - LadspaControlView - - - Link channels - Связать каналы - - - - Value: - Значение: - - - - Sorry, no help available. - Извините, справки нет. - - - - LadspaEffect - - + Unknown LADSPA plugin %1 requested. - Запрошен неизвестный модуль LADSPA «%1». + Запрошен неизвестный плагин LADSPA %1. - LcdSpinBox + lmms::Lb302Synth - - Please enter a new value between %1 and %2: - Введите новое значение от %1 до %2: + + 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дБ/окт фильтр - LeftRightNav + lmms::LfoController - - - - Previous - Предыдущий - - - - - - Next - Следующий - - - - Previous (%1) - Предыдущий (%1) - - - - Next (%1) - Следующий (%1) - - - - LfoController - - + LFO Controller Контроллер LFO - + Base value - Основное значение + Опорное значение - + Oscillator speed Скорость волны - + Oscillator amount Размер волны - + Oscillator phase Фаза волны - + Oscillator waveform Форма волны - + Frequency Multiplier Множитель частоты - - - LfoControllerDialog - - LFO - LFO - - - - LFO Controller - Контроллер LFO - - - - 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. - Эта ручка устанавлявает скорость 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 - градусы - - - - 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º, волна сначала пойдёт вниз, а не вверх, так же как и для квадратной волны. - - - - 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 a moog saw-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. - Нажмите здесь для определения своей формы. -Двойное нажатие для выбора файла. + + Sample not found + - LmmsCore + lmms::MalletsInstrument - - Generating wavetables - Генерация волн + + Hardness + Жёсткость - - Initializing data structures - Инициализация структуры данных + + Position + Позиция - - Opening audio and midi devices - Открываем аудио и миди устройства + + Vibrato gain + Усиление вибрато - - Launching mixer threads - Запускаем потоки микшера + + Vibrato frequency + Частота вибрато - - - 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 Недавние проекты - - - - &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 - О программе - - - - 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. - Сим запускается или скрывается музыкальный редактор. С его помощью вы можете редактировать композицию и задавать время воспроизведения каждой дорожки. -Также вы можете вставлять и передвигать записи прямо в списке воспроизведения. - - - - 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. - Сим запускается ритм-бас редактор. Он необходим для установки ритма, открытия, добавления и удаления каналов, а также вырезания, копирования и вставки ритм-бас шаблонов, мелодий и т. п. - - - - 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 - Показать/скрыть управление контроллерами - - - - 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 + + Stick mix - - Overwrite default template? - Перезаписать обычный шаблон? + + Modulator + Модулятор - - This will overwrite your current default template. - Это перезапишет текущий обычный шаблон. + + Crossfade + Переход - - Help not available - Справка недоступна + + LFO speed + Скорость LFO - - 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 . + + LFO depth + Глубина LFO - - Song Editor - Показать/скрыть музыкальный редактор + + ADSR + ADSR - - Beat+Bassline Editor - Показать/скрыть ритм-бас редактор + + Pressure + Давление - - Piano Roll - Показать/скрыть нотный редактор + + Motion + Движение - - Automation Editor - Показать/скрыть редактор автоматизации + + Speed + Скорость - - FX Mixer - Показать/скрыть микшер ЭФ + + Bowed + Наклон - - Project Notes - Показать/скрыть заметки к проекту - - - - Controller Rack - Показать/скрыть управление контроллерами - - - - Volume as dBFS + + Instrument - - Smooth scroll - Плавная прокрутка + + Spread + Разброс - - Enable note labels in piano roll - Включить обозначение нот в музыкальном редакторе + + Randomness + + + + + Marimba + Маримба + + + + Vibraphone + Вибрафон + + + + Agogo + Агого + + + + Wood 1 + Дерево 1 + + + + Reso + Резо + + + + Wood 2 + Дерево 2 + + + + Beats + Удары + + + + Two fixed + Два постоянно + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + Стекло + + + + Tibetan bowl + Тибетская чаша - MeterDialog + lmms::MeterModel - - - Meter Numerator - Шкала чисел - - - - - Meter Denominator - Шкала делений - - - - TIME SIG - ПЕРИОД - - - - MeterModel - - + Numerator - Числитель + Число долей - + Denominator - Знаменатель + Длительность доли - MidiController + lmms::Microtuner + + + Microtuner + Микротюнер + + + + Microtuner on / off + Микротюнер вкл/выкл + + + + Selected scale + Выбранный масштаб + + + + Selected keyboard mapping + Выбранная раскладка клавиатуры + + + + lmms::MidiController MIDI Controller @@ -5197,1185 +6870,7968 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. unnamed_midi_controller - нераспознанный миди контроллер + MIDI-контроллер без имени - MidiImport + 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. + Вы не установили основной 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 + Длительность доли + + + + + Tempo + Темп + + + Track Дорожка - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK-сервер не доступен - + lmms::MidiJack + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + Cервер 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-сервер, похоже, не запущен. - MidiPort + lmms::MidiPort - + Input channel - Вход + Канал входа - + Output channel - Выход + Канал выхода - + Input controller Контроллер входа - + Output controller Контроллер выхода - + Fixed input velocity Постоянная скорость ввода - + Fixed output velocity Постоянная скорость вывода - + Fixed output note Постоянный вывод нот - + Output MIDI program - Программа для вывода MiDi + Программа для вывода MIDI - + Base velocity Базовая скорость - + Receive MIDI-events Принимать события MIDI - + Send MIDI-events Отправлять события MIDI - MidiSetupWidget + lmms::Mixer - - DEVICE - УСТРОЙСТВО + + Master + Главный + + + + + + Channel %1 + Канал %1 + + + + Volume + Громкость + + + + Mute + Заглушить + + + + Solo + Соло - MonstroInstrument + lmms::MixerRoute - - Osc 1 Volume - Осциллятор 1 громкость + + + Amount to send from channel %1 to channel %2 + Величина отправки с канала %1 на канал %2 + + + lmms::MonstroInstrument - - Osc 1 Panning - Осциллятор 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 - Осциллятор 2 громкость - - - - Osc 2 Panning - Осциллятор 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 - Осциллятор 3 громкость - - - - Osc 3 Panning - Осциллятор 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 + + 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 - Кривая 2 Наклон - - - - Osc2-3 modulation + + Env 2 slope - + + Osc 2+3 modulation + + + + Selected view - Выбранный вид - - - - Vol1-Env1 - - Vol1-Env2 + + Osc 1 - Vol env 1 - - Vol1-LFO1 + + Osc 1 - Vol env 2 - - Vol1-LFO2 + + Osc 1 - Vol LFO 1 - - Vol2-Env1 + + Osc 1 - Vol LFO 2 - - Vol2-Env2 + + Osc 2 - Vol env 1 - - Vol2-LFO1 + + Osc 2 - Vol env 2 - - Vol2-LFO2 + + Osc 2 - Vol LFO 1 - - Vol3-Env1 + + Osc 2 - Vol LFO 2 - - Vol3-Env2 + + Osc 3 - Vol env 1 - - Vol3-LFO1 + + Osc 3 - Vol env 2 - - Vol3-LFO2 + + Osc 3 - Vol LFO 1 - - Phs1-Env1 + + Osc 3 - Vol LFO 2 - - Phs1-Env2 + + Osc 1 - Phs env 1 - - Phs1-LFO1 + + Osc 1 - Phs env 2 - - Phs1-LFO2 + + Osc 1 - Phs LFO 1 - - Phs2-Env1 + + Osc 1 - Phs LFO 2 - - Phs2-Env2 + + Osc 2 - Phs env 1 - - Phs2-LFO1 + + Osc 2 - Phs env 2 - - Phs2-LFO2 + + Osc 2 - Phs LFO 1 - - Phs3-Env1 + + Osc 2 - Phs LFO 2 - - Phs3-Env2 + + Osc 3 - Phs env 1 - - Phs3-LFO1 + + Osc 3 - Phs env 2 - - Phs3-LFO2 + + Osc 3 - Phs LFO 1 - - Pit1-Env1 + + Osc 3 - Phs LFO 2 - - Pit1-Env2 + + Osc 1 - Pit env 1 - - Pit1-LFO1 + + Osc 1 - Pit env 2 - - Pit1-LFO2 + + Osc 1 - Pit LFO 1 - - Pit2-Env1 + + Osc 1 - Pit LFO 2 - - Pit2-Env2 + + Osc 2 - Pit env 1 - - Pit2-LFO1 + + Osc 2 - Pit env 2 - - Pit2-LFO2 + + Osc 2 - Pit LFO 1 - - Pit3-Env1 + + Osc 2 - Pit LFO 2 - - Pit3-Env2 + + Osc 3 - Pit env 1 - - Pit3-LFO1 + + Osc 3 - Pit env 2 - - Pit3-LFO2 + + Osc 3 - Pit LFO 1 - - PW1-Env1 + + Osc 3 - Pit LFO 2 - - PW1-Env2 + + Osc 1 - PW env 1 - - PW1-LFO1 + + Osc 1 - PW env 2 - - PW1-LFO2 + + Osc 1 - PW LFO 1 - - Sub3-Env1 + + Osc 1 - PW LFO 2 - - Sub3-Env2 + + Osc 3 - Sub env 1 - - Sub3-LFO1 + + Osc 3 - Sub env 2 - - Sub3-LFO2 + + 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 + lmms::NesInstrument - - Operators view - Операторский вид + + Channel 1 enable + - - 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. - Операторский вид содержит все операторы. Они включают и звучащие операторы (осцилляторы) и беззвучные операторы или модуляторы: Низко-частотные осцилляторы и огибающие. - -Регуляторы и другие виджеты в Операторском виде имеют свои подписи "Что это?", можно получить по ним более детальную справку таким образом. + + Channel 1 coarse detune + Грубая подстройка канала 1 - - Matrix view - Матричный вид + + Channel 1 volume + Громкость 1 канала - - 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 делает то же, но с обратной модуляцией. + + Channel 1 envelope enable + - - - + + Channel 1 envelope loop + + + + + Channel 1 envelope length + Длительность огибающей канала 1 + + + + Channel 1 duty cycle + Рабочий цикл канала 1 + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + Уровень колебаний канала 1 + + + + Channel 1 sweep rate + Частота колебаний канала 1 + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + Длительность огибающей канала 2 + + + + Channel 2 duty cycle + Рабочий цикл канала 2 + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + Уровень колебаний канала 2 + + + + Channel 2 sweep rate + Частота колебаний канала 2 + + + + Channel 3 enable + + + + + Channel 3 coarse detune + Грубая подстройка канала 3 + + + + Channel 3 volume + Громкость 3 канала + + + + Channel 4 enable + + + + + Channel 4 volume + Громкость 4 канала + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + Длительность огибающей канала 4 + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + Частота шума канала 4 + + + + Channel 4 noise frequency sweep + Частота помех колебаний канала 4 + + + + Channel 4 quantize + + + + + Master volume + Главная громкость + + + + Vibrato + Вибрато + + + + lmms::OpulenzInstrument + + + Patch + Патч + + + + Op 1 attack + Оп 1 атака + + + + Op 1 decay + Оп 1 спад + + + + Op 1 sustain + Оп 1 выдержка + + + + Op 1 release + Оп 1 затухание + + + + Op 1 level + Оп 1 уровень + + + + Op 1 level scaling + Оп 1 увеличение уровня + + + + Op 1 frequency multiplier + Оп 1 множитель частоты + + + + Op 1 feedback + Оп 1 возврат + + + + Op 1 key scaling rate + Оп 1 скорость увеличения нот + + + + Op 1 percussive envelope + Оп 1 огибающая ударников + + + + Op 1 tremolo + Оп 1 тремоло + + + + Op 1 vibrato + Оп 1 вибрато + + + + Op 1 waveform + Оп 1 форма волны + + + + Op 2 attack + Оп 2 атака + + + + Op 2 decay + Оп 2 спад + + + + Op 2 sustain + Оп 2 выдержка + + + + Op 2 release + Оп 2 затухание + + + + Op 2 level + Оп 2 уровень + + + + Op 2 level scaling + Оп 2 увеличение уровня + + + + Op 2 frequency multiplier + Оп 2 множитель частоты + + + + Op 2 key scaling rate + Оп 2 скорость увеличения нот + + + + Op 2 percussive envelope + Оп 2 огибающая ударников + + + + Op 2 tremolo + Оп 2 Тремоло + + + + Op 2 vibrato + Оп 2 Вибрато + + + + Op 2 waveform + Оп 2 Волна + + + + FM + FM + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + Перегруз + + + + Volume + Громкость + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + Атака + + + + Release + Затухание + + + + Treshold + Порог + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + Размер + + + + Color + Цвет + + + + Output gain + + + + + lmms::SaControls + + + Pause + Пауза + + + + Reference freeze + + + + + Waterfall + Спад + + + + Averaging + Усреднение + + + + Stereo + Стерео + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + Слышимые + + + + Bass + Басы + + + + Mids + Средние + + + + High + Высокие + + + + Extended + Расширенно + + + + Loud + Громкие + + + + Silent + Тихие + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + Хэмминг (Сглажив) + + + + Hanning + Хэннинга (Сглажив) + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + Volume Громкость - - - + Panning Баланс - - - - Coarse detune - Грубая расстройка - - - - - - semitones - полутона - - - - - Finetune left + + Mixer channel - - - - + + + Sample track + + + + + lmms::Scale + + + empty + пусто + + + + lmms::Sf2Instrument + + + Bank + Банк + + + + Patch + Патч + + + + Gain + Усиление + + + + Reverb + Реверберация + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + Хорус + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + Волна + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + Резонанс + + + + Filter type + + + + + Voice 3 off + + + + + Volume + Громкость + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + Темп + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + Ширина + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + Заглушить + + + + Solo + Соло + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + Отмена + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + Портаменто + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + Полоса пропускания + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + Граф + + + + lmms::gui::AmplifierControlDialog + + + VOL + ГРОМК + + + + Volume: + Громкость: + + + + PAN + БАЛ + + + + Panning: + Баланс: + + + + LEFT + СЛЕВА + + + + Left gain: + + + + + RIGHT + СПРАВА + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + Усиление: + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + Очистить + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + Жёсткость: + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + Квантование + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + ЧАСТ + + + + Frequency: + Частота: + + + + GAIN + УСИЛ + + + + Gain: + Усиление: + + + + RATIO + ОТНОШ + + + + Ratio: + Отношение: + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + Интерполяция + + + + Normalize + Нормализовать + + + + lmms::gui::BitcrushControlDialog + + + IN + ВХ + + + + OUT + ВЫХ + + + + + GAIN + УСИЛ + + + + Input gain: + + + + + NOISE + ШУМ + + + + Input noise: + + + + + Output gain: + + + + + CLIP + СРЕЗ + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + ЧАСТ + + + + Sample rate: + + + + + STEREO + СТЕРЕО + + + + Stereo difference: + + + + + QUANT + КВАНТ + + + + Levels: + Уровни: + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + Поиск.. + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + Подсказка + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + Вырезать + + + + Cut selection + + + + + Merge Selection + + + + + Copy + Копировать + + + + Copy selection + + + + + Paste + Вставить + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + Изменить + + + + Reset + Сброс + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + Пороговый уровень: + + + + Volume at which the compression begins to take place + + + + + Ratio: + Отношение: + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + Атака: + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + Затухание: + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + Диапазон: + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + Удержание: + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + Микс: + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + Усиление + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + Пик + + + + Use absolute value of the input + + + + + Left/Right + Левый/правый + + + + Compress left and right audio + + + + + Mid/Side + Середина/стороны + + + + Compress mid and side audio + + + + + Compressor + Компрессор + + + + Compress the audio + + + + + Limiter + Лимитер + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + Максимум + + + + Compress based on the loudest channel + + + + + Average + Среднее + + + + Compress based on the averaged channel volume + + + + + Minimum + Минимум + + + + Compress based on the quietest channel + + + + + Blend + Смешать + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + КАНАЛ + + + + Input controller + + + + + CONTROLLER + КОНТРОЛЛЕР + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + ОК + + + + Cancel + Отмена + + + + LMMS + LMMS + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + Добавить + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + Контроль + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + ГНЧ + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + ЗАДЕРЖ + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + ЧАСТ + + + + LFO frequency + + + + + AMNT + ГЛУБ + + + + LFO amount + + + + + Out gain + + + + + Gain + Усиление + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + ЧАСТ + + + + + Cutoff frequency + + + + + + RESO + РЕЗО + + + + + Resonance + Резонанс + + + + + GAIN + УСИЛ + + + + + Gain + Усиление + + + + MIX + МИКС + + + + Mix + Микс + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + ВХОД + + + + Input gain: + + + + + OUTPUT + ВЫХОД + + + + Output gain: + + + + + ATTACK + АТАКА + + + + Peak attack time: + + + + + RELEASE + ЗАТУХАНИЕ + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + Запись + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + Имя + + + + Type + Тип + + + + All + + + + + Search + + + + + Description + Описание + + + + Author + Автор + + + + lmms::gui::EffectView + + + On/Off + Вкл/Выкл + + + + W/D + + + + + Wet Level: + + + + + DECAY + СПАД + + + + Time: + Время: + + + + GATE + ПОРОГ + + + + Gate: + Порог: + + + + Controls + Контроль + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + КОЛ + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + Предзадержка: + + + + + ATT + АТАК + + + + + Attack: + Атака: + + + + HOLD + УДЕРЖ + + + + Hold: + Удержание: + + + + DEC + СПАД + + + + Decay: + Спад: + + + + SUST + ВЫДЕРЖ + + + + Sustain: + Выдержка: + + + + REL + ЗАТУХ + + + + Release: + Затухание: + + + + SPD + СКРСТ + + + + Frequency: + Частота: + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + Подсказка + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + ВЧ + + + + Low-shelf + Уровень низких + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + Уровень высоких + + + + LP + НЧ + + + + Input gain + + + + + + + Gain + Усиление + + + + Output gain + + + + + Bandwidth: + Полоса пропускания: + + + + Octave + Октава + + + + Resonance: + + + + + Frequency: + Частота: + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + Резон: + + + + BW: + ДИАП: + + + + + Freq: + Част: + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + Ошибка + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + Проводник + + + + Search + Поиск + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + Ошибка + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + ЗАДЕРЖ + + + + Delay time: + + + + + RATE + ЧАСТ + + + + Period: + Период: + + + + AMNT + ВЕЛИЧ + + + + Amount: + Величина: + + + + PHASE + ФАЗА + + + + Phase: + Фаза: + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + ШУМ + + + + White noise amount: + + + + + Invert + Инвертировать + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + Верхние: + + + + Treble + Верхние + + + + Bass: + Нижние: + + + + Bass + Нижние + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + Усиление: + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + ARPEGGIO + + + + RANGE + ДИАП + + + + Arpeggio range: + + + + + octave(s) + октав(а/ы) + + + + REP + + + + + Note repeats: + + + + + time(s) + время + + + + CYCLE + ЦИКЛ + + + + Cycle notes: + + + + + note(s) + нота(ы) + + + + SKIP + ПРОПУСК + + + + Skip rate: + + + + + + + % + % + + + + MISS + + + + + Miss rate: + + + + + TIME + ВРЕМЯ + + + + Arpeggio time: + + + + + ms + мс + + + + GATE + ПОРОГ + + + + Arpeggio gate: + + + + + Chord: + Аккорд: + + + + Direction: + Направление: + + + + Mode: + Режим: + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + СКЛАДЫВ. + + + + Chord: + Аккорд: + + + + RANGE + ДИАП + + + + Chord range: + + + + + octave(s) + октав(а/ы) + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + УСКОР. + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + НОТА + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + РАЗМЕТКА + + + + FILTER + ФИЛЬТР + + + + FREQ + ЧАСТ + + + + Cutoff frequency: + + + + + Hz + Гц + + + + Q/RESO + УР/РЕЗО + + + + Q/Resonance: + УР/Резонанса: + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + Громкость + + + + Volume: + Громкость: + + + + VOL + ГРОМК + + + + Panning + Баланс + + + + Panning: + Баланс: + + + + PAN + БАЛ + + + + MIDI + MIDI + + + + Input + Вход + + + + Output + Выход + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + Громкость + + + + Volume: + Громкость: + + + + VOL + ГРОМК + + + + Panning + Баланс + + + + Panning: + Баланс: + + + + PAN + БАЛ + + + + Pitch + Тональность + + + + Pitch: + Тональность: + + + + cents + цент[а,ов] + + + + PITCH + ТОН + + + + Pitch range (semitones) + + + + + RANGE + ДИАП + + + + Mixer channel + + + + + CHANNEL + КАНАЛ + + + + Save current instrument track settings in a preset file + + + + + SAVE + СОХРАНИТЬ + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + Эффекты + + + + MIDI + MIDI + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + Плагин + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + Усиление: + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + Щелчок: + + + + Noise: + Шум: + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + Инструменты + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + Тип: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + Канал + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + Значение: + + + + lmms::gui::LadspaDescription + + + Plugins + Плагины + + + + Description + Описание + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + Порты + + + + Name + Имя + + + + Rate + Частота + + + + Direction + Направление + + + + Type + Тип + + + + Min < Default < Max + + + + + Logarithmic + Логарифмический + + + + SR Dependent + + + + + Audio + Аудио + + + + Control + Контроль + + + + Input + Вход + + + + Output + Выход + + + + Toggled + Включено + + + + Integer + Целое + + + + Float + Дробное + + + + + Yes + Да + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + Резонанс: + + + + Env Mod: + + + + + Decay: + Спад: + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + Предыдущий + + + + + + Next + Следующий + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + ГНЧ + + + + BASE + БАЗА + + + + Base: + Основа: + + + + FREQ + ЧАСТ + + + + LFO frequency: + + + + + AMNT + ВЕЛИЧ + + + + Modulation amount: + + + + + PHS + ФАЗА + + + + Phase offset: + + + + + degrees + градусы + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + Восстановить + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + Отклонить + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + Громкости + + + + My Computer + + + + + Loading background picture + + + + + &File + &Файл + + + + &New + &Создать + + + + &Open... + &Открыть... + + + + &Save + &Сохранить + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + Импорт... + + + + E&xport... + &Экспорт... + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + &Выход + + + + &Edit + &Правка + + + + Undo + Отменить действие + + + + Redo + Вернуть действие + + + + Scales and keymaps + + + + + Settings + Настройки + + + + &View + &Вид + + + + &Tools + &Инструменты + + + + &Help + &Справка + + + + Online Help + + + + + Help + Справка + + + + About + О программе + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + Метроном + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + Громкость как dBFS + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + Позиция + + + + Position: + Позиция: + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + Модулятор + + + + Modulator: + Модулятор: + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + Устройство + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + cents - - - 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 - Смешать Осц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 - Глубина модуляции + - MultitapEchoControlDialog + lmms::gui::MultitapEchoControlDialog Length - Длина + Step length: - Длина шага: + Dry - Высушить + - Dry Gain: + Dry gain: @@ -6385,6647 +14841,3930 @@ PM (ФМ) режим значит фазовая модуляция: Осцил - Lowpass stages: + Low-pass stages: Swap inputs - Переставить входы местами + - Swap left and right input channel for reflections - Поменять вход левого и правого канала для отзвуков + Swap left and right input channels for reflections + - NesInstrument + lmms::gui::NesInstrumentView - - Channel 1 Coarse detune - Канал 1 - грубая расстройка - - - - Channel 1 Volume - Громкость 1 канала - - - - Channel 1 Envelope length - Канал 1 - Длина огибающей - - - - Channel 1 Duty cycle - - - - - Channel 1 Sweep amount - - - - - Channel 1 Sweep rate - - - - - Channel 2 Coarse detune - - - - - Channel 2 Volume - Громкость 2 канала - - - - Channel 2 Envelope length - - - - - Channel 2 Duty cycle - - - - - Channel 2 Sweep amount - - - - - Channel 2 Sweep rate - - - - - Channel 3 Coarse detune - - - - - Channel 3 Volume - Громкость 3 канала - - - - Channel 4 Volume - Громкость 4 канала - - - - Channel 4 Envelope length - - - - - Channel 4 Noise frequency - - - - - Channel 4 Noise frequency sweep - - - - - Master volume - Основная громкость - - - - Vibrato - Вибрато - - - - NesInstrumentView - - - - - + + + + Volume - Громкость + - - - + + + Coarse detune - Грубая расстройка + - - - + + + 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 - 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 - + 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 - Вибрато + - OscillatorObject + lmms::gui::OpulenzInstrumentView - - 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 - - - - PatchesDialog - - - Qsynth: Channel Preset + + + Attack - - Bank selector - Выбор банка + + + Decay + - - Bank - Банк + + + Release + - - Program selector - Выбор программ - - - - Patch - Патч - - - - Name - Имя - - - - OK - ОК - - - - Cancel - Отмена + + + Frequency multiplier + - PatmanView + lmms::gui::OrganicInstrumentView - - Open other patch - Открыть другой патч + + Distortion: + - - Click here to open another patch-file. Loop and Tune settings are not reset. - Нажмите чтобы открыть другой патч-файл. Цикличность и настройки при этом сохранятся. + + Volume: + - + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + Loop - Повтор - - - - Loop mode - Режим повтора - - - - 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 - - - use mouse wheel to set velocity of a step - - double-click to open in Piano Roll - Двойной щелчок открывает в Редакторе Нот + + Loop mode + - - Open in piano-roll - Открыть в редакторе нот + + Tune + - - Clear all notes - Очистить все ноты + + Tune mode + - + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + Reset name - Сбросить название + - + Change name - Переименовать + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + - - Add steps - Добавить такты + + Play/pause current pattern (Space) + - + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + Remove steps - Удалить такты + - + + Add steps + + + + Clone Steps - Клонировать такты + - PeakController + lmms::gui::PeakControllerDialog - - Peak Controller - Контроллер вершин + + PEAK + - - - Peak Controller Bug - Контроллер вершин с багом - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Из-за ошибки в старой версии LMMS контроллеры вершин не могут правильно подключаться. Пж. убедитесь, что контроллеры вершин правильно подсоединены и пересохраните этот файл, извините, за причинённые неудобства. - - - - PeakControllerDialog - PEAK - ПИК - - - LFO Controller - Контроллер LFO + - PeakControllerEffectControlDialog + lmms::gui::PeakControllerEffectControlDialog - + BASE - БАЗА + - - Base amount: - Базовое значение: + + Base: + - + AMNT - ГЛУБ + - + Modulation amount: - Глубина модуляции: + - + MULT - МНОЖ + - - Amount Multiplicator: - Величина множителя: + + Amount multiplicator: + - + ATCK - ВСТУП + - + Attack: - Вступление: + - + DCAY - СПАД + - + Release: - Убывание: + - + TRSH - ПОР + - + Treshold: - Порог: - - - - PeakControllerEffectControls - - - Base value - Опорное значение + - - Modulation amount - Глубина модуляции - - - - Attack - Вступление - - - - Release - Убывание - - - - Treshold - Порог - - - + Mute output - Заглушить вывод + - - Abs Value - Абс значение - - - - Amount Multiplicator - Величина множителя + + Absolute value + - PianoRoll + lmms::gui::PeakIndicator - - Note Velocity - Громкость нот - - - - Note Panning - Стереофония нот + + -inf + + + + lmms::gui::PianoRoll - Mark/unmark current semitone - Отметить/Снять отметку с текущего полутона + 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: + - PianoRollWindow + lmms::gui::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) во время воспроизведения композиции или дорожки Ритм-Баса + + Record notes from MIDI-device/channel-piano while playing song or pattern 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. - Нажмите здесь чтобы проиграть текущую мелодию. Это может пригодиться при её редактировании. По окончании мелодии воспроизведение начнётся сначала. + + 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) - - 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 + lmms::gui::PianoView - + Base note - Опорная нота + + + + + First note + + + + + Last note + - Plugin - - - Plugin not found - Модуль не найден - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Модуль «%1» отсутствует либо не может быть загружен! -Причина: «%2» - - - - Error while loading plugin - Ошибка загрузки модуля - - - - Failed to load plugin "%1"! - Не получилось загрузить модуль «%1»! - - - - PluginBrowser + lmms::gui::PluginBrowser Instrument Plugins - Плагины инструментов + Instrument browser - Обзор инструментов + - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Вы можете переносить нужные вам инструменты из этой панели в музыкальный, ритм-бас редактор или в существующую дорожку инструмента. + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + - PluginFactory + lmms::gui::PluginDescWidget - - Plugin not found. - Плагин не найден - - - - LMMS plugin %1 does not have a plugin descriptor named %2! - ЛММС плагин %1 не имеет описания плагина с именем %2! + + Send to new instrument track + Отправить на новую инструментальную дорожку - ProjectNotes + lmms::gui::ProjectNotes - + Project Notes - Показать/скрыть заметки к проекту + - + Enter project notes here - Напишите заметки, касающиеся проекта здесь + - + Edit Actions - Правка + - + &Undo - &U Отменить + - + %1+Z - %1+Z + - + &Redo - &R Повторить + - + %1+Y - %1+Y + - + &Copy - &C Копировать + - + %1+C - %1+C + - + Cu&t - &t Вырезать + - + %1+X - %1+X + - + &Paste - &P Вставить + - + %1+V - %1+V + - + Format Actions - Форматирование + - + &Bold - &b Полужирный + - + %1+B - %1+B + - + &Italic - &i Курсив + - + %1+I - %1+I + - + &Underline - &U Подчеркнутый + - + %1+U - %1+U + - + &Left - &L По левому краю + - + %1+L - %1+L + - + C&enter - По &центру + - + %1+E - + &Right - + %1+R - + &Justify - &Выравнивать + - + %1+J - + &Color... - &Цвет... - - - - ProjectRenderer - - - WAV-File (*.wav) - Файл WAV (*.wav) - - - - Compressed OGG-File (*.ogg) - Сжатый файл OGG (*.ogg) - - - FLAC-File (*.flac) - - - - - Compressed MP3-File (*.mp3) - QWidget + lmms::gui::RecentProjectsMenu - - - - Name: - Название: - - - - - Maker: - Создатель: - - - - - Copyright: - Правообладатель: - - - - - Requires Real Time: - Требуется обработка в реальном времени: - - - - - - - - - Yes - Да - - - - - - - - - No - Нет - - - - - Real Time Capable: - Работа в реальном времени: - - - - - In Place Broken: - Вместо сломанного: - - - - - Channels In: - Каналы в: - - - - - Channels Out: - Каналы из: - - - - File: %1 - Файл: %1 - - - - File: - Файл: + + &Recently Opened Projects + - RenameDialog + lmms::gui::RenameDialog - + Rename... - Переименовать... + - ReverbSCControlDialog + lmms::gui::ReverbSCControlDialog - + Input - Ввод - - - - Input Gain: - Входная мощность: + - Size - Размер + Input gain: + - - Size: - Размер: + + Size + - Color - Цвет + Size: + - - Color: - Цвет: + + Color + + Color: + + + + Output - Вывод - - - - Output Gain: - Выходная мощность: - - - - ReverbSCControls - - - Input Gain - Входная мощность - - - - Size - Размер - - - - Color - Цвет - - - - Output Gain - Выходная мощность - - - - 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) - Все аудио файлы (*.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) + + Output gain: + - SampleTCOView + lmms::gui::SaControlsDialog - - double-click to select sample - Выберите запись двойным нажатием мыши + + Pause + - - Delete (middle mousebutton) - Удалить (средняя кнопка мыши) + + Pause data acquisition + - - Cut - Вырезать + + Reference freeze + - - Copy - Копировать + + Freeze current input as a reference / disable falloff in peak-hold mode. + - - Paste - Вставить + + Waterfall + - - Mute/unmute (<%1> + middle click) - Заглушить/включить (<%1> + средняя кнопка мыши) + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + - SampleTrack + lmms::gui::SampleClipView - - Volume - Громкость + + Double-click to open sample + - - Panning - Баланс + + Reverse sample + - - - Sample track - Дорожка записи + + Set as ghost in automation editor + - SampleTrackView + lmms::gui::SampleTrackView - + + Mixer channel + + + + Track volume - Громкость дорожки + - + Channel volume: - Громкость канала: + - + VOL - ГРОМ + - + Panning - Баланс + - + Panning: - Баланс: + - + PAN - БАЛ + + + + + %1: %2 + - SetupDialog + lmms::gui::SampleTrackWindow - - Setup LMMS - Настройка LMMS + + Sample volume + - - - General settings - Общие параметры + + Volume: + - - BUFFER SIZE - РАЗМЕР БУФЕРА + + VOL + - - - Reset to default-value - Восстановить значение по умолчанию + + Panning + - - MISC - РАЗНОЕ + + Panning: + - - Enable tooltips - Включить подсказки + + PAN + - - Show restart warning after changing settings - Показывать предупреждение о перезапуске при изменении настроек + + Mixer channel + - + + CHANNEL + КАНАЛ + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + Настройки + + + + + General + Главное + + + + Graphical user interface (GUI) + Интерфейс + + + Display volume as dBFS - Отображать громкость в децибелах + Показывать громкость как dBFS - - 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 + + Enable tooltips - - PLUGIN EMBEDDING + + Enable master oscilloscope by default - - No embedding - Не встраивать + + Enable all note labels in piano roll + - - Embed using Qt API - Встроить с использованием QT API + + Enable compact track buttons + - - Embed using native Win32 API - Встроить с использованием Win32 API + + Enable one instrument-track-window mode + - - Embed using XEmbed protocol - Встроить с использованием протокола XEmbed + + Show sidebar on the right-hand side + - - LANGUAGE - ЯЗЫК + + Let sample previews continue when mouse is released + - - - Paths - Пути + + Mute automation tracks during solo + - - Directories - Папки + + Show warning when deleting tracks + - - LMMS working directory - Рабочий каталог LMMS + + Show warning when deleting a mixer channel that is in use + Показывать предупреждение при удалении используемого канала микшера - - Themes directory - Папка тем + + Dual-button + - - Background artwork - Фоновое изображение + + Grab closest + - - VST-plugin directory - Каталог модулей VST + + Handles + - - GIG directory - Папка GIG + + Loop edit mode + - - SF2 directory - Папка SF2 + + Projects + Проекты - - LADSPA plugin directories - Папка плагинов LADSPA + + Compress project files by default + Сжимать файлы проекта по умолчанию - - STK rawwave directory - Каталог STK rawwave + + Create a backup file when saving a project + Создать файл восстановления когда проект сохраняется - - Default Soundfont File - Основной Soundfont файл + + Reopen last project on startup + - - - Performance settings - Параметры производительности + + Language + Язык - - Auto save + + + Performance + Производительность + + + + Autosave Автосохранение - - Enable auto-save + + Enable autosave Включить автосохранение - - Allow auto-save while playing - Разрешить автосохранение во время воспроизведения + + Allow autosave while playing + Разрешить автосохранение при воспроизведении - - UI effects vs. performance - Визуальные эффекты/производительность - - - - Smooth scroll in Song Editor - Плавная прокрутка в музыкальном редакторе - - - - Show playback cursor in AudioFileProcessor - Показывать указатель воспроизведения в процессоре аудио файлов (AFP) - - - - - 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 - - - - 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 - Отключено - - - - Auto-save interval: %1 - Интервал автосорхранения: %1 - - - - 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. Не забывайте сохранять проект вручную. - - - - 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 и другие. В нижней части окна настройки можно задать специфические параметры выбранного интерфейса. - - - - Song - - - Tempo - Темп - - - - Master volume - Основная громкость - - - - Master pitch - Основная тональность - - - - 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 - Сохранить проект - - - - MIDI File (*.mid) - MIDI-файл (*.mid) - - - - The following errors occured 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, вероятно, нет разрешений на его чтение. -Пж. убедитесь, что есть по крайней мере права на чтение этого файла и попробуйте ещё раз. - - - - 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 для записи, возможно, нет разрешений на запись в этот файл, пж. удостоверьтесь, что есть доступ к этому файлу и попробуйте снова. - - - - 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 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). На каждый такт приходится четыре удара, так что темп в ударах в минуту фактически указывает, сколько четвертей такта проигрывается за минуту (или, что то же, количество тактов, проигрываемых за четыре минуты). - - - - High quality mode - Высокое качество - - - - - Master volume - Основная громкость - - - - master volume - основная громкость - - - - - Master pitch - Основная тональность - - - - 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 - Записать сэмпл с аудио-устройства во время воспроизведения в музыкальном или ритм/бас редакторе - - - - 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 - Режим рисования - - - - Edit mode (select and move) - Правка (выделение/перемещение) - - - - Timeline controls - Управление временем - - - - Zoom controls - Приблизить управление - - - - SpectrumAnalyzerControlDialog - - - Linear spectrum - Линейный спектр - - - - Linear Y axis - Линейная ось ординат (Y) - - - - SpectrumAnalyzerControls - - - Linear spectrum - Линейный спектр - - - - Linear Y axis - Линейная ось ординат (Y) - - - - Channel mode - Режим канала - - - - SubWindow - - - Close - Закрыть - - - - Maximize - Развернуть - - - - Restore - Восстановить - - - - TabWidget - - - - Settings for %1 - Настройки для %1 - - - - TempoSyncKnob - - - - Tempo Sync - Синхронизация темпа - - - - No Sync - Синхронизации нет - - - - Eight beats - Восемь ударов (две ноты) - - - - Whole note - Целая нота - - - - Half note - Полунота - - - - Quarter note - Четверть ноты - - - - 8th note - Восьмая ноты - - - - 16th note - 1/16 ноты - - - - 32nd note - 1/32 ноты - - - - Custom... - Своя... - - - - Custom - Своя - - - - Synced to Eight Beats - Синхро по 8 ударам - - - - Synced to Whole Note - Синхро по целой ноте - - - - Synced to Half Note - Синхро по половине ноты - - - - Synced to Quarter Note - Синхро по четверти ноты - - - - Synced to 8th Note - Синхро по 1/8 ноты - - - - Synced to 16th Note - Синхро по 1/16 ноты - - - - Synced to 32nd Note - Синхро по 1/32 ноты - - - - TimeDisplayWidget - - - click to change time units - нажми для изменения единиц времени - - - - MIN - МИН - - - - SEC - СЕК - - - - MSEC - мСЕК - - - - BAR - ДЕЛЕНИЕ - - - - BEAT - БИТ - - - - TICK - ТИК - - - - 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. - Нажмите <%1>, чтобы убрать прилипание точек петли. - - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Зажмите <Shift> чтобы сдвинуть начало точек петли; Нажмите <%1>, чтобы убрать прилипание точек петли. - - - - Track - - - Mute - Тихо - - - - Solo - Соло - - - - TrackContainer - - - Couldn't import file - Не могу импортировать файл - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - Не могу найти фильтр для импорта файла %1. -Для подключения этого файла преобразуйте его в формат, поддерживаемый LMMS. - - - - Couldn't open file - Не могу открыть файл - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - Не могу открыть файл %1 для записи. -Проверьте, обладаете ли вы правами на запись в выбранный файл и содержащий его каталог и попробуйте снова! - - - - Loading project... - Чтение проекта... - - - - - Cancel - Отменить - - - - - Please wait... - Подождите, пожалуйста... - - - - Loading cancelled - Загрузка отменена. - - - - Project loading was cancelled. - Загрузка проекта была отменена. - - - - Loading Track %1 (%2/Total %3) - - - - - Importing MIDI-file... - Импортирую файл MIDI... - - - - TrackContentObject - - - Mute - Тихо - - - - TrackContentObjectView - - - 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) - - - - Delete (middle mousebutton) - Удалить (средняя кнопка мыши) - - - - Cut - Вырезать - - - - Copy - Копировать - - - - Paste - Вставить - - - - Mute/unmute (<%1> + middle click) - Тихо/громко (<%1> + middle click) - - - - TrackOperationsWidget - - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - Зажмите <Сtrl> и нажимайте мышь во время движения, чтобы начать новую переброску. - - - - Actions for this track - Действия для этой дорожки - - - - Mute - Тихо - - - - - Solo - Соло - - - - Mute this track - Заглушить эту дорожку - - - - Clone this track - Клонировать дорожку - - - - Remove this track - Удалить дорожку - - - - Clear this track - Очистить эту дорожку - - - - FX %1: %2 - ЭФ %1: %2 - - - - Assign to new FX Channel - Назначить на другой канал ЭФфектов - - - - Turn all recording on - Включить всё на запись - - - - Turn all recording off - Выключить всю запись - - - - TripleOscillatorView - - - Use phase modulation for modulating oscillator 1 with oscillator 2 - Модулировать фазу осциллятора 2 сигналом с 1 - - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Модулировать амплитуду осциллятора 2 сигналом с первого - - - - Mix output of oscillator 1 & 2 - Смешать выводы 1 и 2 осцилляторов - - - - Synchronize oscillator 1 with oscillator 2 - Синхронизировать первый осциллятор по второму - - - - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Модулировать частоту осциллятора 2 сигналом с 1 - - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Модулировать фазу осциллятора 3 сигналом с 2 - - - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Модулировать амплитуду осциллятора 3 сигналом с 2 - - - - Mix output of oscillator 2 & 3 - Совместить вывод осцилляторов 2 и 3 - - - - Synchronize oscillator 2 with oscillator 3 - Синхронизировать осциллятор 2 и 3 - - - - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Модулировать частоту осциллятора 3 сигналом со 2 - - - - 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 между каналами, то есть разность фаз между левым и правым каналами. Это удобно для создания расширения стереоэффектов. - - - - 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 - Понижающийся номер версии - - - - already exists. Do you want to replace it? - уже существует. Хотите перезаписать? - - - - 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. - Открыть другой модуль VST. После нажатия на кнопку появится стандартный диалог выбора файла, где вы сможете выбрать нужный модуль. - - - - 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 плагина - - - - 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 не загружен - - - - 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 - Управление VST плагином через LMMS хост - - - - 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 плагина. - - - - 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 /> - - - - 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 плагин... - - - - WatsynInstrument - - - Volume A1 - Громкость А1 - - - - Volume A2 - Громкость А2 - - - - Volume B1 - Громкость B1 - - - - Volume B2 - Громкость B2 - - - - Panning A1 - - - - - Panning A2 - - - - - Panning B1 - - - - - Panning B2 - - - - - Freq. multiplier A1 - Множитель частоты А1 - - - - Freq. multiplier A2 - Множитель частоты А2 - - - - Freq. multiplier B1 - Множитель частоты B1 - - - - Freq. multiplier B2 - Множитель частоты 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 with output of A2 - Модулировать амплитуду A1 сигналом с A2 - - - - Ring-modulate A1 and A2 - Кольцевая модуляция А1 и А2 - - - - Modulate phase of A1 with output of A2 - Модулировать фазу A1 сигналом с A2 - - - - Mix output of B2 to B1 - - - - - Modulate amplitude of B1 with output of B2 - Модулировать амплитуду B1 сигналом с B2 - - - - Ring-modulate B1 and B2 - Кольцевая модуляция B1 и B2 - - - - Modulate phase of B1 with 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 - Кликнуть для загрузки формы звука из файла с образцом - - - - 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 - - - - - ZynAddSubFxInstrument - - - Portamento - Портаменто - - - - Filter Frequency - Фильтр Частот - - - - Filter Resonance - Фильтр резонанса - - - - Bandwidth - Ширина полосы - - - - FM Gain - Усил FM - - - - Resonance Center Frequency - Частоты центра резонанса - - - - Resonance Bandwidth - Ширина полосы резонанса - - - - Forward MIDI Control Change Events - Переслать изменение событий MiDi управления - - - - ZynAddSubFxView - - - Portamento: - Портаменто: - - - - PORT - PORT - - - - Filter Frequency: - Фильтр частот: - - - - FREQ - FREQ - - - - Filter Resonance: - Фильтр резонанса: - - - - RES - RES - - - - Bandwidth: - Полоса пропускания: - - - - BW - BW - - - - FM Gain: - Усиление частоты модуляции (FM): - - - - FM GAIN - FM 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 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 - - - Start frequency - Начальная частота - - - - End frequency - Конечная частота - - - - Length - Длина - - - - Distortion Start - Начало искажения - - - - Distortion End - Конец искажения - - - - 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: + + User interface (UI) effects vs. performance - - Click: - Клик: - - - - Noise: - Шум: - - - - Distortion Start: - + + Smooth scroll in song editor + Плавная прокрутка в редакторе музыки - - Distortion End: + + Display playback cursor in AudioFileProcessor - - - 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 - + Plugins - Модули + Плагины - - Description - Описание - - - - ladspaPortDialog - - - Ports - Порты + + VST plugins embedding: + - - Name - Название + + No embedding + - - Rate - Частота выборки + + Embed using Qt API + - - Direction - Направление + + Embed using native Win32 API + - - Type - Тип + + Embed using XEmbed protocol + - - Min < Default < Max - Меньше < Стандарт < Больше + + Keep plugin windows on top when not embedded + - - Logarithmic - Логарифмический + + Keep effects running even without input + - - SR Dependent - Зависимость от SR - - - + + Audio Аудио - - Control - Управление + + Audio interface + Аудио-интерфейс - - Input - Ввод - - - - Output - Вывод - - - - Toggled - Включено - - - - Integer - Целое - - - - Float - Дробное - - - - - Yes - Да - - - - lb302Synth - - - VCF Cutoff Frequency - Частота среза VCF - - - - VCF Resonance - Усиление VCF - - - - VCF Envelope Mod - Модуляция огибающей VCF - - - - VCF Envelope Decay - Спад огибающей VCF - - - - Distortion - Искажение - - - - Waveform - Форма сигнала - - - - Slide Decay - Сдвиг затухания - - - - Slide - Сдвиг - - - - Accent - Акцент - - - - Dead - Глухо - - - - 24dB/oct Filter - 24дБ/окт фильтр - - - - lb302SynthView - - - Cutoff Freq: - Частота среза: - - - - Resonance: - Отзвук: - - - - Env Mod: - Мод Огиб: - - - - Decay: - Затухание: - - - - 303-es-que, 24dB/octave, 3 pole filter - 303-ий, 24дБ/октаву, 3-польный фильтр - - - - Slide Decay: - Сдвиг затухания: - - - - DIST: - ИСК: - - - - Saw wave - Зигзаг - - - - Click here for a saw-wave. - Сгенерировать зигзаг. - - - - Triangle wave - Треугольная волна - - - - Click here for a triangle-wave. - Сгенерировать треугольный сигнал. - - - - Square wave - Квадрат - - - - Click here for a square-wave. - Сгенерировать квадрат. - - - - Rounded square wave - Волна скругленного квадрата - - - - Click here for a square-wave with a rounded end. - Создать квадратную волну закруглённую в конце. - - - - Moog wave - Муг волна - - - - Click here for a moog-like wave. - Сгенерировать волну похожую на муг. - - - - Sine wave - Синусоида - - - - Click for a sine-wave. - Сгенерировать гармонический (синусоидальный) сигнал. - - - - - White noise wave - Белый шум - - - - Click here for an exponential wave. - Генерировать экспоненциальный сигнал. - - - - Click here for white-noise. - Сгенерировать белый шум. - - - - Bandlimited saw wave + + Buffer size - - Click here for bandlimited saw wave. - Нажать здесь для пилообразной волны с ограниченной полосой. - - - - Bandlimited square wave + + Reset to default value - - Click here for bandlimited square wave. - Нажать здесь для квадратной волны с ограниченной полосой. - - - - Bandlimited triangle wave - Ограниченная треугольная волна - - - - Click here for bandlimited triangle wave. - Нажать здесь для треуголной волны с ограниченной полосой. - - - - Bandlimited moog saw wave - Пружинная волна с ограниченной полосой - - - - Click here for bandlimited moog saw wave. - Нажать здесь для пилообразной муг (moog) волны с ограниченной полосой. - - - - malletsInstrument - - - Hardness - Жёсткость - - - - Position - Положение - - - - Vibrato Gain - Усиление вибрато - - - - Vibrato Freq - Частота вибрато - - - - Stick Mix - Сведение ручек - - - - Modulator - Модулятор - - - - Crossfade - Переход - - - - LFO Speed - Скорость LFO - - - - LFO Depth - Глубина LFO - - - - ADSR - ADSR - - - - Pressure - Давление - - - - Motion - Движение - - - - Speed - Скорость - - - - Bowed - Наклон - - - - Spread - Разброс - - - - Marimba - Маримба - - - - Vibraphone - Вибрафон - - - - Agogo - Дискотека - - - - Wood1 - Дерево1 - - - - Reso - Резо - - - - Wood2 - Дерево2 - - - - Beats - Удары - - - - Two Fixed - Два фиксированных - - - - Clump - Тяжёлая поступь - - - - Tubular Bells - Трубные колокола - - - - Uniform Bar - Равномерные полосы - - - - Tuned Bar - Подстроенные полосы - - - - Glass - Стекло - - - - Tibetan Bowl - Тибетские шары - - - - malletsInstrumentView - - - Instrument - Инструмент - - - - Spread - Разброс - - - - Spread: - Разброс: - - - - Missing files - Файлы отсутствуют - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Похоже устновка Stk прошла не полностью. Пожалуйста, убедитесь, что пакет Stk полностью установлен! - - - - Hardness - Жёсткость - - - - Hardness: - Жёсткость: - - - - Position - Положение - - - - Position: - Положение: - - - - 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 - - - - ADSR: - ADSR: - - - - Pressure - Давление - - - - Pressure: - Давление: - - - - Speed - Скорость - - - - Speed: - Скорость: - - - - manageVSTEffectView - - - - VST parameter 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 effect knob-controller window. - Закрыть окно управления регуляторами VST эффектов. - - - - 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 - ОП 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 - - - 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 - - - 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 + + + MIDI - - Bank selector - Выбор банка + + MIDI interface + - - Bank - Банк + + Automatically assign MIDI controller to selected track + - - Program selector - Выбор программ + + Behavior when recording + - - Patch - Патч + + Auto-quantize notes in Piano Roll + - - Name - Имя + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + - + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + Каталоги плагинов LADSPA + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + OK ОК - + Cancel Отмена - - - pluginBrowser - - no description - описание отсутствует + + minutes + минуты - - A native amplifier plugin - Родной плагин усилителя + + minute + минута - - Simple sampler with various settings for using samples (e.g. drums) in an instrument-track - Простой сэмплер с разными установками по использованию сэмплов (как барабаны) в инструментальной дорожке + + Disabled + Отключено - - Boost your bass the fast and simple way - Накачай свой бас быстро и просто - - - - Customizable wavetable synthesizer - Настраиваемый синтезатор звукозаписей (wavetable) - - - - An oversampling bitcrusher + + Autosave interval: %1 - - Carla Patchbay Instrument + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. - - Carla Rack Instrument - Карла инструментальная стойка - - - - A 4-band Crossover Equalizer + + The currently selected value is less than or equal to 32. Some plugins may not be available. - - A native delay plugin - Встроенный delay плагин - - - - A Dual filter plugin - Двух фильтровый плагин - - - - plugin for processing dynamics in a flexible way + + Frames: %1 +Latency: %2 ms - - A native eq plugin - Родной плагин эквалайзера - - - - A native flanger plugin + + Choose the LMMS working directory - - 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 + + Choose your VST plugins directory - - A NES-like synthesizer - Синтезатор типа NES + + Choose your LADSPA plugins directory + Выберите каталог плагинов LADSPA - - 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 + + Choose your SF2 directory - - 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 + + Choose your default SF2 + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + Выбрать фоновое изображение + - sf2Instrument + lmms::gui::Sf2InstrumentView - - 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. - Soundfont %1 не удаётся загрузить. - - - - 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) + + Choose patch + + + + + Gain: + Усиление: + + + + Apply reverb (if supported) + Применить реверберацию (если поддерживается) + + + + Room size: + Размер комнаты: + + + + Damping: + Приглушение: + + + + Width: + Ширина: + + + + + Level: + Уровень: + + + + Apply chorus (if supported) + Применить хорус (если поддерживается) + + + + Voices: + Голоса: + + + + Speed: + Скорость: + + + + Depth: + Глубина: + + + + SoundFont Files (*.sf2 *.sf3) + - sfxrInstrument + lmms::gui::SidInstrumentView - - Wave Form - Форма волны - - - - sidInstrument - - - Cutoff - Срез - - - - Resonance - Усиление - - - - Filter type - Тип фильтра - - - - Voice 3 off - Голос 3 откл - - - - Volume - Громкость - - - - Chip model - Модель чипа - - - - sidInstrumentView - - + Volume: Громкость: - + Resonance: - Усиление: + Резонанс: - - + + Cutoff frequency: Частота среза: - - High-Pass filter - Выс.ЧФ + + High-pass filter + Фильтр верхних частот - - Band-Pass filter - Сред.ЧФ + + Band-pass filter + Фильтр средних частот - - Low-Pass filter - Низ.ЧФ + + Low-pass filter + Фильтр нижних частот - - Voice3 Off - Голос 3 откл + + Voice 3 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. - Длительность вступления определяет, насколько быстро громкость %1-го голоса возрастает от нуля до наибольшего значения. - - - - + + 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 + - - Pulse Wave - Пульсирующая волна + + Triangle wave + - - Triangle Wave - Треугольник + + Saw 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 modulation + - - 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-й осциллятор выдаёт нулевой сигнал (пока флажок не снимется). + + Pulse width: + - stereoEnhancerControlDialog + lmms::gui::SideBarWidget - - WIDE - ШИРЕ + + Close + Закрыть + + + + lmms::gui::SlicerTView + + + Slice snap + - + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + Ошибка + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + Ошибка в файле + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + Режим рисования + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + Режим исправлений (выбирать и двигать) + + + + Timeline controls + Контроль таймлайна + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + Управление приближением + + + + + Zoom + Масштаб + + + + Snap controls + Контроль выравнивания + + + + + Clip snapping size + Ограничить размер выравнивания + + + + Toggle proportional snap on/off + Вкл./выкл. пропорциональное выравнивание + + + + Base snapping size + Базовый размер выравнивания + + + + lmms::gui::StepRecorderWidget + + + Hint + Подсказка + + + + Move recording curser using <Left/Right> arrows + Двигать курсор записи стрелками влево-вправо + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + ШИРИНА + + + Width: Ширина: - stereoEnhancerControls + lmms::gui::StereoMatrixControlDialog - - Width - Ширина - - - - stereoMatrixControlDialog - - + Left to Left Vol: От левого на левый: - + Left to Right Vol: От левого на правый: - + Right to Left Vol: От правого на левый: - + Right to Right Vol: От правого на правый: - stereoMatrixControls + lmms::gui::SubWindow - - Left to Left - От левого на левый + + Close + Закрыть - - Left to Right - От левого на правый + + Maximize + Развернуть - - Right to Left - От правого на левый - - - - Right to Right - От правого на правый + + Restore + Восстановить - vestigeInstrument + lmms::gui::TapTempoView - - Loading plugin - Загрузка модуля + + 0 + - - Please wait while loading VST-plugin... - Подождите, пока загрузится модуль VST... + + + Precision + Точность + + + + Display in high precision + Отображение с высокой точностью + + + + 0.0 ms + + + + + Mute metronome + Выключить метроном + + + + Mute + Заглушить + + + + BPM in milliseconds + BPM в миллисекундах + + + + 0 ms + + + + + Frequency of BPM + Частота BPM + + + + 0.0000 hz + + + + + Reset + Сброс + + + + Reset counter and sidebar information + Сбросить счетчик и информацию на боковой панели + + + + Sync + + + + + Sync with project tempo + Синхронизация с темпом проекта + + + + %1 ms + + + + + %1 hz + - vibed + lmms::gui::TemplatesMenu - - String %1 volume - Громкость %1-й струны - - - - String %1 stiffness - Жёсткость %1-й струны - - - - Pick %1 position - Лад %1 - - - - Pickup %1 position - Положение %1-го звукоснимателя - - - - Pan %1 - Бал %1 - - - - Detune %1 - Подстройка %1 - - - - Fuzziness %1 - Нечёткость %1 - - - - Length %1 - Длина %1 - - - - Impulse %1 - Импульс %1 - - - - Octave %1 - Октава %1 + + New from template + - vibedView + lmms::gui::TempoSyncBarModelEditor - - Volume: - Громкость: + + + Tempo Sync + - - The 'V' knob sets the volume of the selected string. - Регулятор 'V' устанавливает громкость текущей струны. + + No Sync + - - String stiffness: - Жёсткость: + + Eight beats + - - 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' устанавливает жёсткость текущей струны. Этот параметр отвечает за длительность звучания струны (чем больше значение жёсткости, тем дольше звенит струна). + + Whole note + - - Pick position: - Лад: + + Half note + - - 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' устанавливает место струны, где она будет „прижата“. Чем ниже значение, тем ближе это место будет к кобылке. + + Quarter note + - - Pickup position: - Положение звукоснимателя: + + 8th note + - - 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' устанавливает место струны, откуда будет сниматься звук. Чем ниже значение, тем ближе это место будет к кобылке. + + 16th note + - - Pan: - Бал: + + 32nd note + - - The Pan knob determines the location of the selected string in the stereo field. - Эта ручка устанавливает стереобаланс для текущей струны. + + Custom... + - - Detune: - Подстроить: + + Custom + - - 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. - Ручка подстройки изменяет сдвиг частоты для текущей струны. Отрицательные значения заставят струну звучать плоско (бемольно), положительные — остро (диезно). + + Synced to Eight Beats + - - Fuzziness: - Нечёткость: + + Synced to Whole Note + - - 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'. - Эта ручка добавляет размытости звуку, что наиболее заметно во время нарастания, впрочем, это может использоваться, чтобы сделать звук более „металлическим“. + + Synced to Half Note + - - Length: - Длина: + + Synced to Quarter Note + - - 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. - Ручка длины устанавливает длину текущей струны. Чем длиннее струна, тем более чистый и долгий звук она даёт; однако это требует больше ресурсов ЦП. + + Synced to 8th Note + - - Impulse or initial state - Начальная скорость/начальное состояние + + Synced to 16th Note + - - 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“ устанавливает режим работы струны: если он включён, то указанная форма сигнала интерпретируется как начальный импульс, иначе — как начальная форма струны. + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + - - Octave - Октава + + No Sync + - - 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“ — на частоте, на шесть октав более высокой, чем основная. + + Eight beats + - - Impulse Editor - Редактор сигнала + + Whole note + - - 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' нормализует уровень. + + Half note + - - 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'' — положение звукоснимателя - -Ручка подстройки и стереобаланса, есть надежда, не нуждаются в объяснениях. - -Ручка „Длина“ регулирует длину струны - -Индикатор-переключатель слева внизу определяет, включена ли текущая струна. + + Quarter note + - - Enable waveform - Включить + + 8th note + - - Click here to enable/disable waveform. - Нажмите, чтобы включить/выключить сигнал. + + 16th note + - - String - Струна + + 32nd note + - - 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 содержит до девяти независимо звучащих струн, индикатор в левом нижнем углу показывает, активна ли текущая струна (т. е. будет ли она слышна). + + Custom... + Своя... - + + Custom + Своя + + + + Synced to Eight Beats + Синхро по 8 ударам + + + + Synced to Whole Note + Синхро по целой ноте + + + + Synced to Half Note + Синхро по половинной ноте + + + + Synced to Quarter Note + Синхро по четвертной ноте + + + + Synced to 8th Note + Синхро по 1/8 ноте + + + + Synced to 16th Note + Синхро по 1/16 ноте + + + + Synced to 32nd Note + Синхро по 1/32 ноте + + + + lmms::gui::TimeDisplayWidget + + + Time units + Единицы времени + + + + MIN + МИН + + + + SEC + СЕК + + + + MSEC + мСЕК + + + + BAR + ДЕЛЕНИЕ + + + + BEAT + БИТ + + + + TICK + ТИК + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + Авто-перемотка + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + Точки петли + + + + After stopping go back to beginning + После остановки возвращаться в начало + + + + After stopping go back to position at which playing was started + После остановки переходить к месту, с которого началось воспроизведение + + + + After stopping keep position + Оставаться на месте остановки + + + + Hint + Подсказка + + + + Press <%1> to disable magnetic loop points. + Нажмите <%1>, чтобы убрать прилипание точек петли. + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + Вставить + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + Удерживайте нажатой клавишу <%1> при щелчке по захвату перемещения, чтобы начать новое перетаскивание. + + + + Actions + Действия + + + + + Mute + Заглушить + + + + + Solo + Соло + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + Удалённый трек будет невозможно восстановить. Удалить трек «%1»? + + + + Confirm removal + Подтвердить удаление + + + + Don't ask again + Больше не спрашивать + + + + Clone this track + Клонировать дорожку + + + + Remove this track + Удалить дорожку + + + + Clear this track + Очистить эту дорожку + + + + Channel %1: %2 + Канал %1: %2 + + + + Assign to new Mixer Channel + Назначить на новый канал микшера + + + + Turn all recording on + Включить всё на запись + + + + Turn all recording off + Выключить всю запись + + + + Track color + Цвет дорожки + + + + Change + Изменить + + + + Reset + Сброс + + + + Pick random + Выбрать случайно + + + + Reset clip colors + Сбросить цвета клипа + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + Модулировать фазу осциллятора 1 сигналом с 2 + + + + Modulate amplitude of oscillator 1 by oscillator 2 + Модулировать амплитуду осциллятора 1 сигналом с 2 + + + + Mix output of oscillators 1 & 2 + Смешать выход осцилляторов 1 и 2 + + + + Synchronize oscillator 1 with oscillator 2 + Синхронизировать осциллятор 1 с осц 2 + + + + Modulate frequency of oscillator 1 by oscillator 2 + Модулировать частоту осциллятора 1 сигналом с 2 + + + + Modulate phase of oscillator 2 by oscillator 3 + Модулировать фазу осциллятора 2 сигналом с 3 + + + + Modulate amplitude of oscillator 2 by oscillator 3 + Модулировать амплитуду осциллятора 2 сигналом с 3 + + + + Mix output of oscillators 2 & 3 + Смешать выход осцилляторов 2 и 3 + + + + Synchronize oscillator 2 with oscillator 3 + Синхронизировать осциллятор 2 с осц 3 + + + + Modulate frequency of oscillator 2 by oscillator 3 + Модулировать частоту осциллятора 2 сигналом с 3 + + + + Osc %1 volume: + Громкость осц %1: + + + + Osc %1 panning: + Баланс осц %1: + + + + Osc %1 coarse detuning: + Грубая подстройка осц %1: + + + + semitones + полутона + + + + Osc %1 fine detuning left: + Точная подстройка осц %1 слева: + + + + + cents + цент[а,ов] + + + + Osc %1 fine detuning right: + Точная подстройка осц %1 справа: + + + + Osc %1 phase-offset: + Сдвиг фазы осц %1: + + + + + degrees + ° + + + + Osc %1 stereo phase-detuning: + Подстройка стерео-фазы осциллятора %1: + + + Sine wave Синусоида - - 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 + Типа муг пило-волна - - White noise wave + + Exponential wave + Экспоненциальная волна + + + + White noise Белый шум - - Use white-noise for current oscillator. - Генерировать белый шум. + + User-defined wave + Пользовательская волна - - User defined wave - Пользовательская - - - - Use a user-defined waveform for current oscillator. - Задать форму сигнала. - - - - Smooth - Сгладить - - - - Click here to smooth waveform. - Щёлкните чтобы сгладить форму сигнала. - - - - Normalize - Нормализовать - - - - Click here to normalize waveform. - Нажмите, чтобы нормализовать сигнал. + + Use alias-free wavetable oscillators. + - voiceObject + lmms::gui::VecControlsDialog - - Voice %1 pulse width - Голос %1 длина сигнала + + HQ + HQ - - Voice %1 attack - Вступление %1-го голоса + + Double the resolution and simulate continuous analog-like trace. + Удвоить разрешение и смоделировать непрерывное аналоговое отслеживание. - - Voice %1 decay - Затухание %1-го голоса + + Log. scale + Лог. шкала - - Voice %1 sustain - Выдержка для %1-го голоса + + Display amplitude on logarithmic scale to better see small values. + Отображать амплитуду на логарифмической шкале, чтобы лучше видеть маленькие значения. - - Voice %1 release - Убывание %1-го голоса + + Persist. + - - Voice %1 coarse detuning - Подстройка %1-го голоса (грубо) + + Trace persistence: higher amount means the trace will stay bright for longer time. + - - Voice %1 wave shape - Форма сигнала для %1-го голоса - - - - Voice %1 sync - Синхронизация %1-го голоса - - - - Voice %1 ring modulate - Голос %1 кольцевой модулятор - - - - Voice %1 filtered - Фильтрованный %1-й голос - - - - Voice %1 test - Голос %1 тест + + Trace persistence + - waveShaperControlDialog + lmms::gui::VersionedSaveDialog - - INPUT - ВХОД + + Increment version number + Увеличить номер версии - - Input gain: - Входная мощность: + + Decrement version number + Уменьшить номер версии - - OUTPUT - Выход + + Save Options + Параметры сохранения - - Output gain: - Выходная мощность: + + already exists. Do you want to replace it? + уже существует. Заменить? + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + Открыть VST-плагин - - Reset waveform - Сбросить волну + + Control VST plugin from LMMS host + Контроль VST-модуля из хоста LMMS - - Click here to reset the wavegraph back to default - Сбросить граф волны обратно по умолчанию + + Open VST plugin preset + Открыть пресет VST-плагина - + + Previous (-) + Предыдущий (−) + + + + Save preset + Сохранить пресет + + + + Next (+) + Следующий (+) + + + + Show/hide GUI + Показать/скрыть интерфейс + + + + Turn off all notes + Выключить все ноты + + + + DLL-files (*.dll) + Библиотеки DLL (*.dll) + + + + EXE-files (*.exe) + Программы EXE (*.exe) + + + + SO-files (*.so) + Файлы SO (*.so) + + + + No VST plugin loaded + Нет загруженного VST-модуля + + + + Preset + Предустановка + + + + by + от + + + + - VST plugin control + - управление VST-плагином + + + + lmms::gui::VibedView + + + Enable waveform + Включить форму волны + + + + Smooth waveform Сгладить волну - - Click here to apply smoothing to wavegraph - Применить сглаживание к графу волны + + + Normalize waveform + Нормализовать форму волны - - Increase graph amplitude by 1dB - Повысить амплитуду графа на 1 дБ + + + Sine wave + Синусоида - - Click here to increase wavegraph amplitude by 1dB - Нажмите здесь, чтобы повысить амплитуду графа волны на 1 дБ + + + Triangle wave + Треугольная волна - - Decrease graph amplitude by 1dB - Снизить амплитуду графа на 1 дБ + + + Saw wave + Пилообразная волна - - Click here to decrease wavegraph amplitude by 1dB - Снизить амплитуду графа волны на 1 дБ + + + Square wave + Квадратная волна - - Clip input - Срезать выходной сигнал + + + White noise + Белый шум - - Clip input signal to 0dB - Срезать входной сигнал до 0дБ + + + User-defined wave + Пользовательская волна + + + + String volume: + Громкость струны: + + + + String stiffness: + Натяжение струны: + + + + Pick position: + Выберите позицию: + + + + Pickup position: + Положение звукоснимателя: + + + + String panning: + Стерео-баланс струны: + + + + String detune: + Подстройка струны: + + + + String fuzziness: + Расплывчатость струны: + + + + String length: + Длина струны: + + + + Impulse Editor + Редактор импульса + + + + Impulse + Импульс + + + + Enable/disable string + Включить/отключить струну + + + + Octave + Октава + + + + String + Струна - waveShaperControls + lmms::gui::VstEffectControlDialog - - Input gain - Входная мощность + + Show/hide + Показать/скрыть - - Output gain - Выходная мощность + + Control VST plugin from LMMS host + Контроль VST-модуля из хоста LMMS + + + + Open VST plugin preset + Открыть пресет VST-плагина + + + + Previous (-) + Предыдущий (−) + + + + Next (+) + Следующий (+) + + + + Save preset + Сохранить пресет + + + + + Effect by: + Эффекты от: + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - + + lmms::gui::WatsynView + + + + + + Volume + Громкость + + + + + + + Panning + Баланс + + + + + + + Freq. multiplier + Множитель частоты + + + + + + + Left detune + Подстройка слева + + + + + + + + + + + cents + центы + + + + + + + Right detune + Подстройка справа + + + + A-B Mix + Микс A-B + + + + Mix envelope amount + Уровень огибающей микса + + + + Mix envelope attack + Атака огибающей микса + + + + Mix envelope hold + Удержание огибающей микса + + + + Mix envelope decay + Спад огибающей микса + + + + Crosstalk + Смешивание + + + + Select oscillator A1 + Выбрать генератор А1 + + + + Select oscillator A2 + Выбрать генератор А2 + + + + Select oscillator B1 + Выбрать генератор В1 + + + + Select oscillator B2 + Выбрать генератор В2 + + + + Mix output of A2 to A1 + Смешать выход А2 с А1 + + + + Modulate amplitude of A1 by output of A2 + Модулировать амплитуду A1 выходом с A2 + + + + Ring modulate A1 and A2 + Кольцевая модуляция A1 и A2 + + + + Modulate phase of A1 by output of A2 + Модулировать фазу A1 выходом с A2 + + + + Mix output of B2 to B1 + Смешать выход из B2 в B1 + + + + Modulate amplitude of B1 by output of B2 + Модулировать амплитуду B1 выходом с B2 + + + + Ring modulate B1 and B2 + Кольцевая модуляция B1 и B2 + + + + Modulate phase of B1 by output of B2 + Модулировать фазу B1 выходом с B2 + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + Нарисуйте здесь свою собственную форму волны, перетащив мышь на этот график. + + + + Load waveform + Загрузить форму волны + + + + Load a waveform from a sample file + Загрузить форму волны из сэмпл-файла + + + + Phase left + Фаза слева + + + + Shift phase by -15 degrees + Сдвинуть фазу на -15° + + + + Phase right + Фаза справа + + + + Shift phase by +15 degrees + Сдвинуть фазу на +15° + + + + + Normalize + Нормализовать + + + + + Invert + Инвертировать + + + + + Smooth + Сгладить + + + + + Sine wave + Синусоида + + + + + + Triangle wave + Треугольная волна + + + + Saw wave + Пилообразная волна + + + + + Square wave + Квадратная волна + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + ВХОД + + + + Input gain: + Входное усиление: + + + + OUTPUT + ВЫХОД + + + + Output gain: + Выходное усиление: + + + + + Reset wavegraph + Сбросить волновой график + + + + + Smooth wavegraph + Сгладить волновой график + + + + + Increase wavegraph amplitude by 1 dB + Увеличить амплитуду графика волны на 1 дБ + + + + + Decrease wavegraph amplitude by 1 dB + Уменьшить амплитуду графика волны на 1 дБ + + + + Clip input + Срезать входной сигнал + + + + Clip input signal to 0 dB + Обрезать входной сигнал на 0 dB + + + + lmms::gui::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 + Гладкость + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + Портаменто: + + + + PORT + + + + + Filter frequency: + Частота фильтра: + + + + FREQ + ЧАСТ + + + + Filter resonance: + Резонанс фильтра: + + + + RES + РЕЗ + + + + Bandwidth: + Полоса пропускания: + + + + BW + + + + + FM gain: + FM усиление: + + + + FM GAIN + FM УСИЛ + + + + Resonance center frequency: + Частоты центра резонанса: + + + + RES CF + + + + + Resonance bandwidth: + Полоса пропуска резонанса: + + + + RES BW + + + + + Forward MIDI control changes + Передавать изменения MIDI управления + + + + Show GUI + Показать интерфейс + + + \ No newline at end of file diff --git a/data/locale/sl.ts b/data/locale/sl.ts index 951fdb1d8..77586e6e9 100644 --- a/data/locale/sl.ts +++ b/data/locale/sl.ts @@ -1,9948 +1,18875 @@ - + AboutDialog + About LMMS - Opis LMMS + O programu LMMS - Version %1 (%2/%3, Qt %4, %5) - Različica %1 (%2/%3, Qt %4, %5) + + LMMS + LMMS + + Version %1 (%2/%3, Qt %4, %5). + Različica %1 (%2/%3, Qt %4, %5). + + + About - Vizitka + O programu - LMMS - easy music production for everyone - LMMS - preprost skladateljski program za vsakogar + + LMMS - easy music production for everyone. + Enostavno produciranje glasbe za vsakogar. + + Copyright © %1. + Avtorstvo © %1. + + + + <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#33cc33;">https://lmms.io</span></a></p></body></html> + <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#33cc33;">https://lmms.io</span></a></p></body></html> + + + Authors Avtorji + + Involved + Vpleteni + + + + Contributors ordered by number of commits: + Sodelujoči razporejeni po številu prispevkov: + + + 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! + Trenutni jezik ni preveden (ali izvorna angleščina). +Če vas zanima prevajanje LMMS v nek drug jezik ali če želite izboljšati obstoječe prevode, ste dobrodošli! Zgolj stopite v stik z vzdrževalcem! + + + + License + Licenca + + + + AboutJuceDialog + + + About JUCE + + <b>About JUCE</b> + + + + + This program uses JUCE version 3.x.x. + + + + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + + + + + This program uses JUCE version + + + + + AudioDeviceSetupWidget + + + [System Default] + + + + + CarlaAboutW + + + About Carla + O programu Carla + + + + About + O programu + + + + About text here + Tu se zapiše besedilo o programu + + + + Extended licensing here + Sem pride razširjena licenca + + + + Artwork + Grafično oblikovanje + + + + Using KDE Oxygen icon set, designed by Oxygen Team. + Uporablja nabor ikon KDE Oxygen, ki ga je oblikoval Oxygen Team. + + + + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. + Vsebuje nekatere vrtljive gumbe, ozadja in druge grafične dodatke iz Calf Studio Gear, OpenAV in OpenOctave projektov. + + + + VST is a trademark of Steinberg Media Technologies GmbH. + VST je začitena znamka podjetja Steinberg Media Technologies GmbH. + + + + Special thanks to António Saraiva for a few extra icons and artwork! + Posebna zahvala Antóniu Saraivii za nekaj posebnih ikon in grafičnih elementov! + + + + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. + LV2 logo je oblikoval Thorsten Wilms po zasnovi Peter Shorthose-a. + + + + MIDI Keyboard designed by Thorsten Wilms. + MIDI tipkovnico je oblikoval Thorsten Wilms. + + + + Carla, Carla-Control and Patchbay icons designed by DoosC. + Carla, Carla-Control in Patchbay ikone je oblikoval DoosC. + + + + Features + Zmožnosti + + + + AU/AudioUnit: + AU/AudioUnit: + + + + LADSPA: + LADSPA: + + + + + + + + + + + TextLabel + TekstovnaOznaka + + + + VST2: + VST2: + + + + DSSI: + DSSI: + + + + LV2: + LV2: + + + + VST3: + VST3: + + + + OSC + OSC + + + + Host URLs: + URL gostitelja: + + + + Valid commands: + Veljavni ukazi: + + + + valid osc commands here + tu je prostor za veljavne osc ukaze + + + + Example: + Primer: + + + License Licenca - LMMS - LMMS + + 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 + + SPLOŠNO DOVOLJENJE GNU + Različica št. 2, junij 1991 +Pravice razširjanja © 1989, 1991 Free Software Foundation, Inc. +59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +Vsakdo sme razmnoževati in razširjati dobesedne kopije tega licenčnega +dokumenta, ni pa ga dovoljeno spreminjati. +Predgovor +Licenčne pogodbe večine programja so zasnovane tako, da vam preprečujejo njegovo svobodno razdeljevanje in spreminjanje. Za razliko od teh vam namerava Splošno dovoljenje GNU (angl. GNU General Public License, GPL) zajamčiti svobodo pri razdeljevanju in spreminjanju prostega programja ter s tem zagotoviti, da ostane programje prosto za vse njegove uporabnike. Ta GPL se nanaša na večino programske opreme ustanove Free Software Foundation in na vse druge programe, katerih avtorji so se zavezali k njeni uporabi. (Nekatero drugo programje ustanove Free Software Foundation je namesto tega pokrito s Splošnim dovoljenjem GNU za knjižnice, angl. GNU Library General Public License.) Uporabite jo lahko tudi za vaše programe. + +Ko govorimo o prostem programju, imamo s tem v mislih svobodo, ne cene. Naša splošna dovoljenja GNU vam zagotavljajo, da imate pravico razširjati kopije prostega programja (in zaračunavati za to storitev, če tako želite); da dobite izvorno kodo ali jo lahko dobite, če tako želite; da lahko spreminjate programje ali uporabljate njegove dele v novih prostih programih; in da veste, da lahko počnete vse te stvari. + +Zaradi zavarovanja vaših pravic moramo uvesti omejitve, ki prepovedujejo vsakomur, da bi vam te pravice kratil ali od vas zahteval predajo teh pravic. Te omejitve se preslikajo v določene odgovornosti za vas, če razširjate kopije programja ali ga spreminjate. + +Na primer, če razširjate kopije takega programa, bodisi zastonj ali za plačilo, morate dati prejemnikom vse pravice, ki jih imate vi. Prepričati se morate, da bodo tudi oni prejeli ali imeli dostop do izvorne kode. In morate jim pokazati te pogoje (pravzaprav izvirnik, opomba prevajalca), da bodo poznali svoje pravice. + +Vaše pravice varujemo z dvema korakoma: (1) s pravno zaščito programja in (2) ponujamo vam to licenco, ki vam daje pravno dovoljenje za razmnoževanje, razširjanje in/ali spreminjanje programja. + +Zaradi zaščite vsakega avtorja in zaradi naše zaščite želimo zagotoviti, da vsakdo razume, da za to prosto programje ni nobenega jamstva. Če je programje spremenil nekdo drug in ga posredoval naprej, želimo, da njegovi prejemniki vedo, da to, kar imajo, ni izvirnik, zato da se problemi, ki jih povzročijo drugi, ne bodo odražali na ugledu izvornega avtorja. + +Končno, vsakemu prostemu programu nenehno grozijo programski patenti. Želimo se izogniti nevarnosti, da bi razširjevalci prostega programa posamično dobivali patentne licence in s tem naredili program lastniški (angl. proprietary). Za preprečitev tega jasno zahtevamo da mora biti vsak patent licenciran tako, da ga lahko vsakdo prosto uporablja, ali pa sploh ne sme biti licenciran. + +Sledijo natančne določitve in pogoji za razmnoževanje, razširjanje in spreminjanje. + +DOLOČITVE IN POGOJI ZA RAZMNOŽEVANJE, RAZŠIRJANJE IN SPREMINJANJE +0. +Licenca se nanaša na vsak program ali drugo delo, ki vsebuje obvestilo lastnika avtorskih pravic (angl. copyright holder) z izjavo, da se lahko distribuira pod pogoji Splošnega dovoljenja GNU (angl. General Public License). „Program“ se v nadaljevanju nanaša na vsak tak program ali delo, in „delo, ki temelji na programu“ pomeni bodisi program ali pa katerokoli izvedeno delo po zakonu o avtorskih pravicah (angl. copyright law): se pravi delo, ki vsebuje program ali njegov del, bodisi dobesedno ali s spremembami in/ali prevedeno v drug jezik. (Tukaj in povsod v nadaljevanju je prevod vključen brez omejitev v pojem „spremembe“.) Vsaka licenca je naslovljena na „vas“. +Ta licenca ne pokriva nobenih drugih aktivnosti razen razmnoževanja, razširjanja in sprememb; ostale so izven njenega dometa. Dejanje poganjanja programa ni omejeno in izhod programa je zajet le, če njegova vsebina sestavlja delo, iz katerega je izpeljan program (ne glede na to, da je bil narejen s poganjanjem programa). Ali je to res ali ne, je odvisno od tega, kaj počne program. + +1. +Razmnožujete in razširjate lahko dobesedne izvode izvorne kode programa v enaki obliki, kot jo dobite, preko kateregakoli medija, če le na vsakem izvodu razločno in primerno objavite obvestilo o pravicah razširjanja in zanikanje jamstva; vsa obvestila, ki se nanašajo na to licenco in odsotnost vsakršnega jamstva pustite nedotaknjena; in daste vsem drugim prejemnikom programa poleg programa še izvod te licence. +Za fizično dejanje prenosa kopije lahko zaračunavate in po vaši presoji lahko ponudite garancijsko zaščito v zameno za plačilo. + +2. +Spreminjati smete vaš izvod ali izvode programa ali katerikoli njegov del, in tako narediti delo, ki temelji na programu, ter razmnoževati in razširjati takšne spremembe ali dela pod pogoji zgornjega razdelka 1, če zadostite tudi vsem naslednjim pogojem: + +a. +Zagotoviti morate, da spremenjene datoteke nosijo vidna obvestila o tem, da ste jih spremenili in datum vsake spremembe. + +b. +Zagotoviti morate, da je vsako delo, ki ga razširjate ali izdajate in ki v celoti ali deloma vsebuje program ali katerikoli njegov del ali pa je iz njega izpeljano, licencirano pod pogoji te licence kot celota brez plačila katerikoli tretji osebi. + +c. +Če spremenjeni program ob zagonu navadno bere ukaze interaktivno, morate zagotoviti, da se ob najbolj običajnem zagonu za takšno interaktivno uporabo izpiše ali prikaže najava, ki vključuje primerno sporočilo o pravicah razširjanja in sporočilo, da jamstvo ni zagotovljeno (ali pa sporočilo, da ponujate jamstvo) in da lahko uporabniki razširjajo program pod temi pogoji, in pove uporabniku, kako pogledati izvod te licence. (Izjema: če je sam program interaktiven, a navadno ne izpiše takšne najave, tudi za vaše delo, ki temelji na programu, ni nujno, da jo.) +Te zahteve se nanašajo na spremenjeno delo kot celoto. Če kosi tega dela, ki jih je lahko prepoznati, niso izpeljani iz programa in se jih lahko ima za neodvisna in ločena dela sama po sebi, potem ta licenca in njeni pogoji ne veljajo zanje, kadar jih razširjate ločeno. Vendar, kadar te iste kose razširjate kot del celote, ki je delo, ki temelji na programu, mora biti razširjanje celote izvedeno pod pogoji te licence, katere dovoljenja za druge licence se razširjajo na vso celoto in torej na vsak njen del, ne glede na to, kdo ga je napisal. + +Torej, namen tega razdelka ni, da bi zanikal ali spodbijal vaše pravice do dela, ki ste ga v celoti napisali sami; namesto tega je namen razširiti pravico do nadzora razširjanja na izpeljana ali zbrana dela, ki temeljijo na programu. + +Poleg tega, če gre za zgolj kopičenje drugega dela, ki ne temelji na programu, s programom (ali z delom, ki temelji na programu) na mediju za shranjevanje ali distribucijskem mediju, se licenca na to drugo delo ne nanaša. + +3. +Program (ali delo, ki temelji na njem, pod razdelkom 2) lahko razmnožujete in razširjate v objektni kodi ali izvedljivi obliki pod pogoji zgornjih razdelkov 1 in 2, če izpolnite tudi kaj od tega: + +a. +Opremite ga s popolno in ustrezno izvorno kodo v strojno berljivi obliki, ki mora biti razširjana pod pogoji zgornjih razdelkov 1 in 2 na mediju, ki se navadno uporablja za izmenjavo programja; ali, + +b. +Opremite ga z napisano ponudbo, veljavno vsaj tri leta, da boste katerikoli tretji osebi, za plačilo, ki ne bo presegalo vaših stroškov fizičnega izvajanja izvorne distribucije, dali popoln izvod ustrezne izvorne kode v strojno berljivi obliki, ki bo razširjana pod pogoji zgornjih razdelkov 1 in 2 na mediju, ki se običajno uporablja za izmenjavo programja; ali, + +c. +Opremite ga z informacijo, ki ste jo dobili vi, kot ponudbo distribucije ustrezne izvorne kode. (Ta alternativa je dovoljena le za nekomercialne distribucije in le, če ste dobili program v obliki izvorne kode ali izvedljivi obliki s takšno ponudbo, glede na podrazdelek b, zgoraj.) +Izvorna koda pri delih pomeni obliko dela, najprimernejšo za izdelavo sprememb. Pri izvedljivem delu pomeni izvorna koda vso izvorno kodo za vse module, ki jih vsebuje, poleg tega pa še morebitne datoteke z definicijami vmesnika, povezane s tem delom in skripte, uporabljane za nadzor prevajanja in namestitev izvedljive datoteke. Vendar - kot posebna izjema - ni nujno, da razširjana izvorna koda vključuje vse, kar se navadno razširja (v izvorni ali binarni obliki) z večjimi komponentami (prevajalnik, jedro, in tako naprej) operacijskega sistema, na katerem teče izvedljiva datoteka, razen če ta komponenta spremlja izvedljivo datoteko. + +Če se razširjanje izvedljive datoteke ali objektne kode izvede s ponujenim dostopom za prepisovanje z za to namenjenega mesta, potem ponujanje ekvivalentnega dostopa za razmnoževanje izvorne kode z istega mesta šteje kot razširjanje izvorne kode, čeprav tretje osebe niso prisiljene razmnoževati izvorne kode poleg objektne kode. + +4. +Ne smete razmnoževati, spreminjati, podlicencirati ali razširjati programa drugače, kot to izrecno določa pričujoča licenca. Vsak poskus siceršnjega kopiranja, spreminjanja, podlicenciranja ali razširjanja programa je ničen in bo samodejno prekinil vaše pravice pod to licenco. Vendar pa se osebam, ki so svoj izvod ali pravice dobile od vas pod to licenco, licenca ne prekine, dokler se ji popolnoma podrejajo. + +5. +Ni vam treba sprejeti te licence, saj je niste podpisali. Vendar vam razen nje nič ne dovoljuje spreminjanja ali razširjanja programa ali iz njega izpeljanih del. Če ne sprejmete te licence, ta dejanja prepoveduje zakon. Torej, s spremembo ali razširjanjem programa (ali kateregakoli dela, ki temelji na programu), pokažete svoje strinjanje s to licenco in z vsemi njenimi določitvami in pogoji za razmnoževanje, razširjanje ali spreminjanje programa ali del, ki temeljijo na njem. + +6. +Vsakič, ko razširjate program (ali katerokoli delo, ki temelji na programu), prejemnik samodejno prejme licenco od izvornega izdajatelja licence (angl. original licensor) za razmnoževanje, razširjanje ali spreminjanje programa glede na ta določila in pogoje. Ne smete vsiljevati nobenih nadaljnjih omejitev izvajanja prejemnikovih pravic, podeljenih tukaj. Niste odgovorni za vsiljevanje strinjanja tretjih oseb s to licenco. + +7. +Če so vam, kot posledica presoje sodišča ali suma kršitve patenta ali zaradi kateregakoli drugega razloga (ne omejenega zgolj na patentna vprašanja), vsiljeni pogoji (bodisi z odlokom sodišča, sporazumom ali drugače), ki nasprotujejo pogojem te licence, vas ne odvezujejo pogojev te licence. Če programa ne morete razširjati tako, da hkrati zadostite svojim obvezam pod to licenco in katerimkoli drugim pristojnim obvezam, potem posledično sploh ne smete razširjati programa. Na primer, če patentna licenca ne dovoli razširjanja programa brez plačevanja avtorskega honorarja vseh, ki prejmejo kopije neposredno ali posredno od vas, potem je edina možna pot, da zadostite temu pogoju in tej licenci ta, da se v celoti vzdržite razširjanja programa. +Če se za katerikoli del tega razdelka ugotovi, da je neveljaven ali da se ga ne da izvajati pod kateremkoli določenim pogojem, je mišljeno, da velja usmeritev tega razdelka (angl. balance of the section) in razdelek kot celota velja v drugih primerih. + +Namen tega razdelka ni, da bi vas napeljeval h kršitvi patentov ali drugih trditev lastništva pravic ali izpodbijal veljavnost katerihkoli takšnih trditev; edini namen tega razdelka je ščitenje integritete sistema distribucije prostega programja, ki je izveden s prakso javnih licenc. Mnogi ljudje so radodarno prispevali k širokemu naboru programja, razširjanega skozi ta sistem, v upanju na njegovo dosledno izvajanje; od avtorja/dajalca je odvisno, če je pripravljen razširjati programje skozi katerikoli drug sistem, in izdajatelj licence ne more vsiljevati te izbire. + +Ta razdelek namerava temeljito pojasniti, kaj so predvidene posledice nadaljevanja licence. + +8. +Če sta razširjanje in/ali uporaba programa omejena v določenih državah, bodisi zaradi patentov ali vmesnikov s posebno pravico razširjanja (angl. copyrighted interfaces), lahko izvorni lastnik ali lastnica pravic razširjanja, ki postavlja program pod to licenco, doda eksplicitno zemljepisno omejitev razširjanja, ki izključuje te države, tako da je razširjanje dovoljeno le v in med državami, ki niso na tak način izključene. V takem primeru ta licenca vključuje omejitve, kot da so napisane v telesu te licence. + +9. +Ustanova Free Software Foundation lahko od časa do časa izdaja preurejene in/ali nove različice Splošne javne licence (angl. General Public License). Nove različice bodo pisane v duhu trenutne različice, vendar se lahko razlikujejo v podrobnostih, ki bodo obdelovale nove težave ali poglede. +Vsaki različici je prirejena razločevalna številka različice. Če program določa številko različice te licence, ki se nanaša na njo in „na katerekoli poznejše različice“, imate izbiro upoštevanja pogojev in določil bodisi te različice ali katerekoli poznejše različice, ki jo je izdala ustanova Free Software Foundation. Če program ne določa številke različice te licence, lahko izberete katerokoli različico, ki jo je kdajkoli izdala ustanova Free Software Foundation. + +10. +Če želite vključiti dele programa v druge proste programe, katerih pogoji razširjanja so drugačni, pišite avtorju in ga prosite za dovoljenje. Za programje, katerega pravice razširjanja ima Free Software Foundation, pišite na Free Software Foundation; včasih naredimo izjemo pri tem. Našo odločitev bosta vodila dva cilja: ohranitev prostega statusa vseh izvedenih del iz našega prostega programja in spodbujanje razdeljevanja in ponovne uporabe programja na splošno. + +BREZ JAMSTVA + +11. +KER JE PROGRAM LICENCIRAN KOT BREZPLAČEN, NI NOBENEGA JAMSTVA ZA PROGRAM DO MEJE, KI JO DOLOČA PRISTOJNI ZAKON. RAZEN, ČE NI DRUGAČE NAPISANO, IMETNIKI PRAVIC RAZŠIRJANJA IN/ALI DRUGE OSEBE PONUJAJO PROGRAM „TAK, KOT JE“, BREZ ZAGOTOVILA KAKRŠNEKOLI VRSTE, NEPOSREDNEGA ALI POSREDNEGA, KAR VKLJUČUJE, A NI OMEJENO NA POSREDNA JAMSTVA CENOVNE VREDNOSTI IN PRIMERNOSTI ZA DOLOČENO UPORABO. CELOTNO TVEGANJE GLEDE KAKOVOSTI IN DELOVANJA PROGRAMA PREVZAMETE SAMI. ČE SE PROGRAM IZKAŽE ZA OKVARJENEGA, SAMI NOSITE STROŠKE VSEH POTREBNIH STORITEV, POPRAVIL ALI POPRAVKOV. + +12. +V NOBENEM PRIMERU, RAZEN ČE TAKO PRAVI VELJAVNI ZAKON ALI JE PISNO DOGOVORJENO, NE BO LASTNIK PRAVIC RAZŠIRJANJA ALI KATERAKOLI DRUGA OSEBA, KI LAHKO SPREMENI IN/ALI PONOVNO RAZŠIRJA PROGRAM, KOT JE DOVOLJENO ZGORAJ, PREVZEL ODGOVORNOSTI ZARADI ŠKODE, NAJSI GRE ZA SPLOŠNO, POSEBNO, NENAMERNO ŠKODO ALI ŠKODO, IZHAJAJOČO IZ UPORABE ALI NEZMOŽNOSTI UPORABE PROGRAMA (VKLJUČNO Z, A NE OMEJENO NA, IZGUBO PODATKOV ALI NENATANČNO OBDELAVO PODATKOV ALI IZGUBO, POVZROČENO VAM ALI TRETJIM OSEBAM ALI NEZMOŽNOST PROGRAMA, DA BI DELOVAL S KAKIM DRUGIM PROGRAMOM), ČETUDI JE BIL TAK LASTNIK ALI DRUGA OSEBA OBVEŠČEN O MOŽNOSTI NASTANKA TAKŠNE ŠKODE. + +KONEC DOLOČB IN POGOJEV - Involved - + + OSC Bridge Version + Različica OSC Bridge - Contributors ordered by number of commits: - + + Plugin Version + Različica vtičnika - Copyright © %1 - Avtorske pravice © %1 + + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> + <br>Različica %1<br>Carla je polno zmogljiv gostitelj zvočnih vtičnikov.<br><br>Avtorstvo (C) 2011-2019 falkTX<br> - <html><head/><body><p><a href="https://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">https://lmms.io</span></a></p></body></html> - + + + (Engine not running) + (pogon ni zagnan) + + + + Everything! (Including LRDF) + Vse (vključno z LRDF) + + + + Everything! (Including CustomData/Chunks) + Vse! (vključno z lastnimi podatki/kosi) + + + + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + O programu 110&#37; celota (z uporabo lastnih razširitev)<br/>Implementirane funkcije/razširitve:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + + + + + + Using Juce host + Uporaba Juce gostitelja + + + + About 85% complete (missing vst bank/presets and some minor stuff) + Približno 85% končano (manjkajo vst tabele/predloge in nekaj manjših zadev) - AmplifierControlDialog + CarlaHostW - VOL - GLS + + MainWindow + GlavnoOkno - Volume: - Glasnost: + + Rack + Regal - PAN - PAN + + Patchbay + Patchbay - Panning: - - - - LEFT - LEVO - - - Left gain: - Leva glasnost - - - RIGHT - DESNO + + Logs + Dnevniki - Right gain: - Desna glasnost + + Loading... + Nalagam... - - - AmplifierControls - Volume - Glasnost - - - Panning + + Save - Left gain - Leva glasnost - - - Right gain - Desan glasnost - - - - AudioAlsaSetupWidget - - DEVICE - NAPRAVA - - - CHANNELS - KANALI - - - - AudioFileProcessorView - - Open other sample + + Clear - 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. + + Ctrl+L - Reverse sample + + Auto-Scroll - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - + + Buffer Size: + Velikost medpomnilnika: - Amplify: - + + Sample Rate: + Frekvenca vzorčenja: - 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!) - + + ? Xruns + ? Xruns - Startpoint: - + + DSP Load: %p% + DSP obremenitev: %p% - Endpoint: - + + &File + &Datoteka - Continue sample playback across notes - + + &Engine + &Pogon - 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) - + + &Plugin + &Vtičnik - Disable loop - + + Macros (all plugins) + Makroji (ali vtičniki) - 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. - - - - 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. - - - - Loopback point: - - - - With this knob you can set the point where the loop starts. - - - - - AudioFileProcessorWaveView - - Sample length: - - - - - AudioJack - - JACK client restarted - + + &Canvas + &Platno - 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 - KANALI - - - - AudioOss::setupWidget - - DEVICE - Naprava - - - CHANNELS - KANALI - - - - AudioPortAudio::setupWidget - - BACKEND - - - - DEVICE - Naprava - - - - AudioPulseAudio::setupWidget - - DEVICE - Naprava - - - CHANNELS - KANALI - - - - AudioSdl::setupWidget - - DEVICE - Naprava - - - - AudioSndio::setupWidget - - DEVICE - Naprava - - - CHANNELS - KANALI - - - - AudioSoundIo::setupWidget - - BACKEND - - - - DEVICE - Naprava - - - - AutomatableModel - - &Reset (%1%2) - - - - &Copy value (%1%2) - - - - &Paste value (%1%2) - - - - 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 - - - - - AutomationEditor - - Please open an automation pattern with the context menu of a control! - - - - Values copied - - - - All selected values were copied to the clipboard. - - - - - AutomationEditorWindow - - Play/pause current pattern (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. - + + Zoom + Povečava - Tension: - - - - Automation Editor - no pattern - - - - Automation Editor - %1 - - - - Edit actions - - - - Interpolation controls - - - - Timeline controls - - - - Zoom controls - - - - Quantization controls - - - - Model is already connected to this pattern. - - - - - AutomationPattern - - Drag a control while pressing <%1> - - - - - AutomationPatternView - - double-click to open this pattern in automation editor - - - - 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. - - - - - AutomationTrack - - Automation track - - - - - BBEditor - - 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 sample-track - - - - - BBTCOView - - Open in Beat+Bassline-Editor - - - - Reset name - - - - Change name - - - - Change color - - - - Reset color to default - - - - - BBTrack - - Beat/Bassline %1 - - - - Clone of %1 - - - - - BassBoosterControlDialog - - FREQ - - - - Frequency: - - - - GAIN - - - - Gain: - - - - RATIO - - - - Ratio: - - - - - BassBoosterControls - - Frequency - Pogostost - - - Gain - - - - Ratio - razmerje - - - - BitcrushControlDialog - - IN - - - - OUT - - - - GAIN - - - - Input Gain: - - - - NOIS - - - - Input Noise: - - - - Output Gain: - - - - CLIP - - - - Output Clip: - - - - Rate - - - - Rate Enabled - - - - Enable samplerate-crushing - - - - Depth - - - - Depth Enabled - - - - Enable bitdepth-crushing - - - - Sample rate: - - - - STD - - - - Stereo difference: - - - - Levels - - - - Levels: - + + &Settings + &Nastavitve - - - CaptionMenu + &Help - - - - Help (not available) - - - - - CarlaInstrumentView - - Show GUI - - - - Click here to show or hide the graphical user interface (GUI) of Carla. - - - - - Controller - - Controller %1 - - - - - ControllerConnectionDialog - - Connection Settings - - - - MIDI CONTROLLER - - - - Input channel - - - - CHANNEL - - - - Input controller - - - - CONTROLLER - - - - Auto Detect - - - - MIDI-devices to receive MIDI-events from - - - - USER CONTROLLER - - - - MAPPING FUNCTION - - - - OK - V redu - - - Cancel - Preklic - - - LMMS - LMMS - - - Cycle Detected. - - - - - ControllerRackView - - Controller Rack - - - - Add - - - - Confirm Delete - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Naj res izbrišem? Obstaja(-jo) povezava(-e) v zvezi s tem krmilnikom. Razveljavitve ni. - - - - ControllerView - - Controls - - - - 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 controller - - - - Re&name this controller - - - - LFO - - - - - CrossoverEQControlDialog - - Band 1/2 Crossover: - - - - Band 2/3 Crossover: - + &Pomoč - Band 3/4 Crossover: + + Tool Bar - Band 1 Gain: - - - - Band 2 Gain: - - - - Band 3 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 - - Lfo Amt - + + Disk + Disk - Delay Time - + + + Home + Domov - Feedback Amount - + + Transport + Transport - Lfo - + + Playback Controls + Kontrole predvajanja - Out Gain - - - - Gain - - - - DELAY - - - - FDBK - - - - RATE - + + Time Information + Podatki o času - AMNT - - - - - DualFilterControlDialog - - Filter 1 enabled - - - - Filter 2 enabled - - - - Click to enable/disable Filter 1 - - - - Click to enable/disable Filter 2 - - - - FREQ - - - - Cutoff frequency - - - - RESO - + + Frame: + Okvir: - Resonance - - - - GAIN - - - - Gain - - - - MIX - - - - Mix - - - - - DualFilterControls - - Filter 1 enabled - - - - Filter 1 type - - - - Cutoff 1 frequency - - - - Q/Resonance 1 - - - - Gain 1 - - - - Mix - - - - Filter 2 enabled - - - - Filter 2 type - - - - Cutoff 2 frequency - - - - Q/Resonance 2 - - - - Gain 2 - - - - LowPass - - - - HiPass - - - - BandPass csg - - - - BandPass czpg - - - - Notch - - - - Allpass - - - - Moog - - - - 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 - - - - SV LowPass - - - - SV BandPass - - - - SV HighPass - - - - SV Notch - - - - Fast Formant - - - - Tripole - - - - - Editor - - Play (Space) - - - - Stop (Space) - - - - Record - - - - Record while playing - - - - Transport controls - - - - - Effect - - Effect enabled - - - - Wet/Dry mix - Mokro/Suho - - - Gate - - - - Decay - - - - - EffectChain - - Effects enabled - - - - - EffectRackView - - EFFECTS CHAIN - - - - Add effect - - - - - EffectSelectDialog - - Add effect - - - - Name - Ime - - - Type - - - - Description - - - - Author - - - - - EffectView - - 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 - + + 000'000'000 + 000'000'000 + Time: + Čas: + + + + 00:00:00 + 00:00:00 + + + + BBT: + BBT: + + + + 000|00|0000 + 000|00|0000 + + + + Settings + Nastavitve + + + + BPM + BPM + + + + Use JACK Transport + Uporabi JACK Transport + + + + Use Ableton Link + Uporabi Ableton Link + + + + &New + &Novo + + + + Ctrl+N + Ctrl+N + + + + &Open... + &Odpri... + + + + + Open... + Odpri... + + + + Ctrl+O + Ctrl+O + + + + &Save + &Shrani + + + + Ctrl+S + Ctrl+S + + + + Save &As... + Shr%Ani kot... + + + + + Save As... + Shrani kot... + + + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Quit + Izhod + + + + Ctrl+Q + Ctrl+Q + + + + &Start + &Zaženi + + + + F5 + F5 + + + + St&op + &Ustavi + + + + F6 + F6 + + + + &Add Plugin... + Dod&aj vtičnik... + + + + Ctrl+A + Ctrl+A + + + + &Remove All + Odst&rani vse + + + + Enable + Vklopi + + + + Disable + Izklopi + + + + 0% Wet (Bypass) + 0% obogateno (obvod) + + + + 100% Wet + 100% obogateno + + + + 0% Volume (Mute) + 0% glasnost (tiho) + + + + 100% Volume + 100% glasnost + + + + Center Balance + Središčno ravnovesje + + + + &Play + &Predvajaj + + + + Ctrl+Shift+P + Ctrl+Shift+P + + + + &Stop + U&stavi + + + + Ctrl+Shift+X + Ctrl+Shift+X + + + + &Backwards + &Nazaj + + + + Ctrl+Shift+B + Ctrl+Shift+B + + + + &Forwards + Na&prej + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + &Razporedi + + + + Ctrl+G + Ctrl+G + + + + + &Refresh + &Osveži + + + + Ctrl+R + Ctrl+R + + + + Save &Image... + Shrani sl&iko... + + + + Auto-Fit + Samodejno prilagajanje + + + + Zoom In + Približaj + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + Oddalji + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + 100% velikost + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + Prikaži &orodno vrstico + + + + &Configure Carla + &Carla nastavitve + + + + &About + O progr&amu + + + + About &JUCE + O &JUCE + + + + About &Qt + O &Qt + + + + Show Canvas &Meters + Prikaži &merila platna + + + + Show Canvas &Keyboard + Prikaži tip&kovnico platna + + + + Show Internal + Prikaži notranje + + + + Show External + Prikaži zunanje + + + + Show Time Panel + Prikaži časovni pano + + + + Show &Side Panel + Prikaži &stranski pano + + + + Ctrl+P - 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. + + &Connect... + Po&veži... + + + + Compact Slots + Skrči reže + + + + Expand Slots + Razširi reže + + + + Perform secret 1 + Izvedi skrivnost 1 + + + + Perform secret 2 + Izvedi skrivnost 2 + + + + Perform secret 3 + Izvedi skrivnost 3 + + + + Perform secret 4 + Izvedi skrivnost 4 + + + + Perform secret 5 + Izvedi skrivnost 5 + + + + Add &JACK Application... + Dodaj &JACK aplikacijo + + + + &Configure driver... + &Nastavi gonilnik... + + + + Panic + Panika + + + + Open custom driver panel... + Odpri prilagojeni pano gonilnika... + + + + Save Image... (2x zoom) - GATE + + Save Image... (4x zoom) - Gate: + + Copy as Image to Clipboard - 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 + + Ctrl+Shift+C - EnvelopeAndLfoParameters + CarlaHostWindow - Predelay - + + Export as... + Izvozi kot... - Attack - + + + + + Error + Napaka - Hold - + + Failed to load project + Napaka pri nalaganju projekta - Decay - + + Failed to save project + Napaka pri shranjevanju projekta - Sustain - + + Quit + Končaj - Release - Prepustitev + + Are you sure you want to quit Carla? + Želite res zapreti Carlo? - Modulation - + + Could not connect to Audio backend '%1', possible reasons: +%2 + Povezave z zvočnim zaledjem '%1' ni bilo mogoče vzpostaviti. Možni razlogi: +%2 - LFO Predelay - + + Could not connect to Audio backend '%1' + Povezave z zvočnim zaledjem '%1' ni bilo mogoče vzpostaviti. - LFO Attack - + + Warning + Opozorilo - LFO speed - - - - LFO Modulation - - - - LFO Wave Shape - - - - Freq x 100 - - - - Modulate Env-Amount - + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + Nekateri vtičniki so še naloženi in jih je potrebno odstraniti, da bi zaustavili pogon. +Želite to storiti? - EnvelopeAndLfoView + CarlaSettingsW - DEL + + Settings + Nastavitve + + + + main + glavno + + + + canvas + platno + + + + engine + pogon + + + + osc + osc + + + + file-paths + poti-datotek + + + + plugin-paths + poti-vtičnikov + + + + wine + wine + + + + experimental + eksperimentalno + + + + Widget + Gradnik + + + + + Main + Glavno + + + + + Canvas + Platno + + + + + Engine + Pogon + + + + File Paths + Poti do datotek + + + + Plugin Paths + Poti do vtičnikov + + + + Wine + Wine + + + + + Experimental + Eksperimentalno + + + + <b>Main</b> + <b>Glavno</b> + + + + Paths + Poti + + + + Default project folder: + Priveta projektna mapa: + + + + Interface + Vmesnik + + + + Use "Classic" as default rack skin - Predelay: + + Interface refresh interval: + Interval osveževanja vmesnika: + + + + + ms + ms + + + + Show console output in Logs tab (needs engine restart) + Prikaži izpis konzole v zavikhu Dnevniki (zahteva ponovni zagon pogona) + + + + Show a confirmation dialog before quitting + Pred zapiranjem prikaži potrditveno okno + + + + + Theme + Tema + + + + Use Carla "PRO" theme (needs restart) + Uporabi temo Carla "PRO" (zahteva ponovni zagon) + + + + Color scheme: + Barvna shema: + + + + Black + Črna + + + + System + Sistemska + + + + Enable experimental features + Vklopi eksperimentalne funkcije + + + + <b>Canvas</b> + <b>Platno</b> + + + + Bezier Lines + Bezierjeve krivulje + + + + Theme: + Tema: + + + + Size: + Velikost + + + + 775x600 + 775x600 + + + + 1550x1200 + 1550x1200 + + + + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. + + Options + Možnosti + + + + Auto-hide groups with no ports + Samodejuno skrij skupine brez vrat + + + + Auto-select items on hover + Samodejno izberi predmete ob prehodu + + + + Basic eye-candy (group shadows) + Osnovna paša za oči (skupinske sence) + + + + Render Hints + Namigi za izrisovanje + + + + Anti-Aliasing + Glajenje robov + + + + Full canvas repaints (slower, but prevents drawing issues) + Izris celotnega okvirja (počasneje, a prepreči težave pri izrisovanju) + + + + <b>Engine</b> + <b>Pogon</b> + + + + + Core + Jedro + + + + Single Client + En odjemalec + + + + Multiple Clients + Več odjemalcev + + + + + Continuous Rack + Neskončni regal + + + + + Patchbay + Patchbay + + + + Audio driver: + Gonilnik za zvok: + + + + Process mode: + Način obdelovanja: + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + Največje število parametrov, ki so dovoljeni v dialogu 'Uredi' + + + + Max Parameters: + Maks. parametrov: + + + + ... + ... + + + + Reset Xrun counter after project load + Ko je projekt naložen, ponastavi Xrun števec + + + + Plugin UIs + Vmesniki vtičnikov + + + + + How much time to wait for OSC GUIs to ping back the host + Koliko časa naj se čaka na povratni ping OSC GUI gostitelju + + + + UI Bridge Timeout: + Časovna omejitev za mos uporabniškega vmesnika: + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + Kadar je možno, uporabite OSC-GUI premostitve in na ta način ločite vmesnik od DSP kode + + + + Use UI bridges instead of direct handling when possible + Uporabite mostove uporabniškega vmesnika namesto nesporedne rabe, kadar je to mogoče + + + + Make plugin UIs always-on-top + Vmesniki vtičnikov naj bodo vedno na vrhu + + + + Make plugin UIs appear on top of Carla (needs restart) + Vmesniki vtičnikov naj se vedno pojavijo nad Carlo (zahteva ponoven zagon) + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + OPOMBA: Mostov grafičnih vmesnikov vtičnikov Carla v macOS ne more urejati + + + + + Restart the engine to load the new settings + Ponovno zaženite pogon, da naložite nove nastavitve + + + + <b>OSC</b> + <b>OSC</b> + + + + Enable OSC + Vklopi OSC + + + + Enable TCP port + Omogoči TCP vrata + + + + + Use specific port: + Uporabi določena vrata + + + + Overridden by CARLA_OSC_TCP_PORT env var + Prepisano s spremenljivko okolja CARLA_OSC_TCP_PORT + + + + + Use randomly assigned port + Uporabi naključno določena vrata + + + + Enable UDP port + Omogoči UDP vrata + + + + Overridden by CARLA_OSC_UDP_PORT env var + Prepisano s spremenljivko okolja CARLA_OSC_UDP_PORT + + + + DSSI UIs require OSC UDP port enabled + DSSI vmesniki morajo imeti omogočena OSC UDP vrata + + + + <b>File Paths</b> + <b>Poti do datotek</b> + + + + Audio + Zvok + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + Uporabljeno za vtičnik "audiofile" + + + + Used for the "midifile" plugin + Uporabljeno za vtičnik "midifile" + + + + + Add... + Dodaj... + + + + + Remove + Odstrani + + + + + Change... + premeni... + + + + <b>Plugin Paths</b> + <b>Poti do vtičnikov</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + JSFX - ATT + + CLAP - Attack: + + Restart Carla to find new plugins + Ponovno zaženi Carlo, da poišče nove vtičnike + + + + <b>Wine</b> + <b>Wine</b> + + + + Executable + Izvedljivo + + + + Path to 'wine' binary: + Pot do 'wine' sistemskih: + + + + Prefix + Predpona + + + + Auto-detect Wine prefix based on plugin filename + Samodejno zaznaj Wine predpono glede na ime datoteke vtičnika + + + + Fallback: + Povratek različice: + + + + Note: WINEPREFIX env var is preferred over this fallback + Opomba: Boljša je raba spremenljivke okolja WINEPREFIX, kot ta povratek različice + + + + Realtime Priority + Prednost v realnem času + + + + Base priority: + Osnovna prednost: + + + + WineServer priority: + Prednost WinServer strežnika: + + + + These options are not available for Carla as plugin + Te možnosti niso na voljo, kadar je Carla vtičnik + + + + <b>Experimental</b> + <b>Eksperimentalno</b> + + + + Experimental options! Likely to be unstable! + Eksperimentalne možnosti! Lahko so nestabilne! + + + + Enable plugin bridges + Omogoči premostitve vtičnikov + + + + Enable Wine bridges + Omogoči Wine mostove + + + + Enable jack applications + Omogoči jack aplikacije + + + + Export single plugins to LV2 + Izvozi posamezne vtičnike v LV2 + + + + Use system/desktop-theme icons (needs restart) - 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. + + Load Carla backend in global namespace (NOT RECOMMENDED) + Naloži zaledje Carle v globalnem imenskem prostoru (NI PRIPOROČENO) + + + + Fancy eye-candy (fade-in/out groups, glow connections) + Všečna paša za oči (skupine za pojemanje/večanje, svetleče povezave) + + + + Use OpenGL for rendering (needs restart) + Za izrisovanje uporabi OpenGL (zahteva ponoven zagon) + + + + High Quality Anti-Aliasing (OpenGL only) + Visoko-kakovostno glajenje robov (le OpenGL) + + + + Render Ardour-style "Inline Displays" + Izrisovanje "Vrstnih prikazovalnikov" v Ardour slogu + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + Prisili mono vtičnike v stereo, tako da sta naenkrat zagnani dve instanci. +Ta način za VST vtičnike ni na voljo. + + + + Force mono plugins as stereo + Prisili mono vitičnike v stereo + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. - HOLD + + Prevent unsafe calls from plugins (needs restart) - Hold: + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. - 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. - + + Run plugins in bridge mode when possible + Zaženi vtičnike z mostom, če je to mogoče - 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. - - - - 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. - - - - Click here for random wave. - + + + + + Add Path + Dodaj pot - EqControls + Dialog - Input gain - + + Carla Control - Connect + Carla Control - povezava - Output gain - + + Remote setup + Nastavitev oddaljenega dostopa - Low shelf gain - + + UDP Port: + UDP vrata: - Peak 1 gain - + + Remote host: + Oddaljeni gostitelj: - Peak 2 gain - + + TCP Port: + TCP vrata: - Peak 3 gain - + + Set value + Določi vrednost - Peak 4 gain - + + TextLabel + TekstovnaOznaka - 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 - + + Scale Points + Točke povečave - EqControlsDialog + DriverSettingsW - HP - + + Driver Settings + Nastavitve gonilnika - Low Shelf - + + Device: + Naprava: - Peak 1 - + + Buffer size: + Velikost medpomnilnika: - Peak 2 - + + Sample rate: + Frekvenca vzorčenja - Peak 3 - + + Triple buffer + Trojni medpomnilnik - Peak 4 - + + Show Driver Control Panel + Prikaži upravljalno ploščo gonilnika - High Shelf - - - - LP - - - - In Gain - - - - Gain - - - - Out Gain - - - - Bandwidth: - - - - Resonance : - - - - Frequency: - - - - lp grp - - - - hp grp - - - - Octave - - - - - EqHandle - - Reso: - - - - BW: - - - - Freq: - + + Restart the engine to load the new settings + Ponovno zaženite pogon, da naložite nove nastavitve ExportProjectDialog + Export project Izvozi projekt - Output - + + Export as loop (remove extra bar) + Izvozi kot zanko (odstrani odvečni takt) + + Export between loop markers + Izvoz med dvema oznakama + + + + Render Looped Section: + Oblikuj ponavljajoči se razdelek: + + + + time(s) + krat + + + + File format settings + Nastavitve formata datoteke + + + File format: - + Format datoteke: - Samplerate: - + + Sampling rate: + Frekvenca vzorčenja: + 44100 Hz - + 44100 Hz + 48000 Hz - + 48000 Hz + 88200 Hz - + 88200 Hz + 96000 Hz - + 96000 Hz + 192000 Hz - + 192000 Hz + + Bit depth: + Bitna globina + + + + 16 Bit integer + 16 bitni integer + + + + 24 Bit integer + 24 bitni integer + + + + 32 Bit float + 32 bitni float + + + + Stereo mode: + Stero način: + + + + Mono + Mono + + + + Stereo + Stereo + + + + Joint stereo + Združeni stereo + + + + Compression level: + Stopnja stiskanja: + + + Bitrate: - + Bitna hitrost: + 64 KBit/s - + 64 kbit/s + 128 KBit/s - + 128 kbit/s + 160 KBit/s - + 160 kbit/s + 192 KBit/s - + 192 kbit/s + 256 KBit/s - + 256 kbit/s + 320 KBit/s - + 320 kbit/s - Depth: - - - - 16 Bit Integer - - - - 32 Bit Float - - - - Please note that not all of the parameters above apply for all file formats. - + + Use variable bitrate + Uporabi variabilno bitno hitrost + Quality settings - + Nastavitve kakovosti + Interpolation: - + Prepletanje: - Zero Order Hold - + + Zero order hold + Zadrževalnik ničtega reda (ZOH) - Sinc Fastest - + + Sinc worst (fastest) + Sinh. slabo (hitro) - Sinc Medium (recommended) - + + Sinc medium (recommended) + Sinh srednje (priporočeno) - Sinc Best (very slow!) - - - - Oversampling (use with care!): - - - - 1x (None) - - - - 2x - - - - 4x - - - - 8x - + + Sinc best (slowest) + Sinh odlično (počasi) + Start - + Zaženi + Cancel Preklic - - Export as loop (remove end silence) - - - - Export between loop markers - - - - Could not open file - - - - Export project to %1 - Izvozi projekt v %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! - - - - - Fader - - Please enter a new value between %1 and %2: - Prosim vpišite novo vrednost med %1 in %2: - - - - FileBrowser - - Browser - Brskalnik - - - - FileBrowserTreeWidget - - Send to active instrument-track - - - - Open in new instrument-track/B+B Editor - - - - 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 - - - - file - - - - - FlangerControls - - Delay Samples - - - - Lfo Frequency - - - - Seconds - - - - Regen - - - - Noise - - - - Invert - - - - - FlangerControlsDialog - - Delay Time: - - - - Feedback Amount: - - - - White Noise Amount: - - - - DELAY - - - - RATE - - - - Rate: - - - - AMNT - - - - Amount: - - - - FDBK - - - - NOISE - - - - Invert - - - - - 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 - - FX-Mixer - - - - FX Fader %1 - - - - Mute - Mute - - - Mute this FX channel - - - - Solo - Solist - - - 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) - - - - - GuiApplication - - Working directory - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - - - - Preparing UI - - - - Preparing song editor - Pripravljam Urejevalnik skladbe - - - Preparing mixer - - - - Preparing controller rack - - - - Preparing project notes - - - - Preparing beat/bassline editor - - - - Preparing piano roll - Pripravljam Klavirčrtovje - - - Preparing automation editor - - - - - InstrumentFunctionArpeggio - - Arpeggio - - - - Arpeggio type - - - - Arpeggio range - - - - Arpeggio time - - - - Arpeggio gate - - - - Arpeggio direction - - - - Arpeggio mode - - - - Up - - - - Down - - - - Up and down - - - - Random - - - - Free - - - - Sort - - - - Sync - - - - Down and up - - - - Skip rate - - - - Miss rate - - - - Cycle steps - - - - - 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: - - - - 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. - - - - 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. - - InstrumentFunctionNoteStacking + octave - + oktava + + Major - + durova + Majb5 - + H5-dur + minor - + molova + minb5 - + H5-mol + sus2 - + sus2 + sus4 - + sus4 + aug - + aug + augsus4 - + augsus4 + tri - + tri + 6 - + 6 + 6sus4 - + 6sus4 + 6add9 - + 6add9 + m6 - + mol6 + 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 - + dur7 + Maj7b5 - + dur7h5 + Maj7#5 - + dur7#5 + Maj7#11 - + dur7#11 + Maj7add13 - + dur7add13 + m7 - + mol7 + m7b5 - + mol7b5 + m7b9 - + mol7b9 + m7add11 - + mol7add11 + m7add13 - + mol7add13 + m-Maj7 - + mol-Maj7 + m-Maj7add11 - + mol-Maj7add11 + m-Maj7add13 - + mol-Maj7add13 + 9 - + 9 + 9sus4 - + 9sus4 + add9 - + add9 + 9#5 - + 9#5 + 9b5 - + 9b5 + 9#11 - + 9#11 + 9b13 - + 9b13 + Maj9 - + dur9 + Maj9sus4 - + dur9sus4 + Maj9#5 - + dur9#5 + Maj9#11 - + dur9#11 + m9 - + mol9 + madd9 - + mol-add9 + m9b5 - + mol9b5 + m9-Maj7 - + mol9-Maj7 + 11 - + 11 + 11b9 - + 11b9 + Maj11 - + dur11 + m11 - + mol11 + m-Maj11 - + mol-Maj11 + 13 - + 13 + 13#9 - + 13#9 + 13b9 - + 13b9 + 13b5b9 - + 13b5b9 + Maj13 - + dur13 + m13 - + mol13 + m-Maj13 - + mol-Maj13 + Harmonic minor - + Harmonična molova + Melodic minor - + Melodična molova + Whole tone - + Cel ton + Diminished - + zmanjšan + Major pentatonic - + Durova pentatonika + Minor pentatonic - + Molova pentatonika + Jap in sen - + japonska in sen + Major bebop - + Durova bepop + Dominant bebop - + Dominantna bepop + Blues - + Blues + Arabic - + Arabska + Enigmatic - + Enigmatična + Neopolitan - + Neopolitanska + Neopolitan minor - + Neopolitanska molova + Hungarian minor - + Madžarska molova + Dorian - + Dorijanska - Phrygolydian - + + Phrygian + Frigijska + Lydian - + Lidijanska + Mixolydian - + Miksolidijska + Aeolian - + Eolska + Locrian - - - - Chords - - - - Chord type - - - - Chord range - + Lokrijska + Minor - + Molovska + Chromatic - + Kromatična + Half-Whole Diminished - + Pol-cele znižano + 5 5 + Phrygian dominant - + Frigijska dominantna + Persian - - - - - 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 - + Perzijsko InstrumentSoundShaping + VOLUME - + GLASNOST + Volume - Obseg + Glasnost + CUTOFF - + ODREZ + Cutoff frequency - + Frekvenca rezanja + RESO - + RESO + Resonance + Resnonanca + + + + JackAppDialog + + + Add JACK Application - Envelopes/LFOs + + Note: Features not implemented yet are greyed out - Filter type + + Application - Q/Resonance + + Name: - LowPass + + Application: - HiPass + + From template - BandPass csg + + Custom - BandPass czpg + + Template: - Notch + + Command: - Allpass + + Setup - Moog + + Session Manager: - 2x LowPass + + None - RC LowPass 12dB + + Audio inputs: - RC BandPass 12dB + + MIDI inputs: - RC HighPass 12dB + + Audio outputs: - RC LowPass 24dB + + MIDI outputs: - RC BandPass 24dB + + Take control of main application window - RC HighPass 24dB + + Workarounds - Vocal Formant Filter + + Wait for external application start (Advanced, for Debug only) - 2x Moog + + Capture only the first X11 Window - SV LowPass + + Use previous client output buffer as input for the next client - SV BandPass + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index - SV HighPass + + Error here - SV Notch + + NSM applications cannot use abstract or absolute paths - Fast Formant + + NSM applications cannot use CLI arguments - Tripole + + You need to save the current Carla project before NSM can be used - InstrumentSoundShapingView + JuceAboutW - 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: - - - - Envelopes, LFOs and filters are not supported by the current instrument. - + + This program uses JUCE version %1. + Ta program uporablja JUCE različice %1 - InstrumentTrack + MidiPatternW - unnamed_track - + + MIDI Pattern + MIDI matrika - Volume - Obseg + + Time Signature: + Časovna oznaka: - Panning - + + + + 1/4 + 1/4 - Pitch - + + 2/4 + 2/4 - FX channel - + + 3/4 + 3/4 - Default preset - + + 4/4 + 4/4 - With this knob you can set the volume of the opened channel. - + + 5/4 + 5/4 - Base note - + + 6/4 + 6/4 - Pitch range - + + Measures: + Merila: - Master Pitch - + + + + 1 + 1 - - - InstrumentTrackView - Volume - Obseg + + 2 + 2 - Volume: - Glasnost: + + 3 + 3 - VOL - GLS + + 4 + 4 - Panning - + + 5 + 5 - Panning: - + + 6 + 6 - PAN - PAN + + 7 + 7 - MIDI - + + 8 + 8 - Input - + + 9 + 9 - Output - + + 10 + 10 - FX %1: %2 - + + 11 + 11 - - - InstrumentTrackWindow - GENERAL SETTINGS - + + 12 + 12 - Instrument volume - + + 13 + 13 - Volume: - Glasnost: + + 14 + 14 - VOL - GLS + + 15 + 15 - Panning - + + 16 + 16 - Panning: - + + Default Length: + Privzeta dolžina: - PAN - PAN + + + 1/16 + 1/16 - Pitch - + + + 1/15 + 1/15 - Pitch: - + + + 1/12 + 1/12 - cents - + + + 1/9 + 1/9 - PITCH - + + + 1/8 + 1/8 - FX channel - + + + 1/6 + 1/6 - ENV/LFO - + + + 1/3 + 1/3 - FUNC - + + + 1/2 + 1/2 - FX - + + Quantize: + Kvantizacija: - MIDI - - - - Save preset - Shrani glasbilce - - - 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 - Razno - - - Use these controls to view and edit the next/previous track in the song editor. - - - - SAVE - SHRANI - - - - Knob - - Set linear - - - - Set logarithmic - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - - - - Please enter a new value between %1 and %2: - Prosim vpišite novo vrednost med %1 in %2: - - - - LadspaControl - - Link channels - - - - - LadspaControlDialog - - Link Channels - - - - Channel - - - - - LadspaControlView - - Link channels - - - - Value: - - - - Sorry, no help available. - - - - - LadspaEffect - - Unknown LADSPA plugin %1 requested. - - - - - LcdSpinBox - - Please enter a new value between %1 and %2: - Prosim vpišite novo vrednost med %1 in %2: - - - - LeftRightNav - - Previous - - - - Next - - - - Previous (%1) - - - - Next (%1) - - - - - LfoController - - LFO Controller - - - - Base value - - - - Oscillator speed - - - - Oscillator amount - - - - Oscillator phase - - - - Oscillator waveform - - - - Frequency Multiplier - - - - - LfoControllerDialog - - LFO - - - - LFO Controller - - - - BASE - - - - Base amount: - - - - todo - - - - 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. - - - - 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. - - - - AMNT - - - - - LmmsCore - - Generating wavetables - - - - Initializing data structures - - - - Opening audio and midi devices - - - - Launching mixer threads - - - - - MainWindow - - 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 - &Novo - - - &Open... - &Odpri... - - - &Save - &Shrani - - - Save &As... - Shr%Ani kot... - - - Import... - Uvozi... - - - E&xport... - - - - &Quit - Izhod + + &File + %Datoteka + &Edit Ur&Edi - Settings - Nastavitve + + &Quit + Izhod - &Tools + + Esc - &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 - - - 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. - - - - 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 - 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 - - - - Untitled - - - - LMMS %1 - - - - Project not saved - Projekt ni shranjen - - - 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 - 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. - - - - Volume as dBFS - - - - Smooth scroll - - - - Enable note labels in piano roll - - - - Save project template - - - - - MeterDialog - - Meter Numerator - - - - Meter Denominator - - - - TIME SIG - - - - - MeterModel - - Numerator - - - - Denominator - - - - - 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. - - - - 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) - - - - - 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 - - - - - MidiSetupWidget - - DEVICE - Naprava - - - - 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. - - - - Volume - Obseg - - - 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 - Prepustitev - - - Slope - - - - Modulation amount - - - - - 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 - Poveljnik ladje - - - Vibrato - Vibrato - - - - NesInstrumentView - - Volume - Obseg - - - Coarse detune - - - - Envelope length - - - - Enable channel 1 - - - - Enable envelope 1 - - - - Enable envelope 1 loop - - - - Enable sweep 1 - - - - Sweep amount - - - - Sweep rate - - - - 12.5% Duty cycle - - - - 25% Duty cycle - - - - 50% Duty cycle - - - - 75% Duty cycle - - - - Enable channel 2 - + + &Insert Mode + Način vstavljanja - 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 - Vibrato - - - - OscillatorObject - - Osc %1 volume - - - - Osc %1 panning - - - - Osc %1 coarse detuning - + + F + F - Osc %1 fine detuning left - - - - Osc %1 fine detuning right - - - - Osc %1 phase-offset - - - - Osc %1 stereo phase-detuning - - - - Osc %1 wave shape - + + &Velocity Mode + Način &hitrosti - Modulation type %1 - + + D + D - Osc %1 waveform - + + Select All + Izberi vse - Osc %1 harmonic - + + A + A PatchesDialog + + Qsynth: Channel Preset - + QSynth: Predloga kanala + + Bank selector - + Izbirnik tabele + + Bank - + Tabela + + Program selector - + Izbirnik programa + + Patch - + Program + + Name Ime + + OK V redu + + Cancel Preklic - - PatmanView - - Open 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 - - Open in piano-roll - Odpri v Klavirčrtovju - - - 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 - - - - - 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: - - - - Release: - - - - AMNT - - - - MULT - - - - Amount Multiplicator: - - - - ATCK - - - - DCAY - - - - Treshold: - - - - TRSH - - - - - PeakControllerEffectControls - - Base value - - - - Modulation amount - - - - Mute output - - - - Attack - - - - Release - Prepustitev - - - Abs Value - - - - Amount Multiplicator - - - - Treshold - Treshold - - - - 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 - - - - Select all notes on this key - - - - - 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) - - - - 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 - - - - Timeline controls - - - - Zoom and note controls - - - - Piano-Roll - %1 - Klavirčrtovje - %1 - - - Piano-Roll - no pattern - Klavirčrtovje - ni šablone - - - Quantize - - - - - 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"! - - - PluginBrowser - Instrument browser + + no description + ni opisa + + + + A native amplifier plugin + Lastni vtičnik ojačevalca + + + + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + Prepsot vzorčevalnik z različnimi nastavitvami za rabo vzorcev (npr. bobnov) na instrumentalni stezi + + + + Boost your bass the fast and simple way + Poudarite bas na hiter in enostaven način + + + + Customizable wavetable synthesizer + Prilagodljiv sintetizator s tabelami valovnih oblik + + + + An oversampling bitcrusher + Prevzorčevalni lomilec bitov + + + + Carla Patchbay Instrument + Carla Patchbay Instrument + + + + Carla Rack Instrument + Carla regal instrumenti + + + + A dynamic range compressor. + Kompresor z dinamičnim razponom + + + + A 4-band Crossover Equalizer + 4 pasovni navzkrižni izravnalnik + + + + A native delay plugin + lastni vtičnik za zamik + + + + A Dual filter plugin + Dvojni filter vtičnik + + + + plugin for processing dynamics in a flexible way + vtičnik za procesiranje dinamike na fleksibilen način + + + + A native eq plugin + Lastni eq vtičnik + + + + A native flanger plugin + Lastni flanger vtičnik + + + + Emulation of GameBoy (TM) APU + Emulacija GameBoy (tm) APU + + + + Player for GIG files + Predvajalnik za GIG datoteke + + + + Filter for importing Hydrogen files into LMMS + Sito za uvažanje Hydrogen datotek v LMMS + + + + Versatile drum synthesizer + Vsestranski sintetizator bobnov + + + + List installed LADSPA plugins + Seznam nameščenih LADSPA vtičnikov + + + + plugin for using arbitrary LADSPA-effects inside LMMS. + vtičnik za rabo poljubnih LADSPA instrumentov v LMMS. + + + + Incomplete monophonic imitation TB-303 + Nepopolna monofonična imitacija tv303 + + + + plugin for using arbitrary LV2-effects inside LMMS. + vtičnik za rabo poljubnih LV2 učinkov v LMMS. + + + + plugin for using arbitrary LV2 instruments inside LMMS. + vtičnik za rabo poljubnih LV2 instrumentov v LMMS. + + + + Filter for exporting MIDI-files from LMMS + Sito za izvažanje MIDI datotek iz LMMS + + + + Filter for importing MIDI-files into LMMS + Sito za uvažanje MIDI datotek v LMMS + + + + Monstrous 3-oscillator synth with modulation matrix + Pošasten 3-oscilatorski sintetizator z modulacijsko matriko + + + + A multitap echo delay plugin + Vtičnik za multitap eho zamik + + + + A NES-like synthesizer + NES-u podoben sintetizator + + + + 2-operator FM Synth + Fm sintetizator z dvema operatorjema + + + + Additive Synthesizer for organ-like sounds + Aditivni sintetizator za orglasto zveneče zvoke + + + + GUS-compatible patch instrument + GUS-združljiv programski instrument + + + + Plugin for controlling knobs with sound peaks + Vtičnik za nadzor vrtljivih regulatorjev z vrhovi zvoka + + + + Reverb algorithm by Sean Costello + Algoritem odjeka je ustvaril Sean Costello + + + + Player for SoundFont files + Predvajalnik za SoundFont datoteke + + + + LMMS port of sfxr + LMMS vrata za sfxr + + + + Emulation of the MOS6581 and MOS8580 SID. +This chip was used in the Commodore 64 computer. + Emulacija za MOS6581 in MOS8580 SID. +Ta čipa sta bila uporabljane v računalniku Commodore 64. + + + + A graphical spectrum analyzer. + Grafični spektralni analizator. + + + + Plugin for enhancing stereo separation of a stereo input file + Vtičnik za poudarjanje ločenosti kanalov stereo vhodne datoteke + + + + Plugin for freely manipulating stereo output + Vtičnik za prosto manipulacijo stereo izhoda + + + + Tuneful things to bang on + Nastavljive zadeve za uporabo + + + + Three powerful oscillators you can modulate in several ways + Trije zmogljivi oscilatorji, ki jih lahko modulirate na številne načine + + + + A stereo field visualizer. + Vizualizacija stereo polja. + + + + VST-host for using VST(i)-plugins within LMMS + VST-gostitelj za rabo VST(i)-vtičnikov z LMMS + + + + Vibrating string modeler + Oblikovalec vibrirajočih strun + + + + plugin for using arbitrary VST effects inside LMMS. + vtičnik za rabo poljubnih VST učinkov v LMMS. + + + + 4-oscillator modulatable wavetable synth + 4-oscilatorski modulirajoči sintetizator s tabelami valovnih oblik + + + + plugin for waveshaping + vtičnik za oblikovanje valov + + + + Mathematical expression parser + Razčlenjevalnik matematičnih izrazov + + + + Embedded ZynAddSubFX + Vdelan ZynAddSubFX + + + + An all-pass filter allowing for extremely high orders. + Filter vseh pasov za ekstremno visoke rede + + + + Granular pitch shifter - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. - Instrument Plugins + + Basic Slicer + + + Tap to the beat + Tapkajte v ritmu + + + + PluginEdit + + + Plugin Editor + Urejevalnik vtičnikov + + + + Edit + Uredi + + + + Control + Kontrola + + + + MIDI Control Channel: + Kanal MIDI kontrola: + + + + N + N + + + + Output dry/wet (100%) + Izhod surovo/obogateno (100%) + + + + Output volume (100%) + Izhodna glasnost (100%) + + + + Balance Left (0%) + Ravnovesje levo (0%) + + + + + Balance Right (0%) + Ravnovesje desno (0%) + + + + Use Balance + Uporabi ravnovesje + + + + Use Panning + Uporabi panoramo + + + + Settings + Nastavitve + + + + Use Chunks + Uporabi kose + + + + Audio: + Zvok: + + + + Fixed-Size Buffer + Stalna velikost medpomnilnika + + + + Force Stereo (needs reload) + Prisili stereo (zahteva ponovni zagon) + + + + MIDI: + MIDI: + + + + Map Program Changes + Mapiraj spremembe programa + + + + Send Notes + + + + + Send Bank/Program Changes + Pošlji spremembe tabele/programa + + + + Send Control Changes + Pošlji sprembe kontrole + + + + Send Channel Pressure + Pošlji pritisk kanala + + + + Send Note Aftertouch + Pošlji po-dotik note + + + + Send Pitchbend + Pošlji pregib višine + + + + Send All Sound/Notes Off + Pošlji vse note/izklopi note + + + + +Plugin Name + + +Ime vtičnika + + + + + Program: + Program: + + + + MIDI Program: + MIDI Program: + + + + Save State + Shrani stanje + + + + Load State + Naloži stanje + + + + Information + Informacije + + + + Label/URI: + Oznaka/URI: + + + + Name: + Ime: + + + + Type: + Vrsta: + + + + Maker: + Ustvaril: + + + + Copyright: + Avtorstvo: + + + + Unique ID: + Edinstven ID: + PluginFactory + Plugin not found. + Vtičnik ni najden. + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + LMMS vtičnik %1 nima označevalca vtičnika z imenom %2! + + + + PluginListDialog + + + Carla - Add New - LMMS plugin %1 does not have a plugin descriptor named %2! + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No - ProjectNotes + PluginParameter - Project notes - Zabeležke o projektu + + Form + Oblika - Put down your project notes here. + + Parameter Name + Ime parametra + + + + TextLabel - Edit Actions + + ... + ... + + + + PluginRefreshDialog + + + Plugin Refresh - &Undo - Razveljavi - - - %1+Z + + Search for: - &Redo - Uveljavi - - - %1+Y + + All plugins, ignoring cache - &Copy + + Updated plugins only - %1+C + + Check previously invalid plugins - Cu&t + + Press 'Scan' to begin the search - %1+X + + Scan - &Paste + + >> Skip - %1+V + + Close + + + PluginWidget - Format Actions - + + + + + + Frame + Okvir - &Bold - + + Enable + Vklopi - %1+B - + + On/Off + Vklopi/izklopi - &Italic - + + + + + PluginName + ImeVtičnika - %1+I - + + MIDI + MIDI - &Underline - + + AUDIO IN + ZVOČNI VHOD - %1+U - + + AUDIO OUT + ZVOČNI IZHOD - &Left - + + GUI + GUI - %1+L - + + Edit + Uredi - C&enter - + + Remove + Odstrani - %1+E - + + Plugin Name + Ime vtičnika - &Right - - - - %1+R - - - - &Justify - - - - %1+J - - - - &Color... - + + Preset: + Predloga: ProjectRenderer - WAV-File (*.wav) + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + Ponovno naloži vtičnik + + + + Show GUI + Prikaži grafični vmesnik + + + + Help + Pomoč + + + + LADSPA plugins - Compressed OGG-File (*.ogg) + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) QWidget + + Name: - + Ime: + Maker: - + Ustvaril: + Copyright: - + Avtorstvo: + Requires Real Time: - + Zahteva realni čas: + + + Yes - + Da + + + No - + Ne + Real Time Capable: - + Zmore realni čas: + In Place Broken: - + Namesto okvarjenega: + Channels In: - + Kanali v: + Channels Out: - - - - File: - + Kanali iz: + File: %1 - + Datoteka: %1 + + + + File: + Datoteka: - RenameDialog + XYControllerW - Rename... + + XY Controller - - - SampleBuffer - Open audio file - Odpri avdio datoteko - - - 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 - - double-click to select sample - - - - Delete (middle mousebutton) - - - - Cut - - - - Copy - - - - Paste - - - - Mute/unmute (<%1> + middle click) - - - - - SampleTrack - - Sample track - - - - Volume - Obseg - - - Panning - - - - - SampleTrackView - - Track volume - - - - Channel volume: - - - - VOL - GLS - - - Panning - - - - Panning: - - - - PAN - PAN - - - - SetupDialog - - Setup LMMS - - - - General settings - Glavne nastavitve - - - BUFFER SIZE - - - - Reset to default-value - Nastavljeno na privzeto vrednost - - - MISC - Razno - - - 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 - - - - 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 - Jezik - - - Paths - - - - LMMS working directory - - - - VST-plugin directory - - - - Background artwork - - - - STK rawwave directory - - - - 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 INTERFACE - - - - 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 - - - - Auto-save interval: %1 - - - - 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. - - - - - 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 - - - - 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... - - - - untitled - Neimenovan - - - Select file for project-export... - Izberi datoteko za izvoz projekta... - - - The following errors occured while loading: - - - - MIDI File (*.mid) - - - - LMMS Error report - - - - Save project - - - - - 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 - - - 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. - - - - - 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 - - - - Edit actions - - - - Timeline controls - - - - Zoom controls - - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - SpectrumAnalyzerControls - - Linear spectrum - - - - Linear Y axis - - - - Channel mode - - - - - SubWindow - - Close - Zapri - - - Maximize - Maksimiraj - - - Restore - Obnovi - - - - 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 - - - - MIN - - - - SEC - - - - MSEC - - - - BAR - - - - BEAT - - - - TICK - - - - - 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 - Mute - - - Solo - Solist - - - - TrackContainer - - Couldn't import file - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - - - - Couldn't open file - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - - - - Loading project... - Nalagam projekt... - - - Cancel - Preklic - - - Please wait... - - - - Importing MIDI-file... - Uvažam MIDI datoteko... - - - - TrackContentObject - - Mute - Mute - - - - 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 - Mute - - - Solo - Solist - - - Mute this track - - - - Clone this track - - - - Remove this track - - - - Clear this track - - - - FX %1: %2 - - - - Turn all recording on - - - - Turn all recording off - - - - Assign to new FX Channel - - - - - 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. - - - - - VersionedSaveDialog - - Increment version number - - - - Decrement version number - - - - already exists. Do you want to replace it? - - - - - 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. - - - - 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 - 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. - - - - 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. - - - - 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 - Shrani glasbilce - - - 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 - Shrani glasbilce - - - .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 - - - - Invert + + X Controls: - Click to invert + + Y Controls: + Smooth - Click to smooth + + &Settings - Sine wave + + Channels - Click for sine wave + + &File - Triangle wave + + Show MIDI &Keyboard - Click for triangle wave + + (All) - Click for saw wave + + 1 - Square wave + + 2 - Click for square wave + + 3 + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + Volume - Obseg + Glasnost + Panning - + Panorama - Freq. multiplier - + + Left gain + Leva jakost - Left detune - - - - cents - - - - Right detune - - - - A-B Mix - - - - Mix envelope amount - - - - Mix envelope attack - - - - Mix envelope hold - - - - Mix envelope decay - - - - Crosstalk - + + Right gain + Desna jakost - ZynAddSubFxInstrument - - Portamento - Portamento - - - Filter Frequency - - - - Filter Resonance - - - - Bandwidth - Pasovna širina - - - 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 + lmms::AudioFileProcessor + Amplify - + Ojačenje + Start of sample - + Začetek vzorca + End of sample - - - - Reverse sample - - - - Stutter - + Konec vzorca + Loopback point - + Točka povratka zanke + + Reverse sample + Obrni vzorec + + + Loop mode - + Način zanke + + Stutter + Jecljanje + + + Interpolation mode - + Način prepletanja + None - + brez + Linear - + linearno + Sinc + Sinhronizacija + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + JACK odjemalec je bil ponovno zagnan + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + JACK je iz neznanega razloga odslovil LMMS. Zato je bil potreben ponoven zagon JACK zaledja za LMMS. Povezave je potrebno na novo vzpostaviti ročno. + + + + JACK server down + JACK strežnik ne deluje + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + Videti je, da se je JACK strežnik zaprl ter da zagon nove instance ni bil uspešen. Zato LMMS ne more nadaljevati. Shranite projekt ter nato ponovno zaženite JACK in LMMS. + + + + Client name + Ime odjemalca + + + + Channels + Kanali + + + + lmms::AudioOss + + + Device + Naprava + + + + Channels + Kanali + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Zaledje + + + + Device + Naprava + + + + lmms::AudioPulseAudio + + + Device + Naprava + + + + Channels + Kanali + + + + lmms::AudioSdl::setupWidget + + + Playback device + + Input device + + + + + lmms::AudioSndio + + + Device + Naprava + + + + Channels + Kanali + + + + lmms::AudioSoundIo::setupWidget + + + Backend + Zaledje + + + + Device + Naprava + + + + lmms::AutomatableModel + + + &Reset (%1%2) + &Ponastavitev (%1%2) + + + + &Copy value (%1%2) + &Kopiraj vrednost (%1%2) + + + + &Paste value (%1%2) + &Prilepi vrednost (%1%2) + + + + &Paste value + &Prilepi vrednost + + + + Edit song-global automation + Uredi globalno avtomatizacijo skladbe + + + + Remove song-global automation + Odstrani globalno avtomatizacijo skladbe + + + + Remove all linked controls + Odstrani vse povezane kontrole + + + + Connected to %1 + Povezan na %1 + + + + Connected to controller + Povezan s kontrolerjem + + + + Edit connection... + Uredi povezavo... + + + + Remove connection + Odstrani povezavo + + + + Connect to controller... + Poveži se s kontrolerjem... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + Povlecite kontrolo in zraven držite <%1> + + + + lmms::AutomationTrack + + + Automation track + Steza z avtomatizacijo + + + + lmms::BassBoosterControls + + + Frequency + Frekvenca + + + + Gain + Jakost + + + + Ratio + Razmerje + + + + lmms::BitInvader + + + Sample length + Dolžina vzorca + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + Vhodna jakost + + + + Input noise + Vhodni šum + + + + Output gain + Izhodna jakost + + + + Output clip + Izhodno rezanje + + + + Sample rate + Frekvenca vzorčenja + + + + Stereo difference + Stereo razlika + + + + Levels + Nivoji + + + + Rate enabled + Frrekvenca vklopljena + + + + Depth enabled + Globina vklopljena + + + + lmms::Clip + + + Mute + Utišaj + + + + lmms::CompressorControls + + + Threshold + Prag + + + + Ratio + Razmerje + + + + Attack + Napad + + + + Release + Spust + + + + Knee + Koleno + + + + Hold + Zadrži + + + + Range + Razpon + + + + RMS Size + RMS velikost + + + + Mid/Side + Sredina/Stransko + + + + Peak Mode + Vrh način + + + + Lookahead Length + Dolžina pogleda vnaprej + + + + Input Balance + Vhodno ravnovesje + + + + Output Balance + Izhodno ravnovesje + + + + Limiter + Omejevalnik + + + + Output Gain + Izhodna jakost + + + + Input Gain + Vhodna jakost + + + + Blend + Zlivanje + + + + Stereo Balance + Stereo ravnovesje + + + + Auto Makeup Gain + Samodejno večanje jakosti + + + + Audition + Avdicija + + + + Feedback + Povratna zanka + + + + Auto Attack + Samodejni napad + + + + Auto Release + Samodejni spust + + + + Lookahead + Pogled vnaprej + + + + Tilt + Nagib + + + + Tilt Frequency + Frekvenca nagiba + + + + Stereo Link + Stereo združevanje + + + + Mix + Miks + + + + lmms::Controller + + + Controller %1 + Kontoler %1 + + + + lmms::DelayControls + + + Delay samples + Zamik vzorcev + + + + Feedback + Povratna zanka + + + + LFO frequency + NFO frekvenca + + + + LFO amount + NFO količina + + + + Output gain + Izhodna jakost + + + + lmms::DispersionControls + + + Amount + Količina + + + + Frequency + Frekvenca + + + + Resonance + Resnonanca + + + + Feedback + Povratna zanka + + + + DC Offset Removal + DC odmik odstranitve + + + + lmms::DualFilterControls + + + Filter 1 enabled + Filter 1 vklopljen + + + + Filter 1 type + Filter 1 vrsta + + + + Cutoff frequency 1 + Frekvenca za odrez 1 + + + + Q/Resonance 1 + Q/resonanca 1 + + + + Gain 1 + Jakost 1 + + + + Mix + Miks + + + + Filter 2 enabled + Filter 2 vklopljen + + + + Filter 2 type + Filter 2 vrsta + + + + Cutoff frequency 2 + Frekvenca za odrez 2 + + + + Q/Resonance 2 + Q/resonanca 2 + + + + Gain 2 + Jakost 2 + + + + + Low-pass + Nizkoprepustni + + + + + Hi-pass + Visokoprepustni + + + + + Band-pass csg + Pasovno-prepustni csg + + + + + Band-pass czpg + Pasovno-prepustni czpg + + + + + Notch + Zareza + + + + + All-pass + Vse-prepustni + + + + + Moog + Moog + + + + + 2x Low-pass + 2×nizkoprepustni + + + + + RC Low-pass 12 dB/oct + RC nizkoprepustni 12dB/okt + + + + + RC Band-pass 12 dB/oct + RC pasovno-prepustni 12dB/okt + + + + + RC High-pass 12 dB/oct + RC visokoprepustni 12dB/okt + + + + + RC Low-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + + RC Band-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + + RC High-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + + Vocal Formant + Formant vokala + + + + + 2x Moog + 2x Moog + + + + + SV Low-pass + SV nizkoprepustni + + + + + SV Band-pass + SV pasovnoprepustni + + + + + SV High-pass + SV visokoprepustni + + + + + SV Notch + SV zareza + + + + + Fast Formant + Hitro obrazilo + + + + + Tripole + Tripolarno + + + + lmms::DynProcControls + + + Input gain + Vhodna jakost + + + + Output gain + Izhodna jakost + + + + Attack time + Čas napada + + + + Release time + Čas spusta + + + + Stereo mode + Stereo način + + + + lmms::Effect + + + Effect enabled + Učinek vključen + + + + Wet/Dry mix + Surov/obogaten miks + + + + Gate + Vrata + + + + Decay + Upad + + + + lmms::EffectChain + + + Effects enabled + Učinki vklopljeni + + + + lmms::Engine + + + Generating wavetables + Ustvarjanje tabel valovnih oblik + + + + Initializing data structures + Vzpostavljanje podatkovnih struktur + + + + Opening audio and midi devices + Odpiranje zvočnih in midi naprav + + + + Launching audio engine threads + Zagoni niti zvočnega pogona + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Ovoj pred-zamik + + + + Env attack + Ovoj napad + + + + Env hold + Ovoj zadrži + + + + Env decay + Ovoj upad + + + + Env sustain + Ovoj zadrži + + + + Env release + Ovoj spust + + + + Env mod amount + Ovoj mod količina + + + + LFO pre-delay + NFO + + + + LFO attack + NFO napad + + + + LFO frequency + NFO frekvenca + + + + LFO mod amount + NFO mod količina + + + + LFO wave shape + NFO valovna oblika + + + + LFO frequency x 100 + NFO frekvenca × 100 + + + + Modulate env amount + Modulacija ovoja količina + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + Vhodna jakost + + + + Output gain + Izhodna jakost + + + + Low-shelf gain + Spodnja ojačitev + + + + Peak 1 gain + Vrh 1 jakost + + + + Peak 2 gain + Vrh 2 jakost + + + + Peak 3 gain + Vrh 3 jakost + + + + Peak 4 gain + Vrh 4 jakost + + + + High-shelf gain + Zgornja ojačitev + + + + HP res + HP loč + + + + Low-shelf res + Spodnja loč + + + + Peak 1 BW + Vrh 1 PŠ + + + + Peak 2 BW + Vrh 2 PŠ + + + + Peak 3 BW + Vrh 3 PŠ + + + + Peak 4 BW + Vrh 4 PŠ + + + + High-shelf res + Zgornja loč + + + + LP res + NP loč + + + + HP freq + VP frek + + + + Low-shelf freq + Spodnja frek + + + + Peak 1 freq + Vrh 1 frek + + + + Peak 2 freq + Vrh 2 frek + + + + Peak 3 freq + Vrh 3 frek + + + + Peak 4 freq + Vrh 4 frek + + + + High-shelf freq + Zgornja frek + + + + LP freq + NP frek + + + + HP active + VP aktiven + + + + Low-shelf active + Spodnji aktiven + + + + Peak 1 active + Vrh 1 aktiven + + + + Peak 2 active + Vrh 2 aktiven + + + + Peak 3 active + Vrh 3 aktiven + + + + Peak 4 active + Vrh 4 aktiven + + + + High-shelf active + Zgornji aktiven + + + + LP active + NP aktiven + + + + LP 12 + NP 12 + + + + LP 24 + NP 24 + + + + LP 48 + NP 48 + + + + HP 12 + VP 12 + + + + HP 24 + VP 24 + + + + HP 48 + VP 48 + + + + Low-pass type + Vrsta nizkoprepustnega + + + + High-pass type + Vrsta visokoprepustnega + + + + Analyse IN + Analiza v + + + + Analyse OUT + Analiza iz + + + + lmms::FlangerControls + + + Delay samples + Zamik vzorcev + + + + LFO frequency + NFO frekvenca + + + + Amount + + + + + Stereo phase + Stereo faza + + + + Feedback + + + + + Noise + Šum + + + + Invert + Inverzno + + + + lmms::FreeBoyInstrument + + + Sweep time + Čas preleta + + + + Sweep direction + Smer preleta + + + + Sweep rate shift amount + Stopnja premika preleta + + + + + Wave pattern duty cycle + Cikelj izvajanja valovne matrike + + + + Channel 1 volume + Kanal 1 glasnost + + + + + + Volume sweep direction + Smer preleta glasnosti + + + + + + Length of each step in sweep + Dolžina vsakega koraka preleta + + + + Channel 2 volume + Kanal 2 glasnost + + + + Channel 3 volume + Kanal 3 glasnost + + + + Channel 4 volume + Kanal 4 glasnost + + + + Shift Register width + Pomik širine registra + + + + Right output level + Desni izhodni nivo + + + + Left output level + Levi izhodni nivo + + + + Channel 1 to SO2 (Left) + Kanal 1 na SO2 (levi) + + + + Channel 2 to SO2 (Left) + Kanal 2 na SO2 (levi) + + + + Channel 3 to SO2 (Left) + Kanal 3 na SO2 (levi) + + + + Channel 4 to SO2 (Left) + Kanal 4 na SO2 (levi) + + + + Channel 1 to SO1 (Right) + Kanal 1 na SO1 (desni) + + + + Channel 2 to SO1 (Right) + Kanal 2 na SO1 (desni) + + + + Channel 3 to SO1 (Right) + Kanal 3 na SO1 (desni) + + + + Channel 4 to SO1 (Right) + Kanal 4 na SO1 (desni) + + + + Treble + Visoki + + + + Bass + Bas + + + + lmms::GigInstrument + + + Bank + Tabela + + + + Patch + Program + + + + Gain + Jakost + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + Arpeggio + + + + Arpeggio type + Vrsta arpeggia + + + + Arpeggio range + Razpon arpeggia + + + + Note repeats + Ponavljanja not + + + + Cycle steps + Krožni koraki + + + + Skip rate + Stopnja preskoka + + + + Miss rate + Stopnja zgrešitev + + + + Arpeggio time + Čas arpeggia + + + + Arpeggio gate + Vrata arpeggia + + + + Arpeggio direction + Smer arpeggia + + + + Arpeggio mode + Način arpeggia + + + + Up + Gor + + + + Down + Dol + + + + Up and down + Gor in dol + + + + Down and up + Dol in gor + + + + Random + Naključno + + + + Free + Prosto + + + + Sort + Razvrsti + + + + Sync + Sinhroniziraj + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + Akordi + + + + Chord type + Vrsta akorda + + + + Chord range + Razpon akorda + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + Oblika krivulje/NFOji + + + + Filter type + Vrsta filtra + + + + Cutoff frequency + Frekvenca rezanja + + + + Q/Resonance + Q/resonanca + + + + Low-pass + Nizkoprepustni + + + + Hi-pass + Visokoprepustni + + + + Band-pass csg + Pasovno-prepustni csg + + + + Band-pass czpg + Pasovno-prepustni czpg + + + + Notch + Zareza + + + + All-pass + Vse-prepustni + + + + Moog + Moog + + + + 2x Low-pass + 2×nizkoprepustni + + + + RC Low-pass 12 dB/oct + RC nizkoprepustni 12dB/okt + + + + RC Band-pass 12 dB/oct + RC pasovno-prepustni 12dB/okt + + + + RC High-pass 12 dB/oct + RC visokoprepustni 12dB/okt + + + + RC Low-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + RC Band-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + RC High-pass 24 dB/oct + RC nizkoprepustni 24dB/okt + + + + Vocal Formant + Formant vokala + + + + 2x Moog + 2x Moog + + + + SV Low-pass + SV nizkoprepustni + + + + SV Band-pass + SV pasovnoprepustni + + + + SV High-pass + SV visokoprepustni + + + + SV Notch + SV zareza + + + + Fast Formant + Hitro obrazilo + + + + Tripole + Tripolarno + + + + lmms::InstrumentTrack + + + + unnamed_track + neimenovana_steza + + + + Base note + Osnovna nota + + + + First note + Prva nota + + + + Last note + Zadnja nota + + + + Volume + Glasnost + + + + Panning + Panorama + + + + Pitch + Višina + + + + Pitch range + Razpon višine + + + + Mixer channel + Mešalni kanal + + + + Master pitch + Glavna višina + + + + Enable/Disable MIDI CC + Vklopi/Izklopi MIDI CC + + + + CC Controller %1 + CC kontroler %1 + + + + + Default preset + Privzeta predloga + + + + lmms::Keymap + + + empty + prazno + + + + lmms::KickerInstrument + + + Start frequency + Začetna frekvenca + + + + End frequency + Končna frekvenca + + + + Length + Dolžina + + + + Start distortion + Začetno popačenje + + + + End distortion + Končno popačenje + + + + Gain + Jakost + + + + Envelope slope + Nagib ovoja + + + + Noise + Šum + + + + Click + Klik + + + + Frequency slope + Nagib frekvence + + + + Start from note + Začni z note + + + + End to note + Končaj na noti + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + Združi kanale + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + Zahtevan je neznan vtičnik LADSPA %1 + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + VCF frekvenca rezanja + + + + VCF Resonance + VCF resonanca + + + + VCF Envelope Mod + VCF ovoj mod + + + + VCF Envelope Decay + VCF ovoj upad + + + + Distortion + Popačenje + + + + Waveform + Valovna oblika + + + + Slide Decay + Drseči upad + + + + Slide + Drsenje + + + + Accent + Poudarek + + + + Dead + Mrtvo + + + + 24dB/oct Filter + 24dB/okt filter + + + + lmms::LfoController + + + LFO Controller + NFO kontroler + + + + Base value + Osnovna vrednost + + + + Oscillator speed + Hitrost oscilatorja + + + + Oscillator amount + Količina oscilatorja + + + + Oscillator phase + Faza oscilatorja + + + + Oscillator waveform + Valovna oblika oscilatorja + + + + Frequency Multiplier + Množilnik frekvence + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + Trdota + + + + Position + Položaj + + + + Vibrato gain + Jakost vibrata + + + + Vibrato frequency + Frekvenca vibrata + + + + Stick mix + Palični miks + + + + Modulator + Modulator + + + + Crossfade + Navzkrižno + + + + LFO speed + NFO hitrost + + + + LFO depth + NFO globina + + + + ADSR + ADSR + + + + Pressure + Pritisk + + + + Motion + Gibanje + + + + Speed + Hitrost + + + + Bowed + Godalo + + + + Instrument + + + + + Spread + Razpršeno + + + + Randomness + + + + + Marimba + Marimba + + + + Vibraphone + Vibrafon + + + + Agogo + Agogo + + + + Wood 1 + Les 1 + + + + Reso + Reso + + + + Wood 2 + Les 2 + + + + Beats + Dobe + + + + Two fixed + Dva fiksirana + + + + Clump + Teptanje + + + + Tubular bells + Cevasti zvonovi + + + + Uniform bar + Uniformni takt + + + + Tuned bar + Uglašen takt + + + + Glass + Steklo + + + + Tibetan bowl + Tibetanska skleda + + + + lmms::MeterModel + + + Numerator + Števec + + + + Denominator + Imenovalec + + + + lmms::Microtuner + + + Microtuner + Mikro-uglaševalec + + + + Microtuner on / off + Mikro-uglaševalec vklop / izklop + + + + Selected scale + Izbrana lestvica + + + + Selected keyboard mapping + Izbrano mapiranje tipkovnice + + + + lmms::MidiController + + + MIDI Controller + MIDI kontroler + + + + unnamed_midi_controller + neimenovan_midi_kontroler + + + + lmms::MidiImport + + + + Setup incomplete + Namestitev ni končana + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + V nastavitvenem dialogu niste nastavili privzetega soundfonta (Uredi->Nastavitve). Zato uvozžene MIDI datoteke ne bodo predvajane. Prenesite General MIDI soundfont in ga izberite v nastavitvah, nato pa znova poskusite. + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + LMMS ni bil preveden s podporo za SoundFont2 predvajalnik, ki je privzet za določanje zvoka uvoženih MIDI datotek. Zato uvožene MIDi datoteke ne bodo imele zvoka ob predvajanju. + + + + MIDI Time Signature Numerator + Števec MIDI časovne oznake + + + + MIDI Time Signature Denominator + Imenovalec MIDI časovne oznake + + + + Numerator + Števec + + + + Denominator + Imenovalec + + + + + Tempo + Tempo + + + + Track + Steza + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + JACK strežnik ne deluje + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + JACK server je izklopljen. + + + + lmms::MidiPort + + + Input channel + Vhodni kanal + + + + Output channel + Izhodni kanal + + + + Input controller + Vhodni kontroler + + + + Output controller + Izhodni kontroler + + + + Fixed input velocity + Stalna vhodna hitrost + + + + Fixed output velocity + Stalna izhodna hitrost + + + + Fixed output note + Stalna izhodna nota + + + + Output MIDI program + Izhodni MIDI program + + + + Base velocity + Osnovna hitrost + + + + Receive MIDI-events + Prejemanje MIDI-dogodkov + + + + Send MIDI-events + Pošiljanje MIDI-dogodkov + + + + lmms::Mixer + + + Master + Glavni master + + + + + + Channel %1 + Kanal %1 + + + + Volume + Glasnost + + + + Mute + Utišaj + + + + Solo + Solo + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + Količina, ki na bo poslana s kanala %1 na kanal %2 + + + + lmms::MonstroInstrument + + + Osc 1 volume + OSC 1 glasnost + + + + Osc 1 panning + Osc 1 panorama + + + + Osc 1 coarse detune + Osc 1 groba razglasitev + + + + Osc 1 fine detune left + Osc 1 fina razglasitev levo + + + + Osc 1 fine detune right + Osc 1 fina razglasitev desno + + + + Osc 1 stereo phase offset + Osc 1 odmik stereo faze + + + + Osc 1 pulse width + Osc 1 širina pulza + + + + Osc 1 sync send on rise + Osc 1 pošlji sinh ob rasti + + + + Osc 1 sync send on fall + Osc 1 pošlji sinh ob padcu + + + + Osc 2 volume + OSC 2 glasnost + + + + Osc 2 panning + Osc 2 panorama + + + + Osc 2 coarse detune + Osc 2 groba razglasitev + + + + Osc 2 fine detune left + Osc 2 fina razglasitev levo + + + + Osc 2 fine detune right + Osc 2 fina razglasitev desno + + + + Osc 2 stereo phase offset + Osc 2 odmik stereo faze + + + + Osc 2 waveform + OSC 2 valovna oblika + + + + Osc 2 sync hard + Osc 2 trda sinhr + + + + Osc 2 sync reverse + Osc 2 obratna sinhr + + + + Osc 3 volume + OSC 3 glasnost + + + + Osc 3 panning + Osc 3 panorama + + + + Osc 3 coarse detune + Osc 3 groba razglasitev + + + + Osc 3 Stereo phase offset + Osc 3 odmik stereo faze + + + + Osc 3 sub-oscillator mix + Osc3 miks sub-oscilatorja + + + + Osc 3 waveform 1 + Osc 3 valovna oblika 1 + + + + Osc 3 waveform 2 + Osc 3 valovna oblika 2 + + + + Osc 3 sync hard + Osc 3 trda sinhr + + + + Osc 3 Sync reverse + Osc 3 obratna sinhr + + + + LFO 1 waveform + NFO 1 valovna oblika + + + + LFO 1 attack + NFO 1 napad + + + + LFO 1 rate + LFO 1 stopnja + + + + LFO 1 phase + NFO 1 faza + + + + LFO 2 waveform + NFO 2 valovna oblika + + + + LFO 2 attack + NFO 2 napad + + + + LFO 2 rate + LFO 2 stopnja + + + + LFO 2 phase + NFO 2 faza + + + + Env 1 pre-delay + Ovoj 1 pred-zamik + + + + Env 1 attack + Ovoj 1 napad + + + + Env 1 hold + Ovoj 1 zadrži + + + + Env 1 decay + Env 1 upad + + + + Env 1 sustain + Ovoj 1 zadrži + + + + Env 1 release + Ovoj 1 spust + + + + Env 1 slope + Ovoj 1 nagib + + + + Env 2 pre-delay + Ovoj 2 pred-zamik + + + + Env 2 attack + Ovoj 2 napad + + + + Env 2 hold + Ovoj 2 zadrži + + + + Env 2 decay + Env 2 upad + + + + Env 2 sustain + Ovoj 2 zadrži + + + + Env 2 release + Ovoj 2 spust + + + + Env 2 slope + Ovoj 2 nagib + + + + Osc 2+3 modulation + Osc 2+3 modulacija + + + + Selected view + Izbrani prikaz + + + + Osc 1 - Vol env 1 + Osc 1 - glsn ovoj 1 + + + + Osc 1 - Vol env 2 + Osc 1 - glsn ovoj 2 + + + + Osc 1 - Vol LFO 1 + Osc 1 - glsn NFO 1 + + + + Osc 1 - Vol LFO 2 + Osc 1 - glsn NFO 2 + + + + Osc 2 - Vol env 1 + Osc 2 - glsn ovoj 1 + + + + Osc 2 - Vol env 2 + Osc 2 - glsn ovoj 2 + + + + Osc 2 - Vol LFO 1 + Osc 2 - glsn NFO 1 + + + + Osc 2 - Vol LFO 2 + Osc 2 - glsn NFO 2 + + + + Osc 3 - Vol env 1 + Osc 3 - glsn ovoj 1 + + + + Osc 3 - Vol env 2 + Osc 3 - glsn ovoj 2 + + + + Osc 3 - Vol LFO 1 + Osc 3 - glsn NFO 1 + + + + Osc 3 - Vol LFO 2 + Osc 3 - glsn NFO 2 + + + + Osc 1 - Phs env 1 + Osc 1 - faz ovoj 1 + + + + Osc 1 - Phs env 2 + Osc 1 - faz ovoj 2 + + + + Osc 1 - Phs LFO 1 + Osc 1 - faz NFO 1 + + + + Osc 1 - Phs LFO 2 + Osc 1 - faz NFO 2 + + + + Osc 2 - Phs env 1 + Osc 2 - faz ovoj 1 + + + + Osc 2 - Phs env 2 + Osc 2 - faz ovoj 2 + + + + Osc 2 - Phs LFO 1 + Osc 2 - faz LFO 1 + + + + Osc 2 - Phs LFO 2 + Osc 2 - faz LFO 2 + + + + Osc 3 - Phs env 1 + Osc 3 - faz ovoj 1 + + + + Osc 3 - Phs env 2 + Osc 3 - faz ovoj 2 + + + + Osc 3 - Phs LFO 1 + Osc 3 - faz NFO 1 + + + + Osc 3 - Phs LFO 2 + Osc 3 - faz NFO 2 + + + + Osc 1 - Pit env 1 + Osc 1 - viš ovoj 1 + + + + Osc 1 - Pit env 2 + Osc 1 - viš ovoj 2 + + + + Osc 1 - Pit LFO 1 + OSC 1 - viš NFO 1 + + + + Osc 1 - Pit LFO 2 + Osc 1 - viš LFO 2 + + + + Osc 2 - Pit env 1 + Osc 2 - viš ovoj 1 + + + + Osc 2 - Pit env 2 + Osc 2 - viš ovoj 2 + + + + Osc 2 - Pit LFO 1 + Osc 2 - viš NFO 1 + + + + Osc 2 - Pit LFO 2 + Osc 2 - viš NFO 2 + + + + Osc 3 - Pit env 1 + Osc 3 - viš ovoj 1 + + + + Osc 3 - Pit env 2 + Osc 3 - viš ovoj 2 + + + + Osc 3 - Pit LFO 1 + Osc 3 - viš NFO 1 + + + + Osc 3 - Pit LFO 2 + Osc 3 - viš LFO 2 + + + + Osc 1 - PW env 1 + Osc 1 - PW ovoj 1 + + + + Osc 1 - PW env 2 + Osc 1 - PW ovoj 2 + + + + Osc 1 - PW LFO 1 + Osc 1 - PW NFO 1 + + + + Osc 1 - PW LFO 2 + Osc 1 - PW NFO 2 + + + + Osc 3 - Sub env 1 + Osc 3 - sub ovoj 1 + + + + Osc 3 - Sub env 2 + Osc 3 - sub ovoj 2 + + + + Osc 3 - Sub LFO 1 + Osc 3 - sub NFO 1 + + + + Osc 3 - Sub LFO 2 + Osc 3 - sub NFO 2 + + + + + Sine wave + Sinusna oblika + + + + Bandlimited Triangle wave + Pasovno omejen trikotni val + + + + Bandlimited Saw wave + Pasovno omejen žagasti val + + + + Bandlimited Ramp wave + Pasovno omejen rampasti val + + + + Bandlimited Square wave + Pasovno omejen pravokotni val + + + + Bandlimited Moog saw wave + Pasovno omejen Moog žagasti val + + + + + Soft square wave + Mehak pravokotni val + + + + Absolute sine wave + Absolutni sinusni val + + + + + Exponential wave + Eksponentni val + + + + White noise + Beli šum + + + + Digital Triangle wave + Digitalni trikotni val + + + + Digital Saw wave + Digitalni žagasti val + + + + Digital Ramp wave + Digitalni rampasti val + + + + Digital Square wave + Digitalni pravokotni val + + + + Digital Moog saw wave + Digitalni Moog žagasti val + + + + Triangle wave + Trikotna oblika + + + + Saw wave + Žagasta oblika + + + + Ramp wave + Rampasti val + + + + Square wave + Pravokotna oblika + + + + Moog saw wave + Moog pravokotni val + + + + Abs. sine wave + Abs. sinusni val + + + + Random + Naključno + + + + Random smooth + Naključno glajenje + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + Kanal 1 groba razglasitev + + + + Channel 1 volume + Kanal 1 glasnost + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + Kanal 1 dolžina ovoja + + + + Channel 1 duty cycle + Kanal 1 cikelj izvajanja + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + Kanal 1 količina preleta + + + + Channel 1 sweep rate + Kanal 1 stopnja preleta + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + Kanal 2 dolžina ovoja + + + + Channel 2 duty cycle + Kanal 2 cikelj izvajanja + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + Kanal 2 količina preleta + + + + Channel 2 sweep rate + Kanal 2 stopnja preleta + + + + Channel 3 enable + + + + + Channel 3 coarse detune + Kanal 3 groba razglasitev + + + + Channel 3 volume + Kanal 3 glasnost + + + + Channel 4 enable + + + + + Channel 4 volume + Kanal 4 glasnost + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + Kanal 4 dolžina ovoja + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + Kanal 4 frekvenca šuma + + + + Channel 4 noise frequency sweep + Kanal 4 šum preleta frekvence + + + + Channel 4 quantize + + + + + Master volume + Glavna glasnost + + + + Vibrato + Vibrato + + + + lmms::OpulenzInstrument + + + Patch + Program + + + + Op 1 attack + Op 1 napad + + + + Op 1 decay + Op 1 upad + + + + Op 1 sustain + Op 1 zadrži + + + + Op 1 release + Op 1 spust + + + + Op 1 level + Op 1 nivo + + + + Op 1 level scaling + Op1 povečava nivoja + + + + Op 1 frequency multiplier + Op 2 množilnik frekvence + + + + Op 1 feedback + Op 1 povratna zanka + + + + Op 1 key scaling rate + OP 1 stopnja povečanja ključa + + + + Op 1 percussive envelope + Op 1 tolkalski ovoj + + + + Op 1 tremolo + Op 1 tremolo + + + + Op 1 vibrato + Op 1 vibrato + + + + Op 1 waveform + OP1 valovna oblika + + + + Op 2 attack + Op 2 napad + + + + Op 2 decay + Op 2 upad + + + + Op 2 sustain + Op 2 zadrži + + + + Op 2 release + Op 2 spust + + + + Op 2 level + Op 2 nivo + + + + Op 2 level scaling + Op 2 povečava nivoja + + + + Op 2 frequency multiplier + Op 2 množilnik frekvence + + + + Op 2 key scaling rate + OP 2 stopnja povečanja ključa + + + + Op 2 percussive envelope + Op 2 tolkalski ovoj + + + + Op 2 tremolo + Op 2 tremolo + + + + Op 2 vibrato + Op 2 vibrato + + + + Op 2 waveform + Op 2 valovna oblika + + + + FM + FM + + + + Vibrato depth + Globina vibrata + + + + Tremolo depth + Globina tremola + + + + lmms::OrganicInstrument + + + Distortion + Popačenje + + + + Volume + Glasnost + + + + lmms::OscillatorObject + + + Osc %1 waveform + Osc %1 valovna oblika + + + + Osc %1 harmonic + Osc %1 harmonično + + + + + Osc %1 volume + Osc %1 glasnost + + + + + Osc %1 panning + Osc %1 panorama + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + Osc %1 groba razglasitev + + + + Osc %1 fine detuning left + Osc %1 fina razglasitev levo + + + + Osc %1 fine detuning right + Osc %1 fina razglasitev desno + + + + Osc %1 phase-offset + Osc %1 fazni zamik + + + + Osc %1 stereo phase-detuning + Osc %1 stereo fazna razglasitev + + + + Osc %1 wave shape + Osc %1 oblika signala + + + + Modulation type %1 + Vrsta modulacije %1 + + + + lmms::PatternTrack + + + Pattern %1 + Matrika %1 + + + + Clone of %1 + Dvojnik od %1 + + + + lmms::PeakController + + + Peak Controller + Kontroler vrha + + + + Peak Controller Bug + Hrošč kontrolerja vrha + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + Zaradi hrošča v starejši različici LMMS se kontrolerji vrha morda ne bodo pravilno povezali. Prepričajte se, da so kontrolerji vrha pravilno povezani in ponovno shranite datoteko. Opravičujemo se za nevšečnosti. + + + + lmms::PeakControllerEffectControls + + + Base value + Osnovna vrednost + + + + Modulation amount + Količina modulacije + + + + Attack + Napad + + + + Release + Spust + + + + Treshold + Prag + + + + Mute output + Uitšaj izhod + + + + Absolute value + Absolutna vrednost + + + + Amount multiplicator + Množilnik količine + + + + lmms::Plugin + + + Plugin not found + Vtičnik ni najden + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + Vtičnika "%1" ni bilo mogoče najti oziroma naložiti! +Razlog: "%2" + + + + Error while loading plugin + Napaka pri nalaganju vtičnika + + + + Failed to load plugin "%1"! + Napaka pri nalaganju vtičnika "%1"! + + + + lmms::ReverbSCControls + + + Input gain + Vhodna jakost + + + + Size + Velikost + + + + Color + Barva + + + + Output gain + Izhodna jakost + + + + lmms::SaControls + + + Pause + Premor + + + + Reference freeze + Zamrznitev reference + + + + Waterfall + Vodni slap + + + + Averaging + Določanje povprečja + + + + Stereo + Stereo + + + + Peak hold + Zadrži vrh + + + + Logarithmic frequency + Logaritmična frekvenca + + + + Logarithmic amplitude + Logaritmična amplituda + + + + Frequency range + Frekvenčni razpon + + + + Amplitude range + Razpon amplitude + + + + FFT block size + FFT velikost bloka + + + + FFT window type + FFT vrsta okna + + + + Peak envelope resolution + Ločljivost ovoja vrha + + + + Spectrum display resolution + Ločljivost prikaza spektra + + + + Peak decay multiplier + Večkratnik upada vrha + + + + Averaging weight + Povprečje teže + + + + Waterfall history size + Velikost zgodovine Vodnega slapa + + + + Waterfall gamma correction + Gamma korekcija Vodnega slapa + + + + FFT window overlap + FFT okno prekrivanje + + + + FFT zero padding + FFT nič odmika + + + + + Full (auto) + Polno (samodejno) + + + + + + Audible + Slišno + + + + Bass + Bas + + + + Mids + Srednji + + + + High + Visoka + + + + Extended + Razširjeno + + + + Loud + Glasno + + + + Silent + Tiho + + + + (High time res.) + (Visoka loč. časa) + + + + (High freq. res.) + (Visoka loč. frekv.) + + + + Rectangular (Off) + Pravokotno (izklopljeno) + + + + + Blackman-Harris (Default) + Blackman-Harris (privzeto) + + + + Hamming + Pretiravanje + + + + Hanning + Hanning + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + Glasnost + + + + Panning + Panorama + + + + Mixer channel + Mešalni kanal + + + + + Sample track + Steza vzorca + + + + lmms::Scale + + + empty + prazno + + + + lmms::Sf2Instrument + + + Bank + Tabela + + + + Patch + Program + + + + Gain + Jakost + + + + Reverb + Odjek + + + + Reverb room size + Velikost prostora odjeka + + + + Reverb damping + Dušenje odjeka + + + + Reverb width + Širina odjeka + + + + Reverb level + Nivo odjeka + + + + Chorus + Kor + + + + Chorus voices + Glasovi kora + + + + Chorus level + Nivo kora + + + + Chorus speed + Hitrost kora + + + + Chorus depth + Globina kora + + + + A soundfont %1 could not be loaded. + Soundfont %1 ni bilo mogoče naložiti + + + + lmms::SfxrInstrument + + + Wave + Val + + + + lmms::SidInstrument + + + Cutoff frequency + Frekvenca rezanja + + + + Resonance + Resnonanca + + + + Filter type + Vrsta filtra + + + + Voice 3 off + Glas 3 izklop + + + + Volume + Glasnost + + + + Chip model + Model čipa + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + Sample not found: %1 - bitInvader + lmms::Song - Samplelength + + Tempo + Tempo + + + + Master volume + Glavna glasnost + + + + Master pitch + Glavna višina + + + + Aborting project load + Prekinjam nalaganje projekta + + + + Project file contains local paths to plugins, which could be used to run malicious code. + Projektna datoteka vsebuje lokalne poti do vtičnkkov, ki bi lahko vsebovale škodljivo kodo. + + + + Can't load project: Project file contains local paths to plugins. + Projekta ni mogoče naložiti: Projektna datoteka vsebuje lokalne poti do vtičnikov. + + + + LMMS Error report + Poročilo o LMMS napaki + + + + (repeated %1 times) + (ponovljeno %1 krat) + + + + The following errors occurred while loading: + Pri nalaganju je prišlo do naslednjih napak: + + + + lmms::StereoEnhancerControls + + + Width + Širina + + + + lmms::StereoMatrixControls + + + Left to Left + Levo na levo + + + + Left to Right + Levo na desno + + + + Right to Left + Desno na levo + + + + Right to Right + Desno na desno + + + + lmms::Track + + + Mute + Utišaj + + + + Solo + Solo + + + + lmms::TrackContainer + + + Couldn't import file + Datoeke ni bilo mogoče uvoziti + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + Filtra za uvoz %1 ni mogoče najti. +Pretvorite to datoteko v format, ki ga podpira LMMS s pomočjo nekega drugega programa. + + + + Couldn't open file + Ne morem odpreti datoteke + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + Datoteke %1 ni bilo mogoče odpreti za branje. +Prepričajte se, da imate pravico za branje te datoteke in njeno mapo ter poskusite znova! + + + + Loading project... + Nalagam projekt... + + + + + Cancel + Prekini + + + + + Please wait... + Počakajte... + + + + Loading cancelled + Nalaganje prekinjeno + + + + Project loading was cancelled. + Nalaganje projekta je bilo prekinjeno. + + + + Loading Track %1 (%2/Total %3) + Nalaganje steze %1 (%2/Skupaj %3) + + + + Importing MIDI-file... + Uvažam MIDI datoteko... + + + + lmms::TripleOscillator + + + Sample not found - bitInvaderView + lmms::VecControls - Sample Length - + + Display persistence amount + Prikaži količino persistence - Sine wave - + + Logarithmic scale + Logaritmična skala - 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. - + + High quality + Visoka kakovost - dynProcControlDialog + lmms::VestigeInstrument - INPUT - + + Loading plugin + Nalaganje vtičnika - Input gain: - - - - OUTPUT - - - - Output gain: - - - - ATTACK - - - - Peak attack time: - - - - RELEASE - - - - Peak release time: - - - - Reset 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 - + + Please wait while loading the VST plugin... + Počakajte, da se naloži VST vtičnik... - dynProcControls + lmms::Vibed + + String %1 volume + Struna %1 glasnost + + + + String %1 stiffness + Struna %1 togost + + + + Pick %1 position + Odjem %1 položaj + + + + Pickup %1 position + Odjemalec %1 položaj + + + + String %1 panning + Struna %1 panorama + + + + String %1 detune + Struna %1 razglašenost + + + + String %1 fuzziness + Struna %1 popačenost + + + + String %1 length + Struna %1 dolžina + + + + Impulse %1 + Impulz %1 + + + + String %1 + Struna %1 + + + + lmms::VoiceObject + + + Voice %1 pulse width + Glas %1 širina utripa + + + + Voice %1 attack + Glas %1 napad + + + + Voice %1 decay + Glas %1 upad + + + + Voice %1 sustain + Glas %1 zadrži + + + + Voice %1 release + Glas %1 spust + + + + Voice %1 coarse detuning + Glas %1 groba razglasitev + + + + Voice %1 wave shape + Glas %1 oblika vala + + + + Voice %1 sync + Glas %1 sinhr + + + + Voice %1 ring modulate + Voice %1 modulacija zvonjenja + + + + Voice %1 filtered + Glas %1 filtriran + + + + Voice %1 test + Glas %1 test + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + VST vtičnika %1 ni bilo mogoče naložiti + + + + Open Preset + Odpri predlogo + + + + + VST Plugin Preset (*.fxp *.fxb) + Predloga Vst vtičnika (*.fxp *.fxb) + + + + : default + : privzeto + + + + Save Preset + Shrani predlogo + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + Nalaganje vtičnika + + + + Please wait while loading VST plugin... + Počakajte, da naložim VST vtičnik + + + + lmms::WatsynInstrument + + + Volume A1 + Galsnost A1 + + + + Volume A2 + Galsnost A2 + + + + Volume B1 + Galsnost B1 + + + + Volume B2 + Galsnost B2 + + + + Panning A1 + Panorama A1 + + + + Panning A2 + Panorama A2 + + + + Panning B1 + Panorama B1 + + + + Panning B2 + Panorama B2 + + + + Freq. multiplier A1 + Množilnik frekv. A1 + + + + Freq. multiplier A2 + Množilnik frekv. A2 + + + + Freq. multiplier B1 + Množilnik frekv. B1 + + + + Freq. multiplier B2 + Množilnik frekv. B2 + + + + Left detune A1 + Razglasi levo A1 + + + + Left detune A2 + Razglasi levo A2 + + + + Left detune B1 + Razglasi levo B1 + + + + Left detune B2 + Razglasi levo B2 + + + + Right detune A1 + Razglasi desno A1 + + + + Right detune A2 + Razglasi desno A2 + + + + Right detune B1 + Razglasi desno B1 + + + + Right detune B2 + Razglasi desno B2 + + + + A-B Mix + A-B Miks + + + + A-B Mix envelope amount + A-B miks ovoj količina + + + + A-B Mix envelope attack + A-B miks ovoj napad + + + + A-B Mix envelope hold + A-B miks ovoj zadrži + + + + A-B Mix envelope decay + A-B miks ovoj upad + + + + A1-B2 Crosstalk + A1-B2 navzkrižno + + + + A2-A1 modulation + A2-A1 modulacija + + + + B2-B1 modulation + B2-B1 modulacija + + + + Selected graph + Izbrani graf + + + + lmms::WaveShaperControls + + Input gain - + Vhodna jakost + Output gain - - - - Attack time - - - - Release time - - - - Stereo mode - + Izhodna jakost - fxLineLcdSpinBox + lmms::Xpressive - Assign to: - + + Selected graph + Izbrani graf - New FX Channel - + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + W1 glajenje + + + + W2 smoothing + W2 glajenje + + + + W3 smoothing + W3 glajenje + + + + Panning 1 + Panorama 1 + + + + Panning 2 + Panorama 2 + + + + Rel trans + Rel trans - graphModel + lmms::ZynAddSubFxInstrument + + Portamento + Portamento + + + + Filter frequency + Frekvenca filtra + + + + Filter resonance + Filter resonance + + + + Bandwidth + Pasovna širina + + + + FM gain + FM jakost + + + + Resonance center frequency + Središčna frekvenca resonance + + + + Resonance bandwidth + Pasnovna širina resonance + + + + Forward MIDI control change events + Posreduj dogodke za MIDI spremembo kontrole + + + + lmms::graphModel + + Graph graf - kickerInstrument + lmms::gui::AmplifierControlDialog - Start frequency - - - - 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 - Ime - - - Rate - - - - Direction - - - - Type - - - - Min < Default < Max - - - - Logarithmic - - - - SR Dependent - - - - Audio - - - - Control - - - - Input - - - - Output - - - - Toggled - - - - Integer - - - - Float - - - - Yes - - - - - lb302Synth - - VCF Cutoff Frequency - - - - VCF Resonance - - - - VCF Envelope Mod - - - - VCF Envelope Decay - - - - Distortion - izkrivljanje - - - Waveform - - - - Slide Decay - - - - Slide - - - - Accent - Barva akcentov - - - Dead - Odmrlo - - - 24dB/oct Filter - - - - - lb302SynthView - - Cutoff Freq: - - - - Resonance: - - - - Env Mod: - - - - Decay: - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - Slide Decay: - - - - DIST: - - - - Saw wave - - - - Click here for a saw-wave. - - - - Triangle wave - - - - Click here for a triangle-wave. - - - - Square wave - - - - Click here for a square-wave. - - - - Rounded square wave - - - - Click here for a square-wave with a rounded end. - - - - Moog wave - - - - Click here for a moog-like wave. - - - - Sine wave - - - - Click for a sine-wave. - - - - White noise wave - - - - Click here for an exponential wave. - - - - Click here for white-noise. - - - - Bandlimited saw wave - - - - Click here for bandlimited saw wave. - - - - Bandlimited square wave - - - - Click here for bandlimited square wave. - - - - Bandlimited triangle wave - - - - Click here for bandlimited triangle wave. - - - - Bandlimited moog saw wave - - - - Click here for bandlimited moog saw wave. - - - - - malletsInstrument - - Hardness - - - - Position - - - - Vibrato Gain - - - - Vibrato 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 - - 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! - - - - - 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 - - - - - opl2instrumentView - - Attack - - - - Decay - - - - Release - Prepustitev - - - Frequency multiplier - - - - - organicInstrument - - Distortion - izkrivljanje - - - Volume - Obseg - - - - organicInstrumentView - - Distortion: - + + VOL + GLASN + Volume: Glasnost: - Randomise + + PAN + PAN + + + + Panning: + Panorama: + + + + LEFT + LEVO + + + + Left gain: + Leva jakost: + + + + RIGHT + DESNO + + + + Right gain: + Desna jakost: + + + + lmms::gui::AudioAlsaSetupWidget + + + Device - Osc %1 waveform: - - - - Osc %1 volume: - - - - Osc %1 panning: - - - - 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: + + Channels - FreeBoyInstrument + lmms::gui::AudioFileProcessorView - Sweep time - + + Open sample + Odpri vzorec - Sweep direction - + + Reverse sample + Obrni vzorec - Sweep RtShift amount - + + Disable loop + Izklopi zanko - Wave Pattern Duty - + + Enable loop + Vklopi zanko - Channel 1 volume - + + Enable ping-pong loop + Vklopi ping-pong zanko - Volume sweep direction - + + Continue sample playback across notes + Nadaljuj s predvajanjem vzorca po notah - Length of each step in sweep - + + Amplify: + Ojačitev: - Channel 2 volume - + + Start point: + Začetna točka: - Channel 3 volume - + + End point: + Končna točka: - Channel 4 volume - + + Loopback point: + Povratna točka zanke: + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + Dolžina vzorca: + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + Odpri v urejevalniku avtomatizacije - Right Output level - + + Clear + Počisti - Left Output level - + + Reset name + Ponastavi ime - Channel 1 to SO2 (Left) - + + Change name + Spremeni ime - Channel 2 to SO2 (Left) - + + Set/clear record + Nastavi/počisti snemanje - Channel 3 to SO2 (Left) - + + Flip Vertically (Visible) + Zrcali navpično (vidno) - Channel 4 to SO2 (Left) - + + Flip Horizontally (Visible) + Zrcali vodoravno (vidno) - Channel 1 to SO1 (Right) - + + %1 Connections + %1 povezav - Channel 2 to SO1 (Right) - + + Disconnect "%1" + Odklopi "%1" - Channel 3 to SO1 (Right) - + + Model is already connected to this clip. + Model je že povezan s tem izsekom + + + + lmms::gui::AutomationEditor + + + Edit Value + Uredi vrednost - Channel 4 to SO1 (Right) - + + New outValue + Nova izhodna outValue vrednost - Treble - + + New inValue + Nova vhodna inValue vrednost - Bass - - - - Shift Register width + + Please open an automation clip by double-clicking on it! - FreeBoyInstrumentView + lmms::gui::AutomationEditorWindow - Sweep Time: + + Play/pause current clip (Space) + Predvajanje/premor trenutnega izseka (preslednica) + + + + Stop playing of current clip (Space) + Zaustavi predvajanje trenutnega izseka (preslednica) + + + + Edit actions + Urejanje dejanj + + + + Draw mode (Shift+D) + Način risanja (Sshift+D) + + + + Erase mode (Shift+E) + Način brisanja (Shift+E) + + + + Draw outValues mode (Shift+C) + Način risanja izhodnih outValues vrednosti (Shift+C) + + + + Edit tangents mode (Shift+T) - Sweep Time + + Flip vertically + Zrcali navpično + + + + Flip horizontally + Zrcali vodoravno + + + + Interpolation controls + Nadzor nad interpolacijo + + + + Discrete progression + Diskretno napredovanje + + + + Linear progression + Linearno napredovanje + + + + Cubic Hermite progression + Kubični Hermit napredovanje + + + + Tension value for spline + Vrednost napetosti za zlepek + + + + Tension: + Napetost: + + + + Zoom controls + Nadzor povečave + + + + Horizontal zooming + Vodoravna povečava + + + + Vertical zooming + NAvpična povečava + + + + Quantization controls + Nadzor nad kvantizacijo + + + + Quantization + Kvantizacija + + + + Clear ghost notes - Sweep RtShift amount: + + + Automation Editor - no clip + Urejevalnik avtomatizacije - brez izseka + + + + + Automation Editor - %1 + Urejevalnik avtomatizacije - %1 + + + + Model is already connected to this clip. + Model je že povezan s tem izsekom + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + FREKV + + + + Frequency: + Frekvenca: + + + + GAIN + JAK + + + + Gain: + Jakost: + + + + RATIO + RAZMR + + + + Ratio: + Razmerje: + + + + lmms::gui::BitInvaderView + + + Sample length + Dolžina vzorca + + + + Draw your own waveform here by dragging your mouse on this graph. + Tu narišite svojo valovno obliko s vlečenjem miške po tem grafu. + + + + + Sine wave + Sinusna oblika + + + + + Triangle wave + Trikotna oblika + + + + + Saw wave + Žagasta oblika + + + + + Square wave + Pravokotna oblika + + + + + White noise + Beli šum + + + + + User-defined wave + Uporabniško določena oblika + + + + + Smooth waveform + Glajenje oblike vala + + + + Interpolation + Prepletanje + + + + Normalize + Normalizacija + + + + lmms::gui::BitcrushControlDialog + + + IN + V + + + + OUT + IZ + + + + + GAIN + JAK + + + + Input gain: + Vhodna jakost: + + + + NOISE + ŠUM + + + + Input noise: + Vhodni šum: + + + + Output gain: + Izhodna jakost: + + + + CLIP + REZANJE + + + + Output clip: + Izhodno rezanje: + + + + Rate enabled + Frrekvenca vklopljena + + + + Enable sample-rate crushing + Vklopi lomljenje frekvence vzorčenja + + + + Depth enabled + Globina vklopljena + + + + Enable bit-depth crushing + Vklopi lomljenje bitne globine + + + + FREQ + FREKV + + + + Sample rate: + Frekvenca vzorčenja: + + + + STEREO + STEREO + + + + Stereo difference: + Stereo razlika: + + + + QUANT + KVANT + + + + Levels: + Nivoji: + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% - Sweep RtShift amount + + - Notes and setup: %1% - Wave pattern duty: + + - Instruments: %1% - Wave Pattern Duty + + - Effects: %1% - 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 + + - Mixing: %1% - patchesDialog + lmms::gui::CarlaInstrumentView - Qsynth: Channel Preset - + + Show GUI + Prikaži grafični vmesnik - Bank selector - + + Click here to show or hide the graphical user interface (GUI) of Carla. + Kliknite, če želite prikazati ali skriti grafični vmesnik (GUI) Carle. - Bank - + + Params + Param - Program selector - + + Available from Carla version 2.1 and up. + Na voljo od Carla različice 2.1 naprej. + + + + lmms::gui::CarlaParamsView + + + Search.. + Iskanje.. - Patch - + + Clear filter text + Počisti besedilo filtra - Name - Ime + + Only show knobs with a connection. + Prikaži le vrtljive gumbe s povezavo. + + - Parameters + - Parametri + + + + lmms::gui::ClipView + + + Current position + Trenutni položaj + + + + Current length + Trenutna dolžina + + + + + %1:%2 (%3:%4 to %5:%6) + %1:%2 (%3:%4 do %5:%6) + + + + Press <%1> and drag to make a copy. + Pritisnite <%1> in vlečite, da ustvarite kopijo. + + + + Press <%1> for free resizing. + Pritisnite <%1> za prosto spreminjanje velikosti + + + + Hint + Namig + + + + Delete (middle mousebutton) + Izbriši (srednja tipka miške) + + + + Delete selection (middle mousebutton) + Izbriši označeno (srednja tipka miške) + + + + Cut + Izreži + + + + Cut selection + Izreži označeno + + + + Merge Selection + Združi označeno + + + + Copy + Kopiraj + + + + Copy selection + Kopiraj označeno + + + + Paste + Prilepi + + + + Mute/unmute (<%1> + middle click) + Utišaj/zvok (<%1>+ srednji klik) + + + + Mute/unmute selection (<%1> + middle click) + Utišaj/zvok označeno (<%1>+ srednji klik) + + + + Clip color + Barva matrike + + + + Change + Spremeni + + + + Reset + Ponastavi + + + + Pick random + Izberi naključno + + + + lmms::gui::CompressorControlDialog + + + Threshold: + Prag: + + + + Volume at which the compression begins to take place + Glasnost pri kateri se začne kompresirati + + + + Ratio: + Razmerje: + + + + How far the compressor must turn the volume down after crossing the threshold + Koliko naj kompresor stisne zvok, potem ko ta preseže prag + + + + Attack: + Napad: + + + + Speed at which the compressor starts to compress the audio + Hitrost s katero kompresor začne stiskati zvok + + + + Release: + Spust: + + + + Speed at which the compressor ceases to compress the audio + Hitrost s katero kompresor preneha stiskati zvok + + + + Knee: + Koleno: + + + + Smooth out the gain reduction curve around the threshold + Zmehčaj krivulje zmanjševanja jakosti v območju praga + + + + Range: + Obseg: + + + + Maximum gain reduction + Največje zmanjšanje jakosti + + + + Lookahead Length: + Dolžina pogleda naprej: + + + + How long the compressor has to react to the sidechain signal ahead of time + Koliko vnaprej naj se kompresor odziva na signal stranske verige + + + + Hold: + Zadrži: + + + + Delay between attack and release stages + Zamik med stopnjama napad in spust + + + + RMS Size: + RMS velikost: + + + + Size of the RMS buffer + Velikost RMS medpomnilnika + + + + Input Balance: + Vhodno ravnovesje: + + + + Bias the input audio to the left/right or mid/side + Postavi vhodni signal levo/desno ali sredina/stransko + + + + Output Balance: + Izhodno ravnovesje: + + + + Bias the output audio to the left/right or mid/side + Postavi izhodni signal levo/desno ali sredina/stransko + + + + Stereo Balance: + Stereo ravnovesje: + + + + Bias the sidechain signal to the left/right or mid/side + Postavi signal stranske verige levo/desno ali sredina/stransko + + + + Stereo Link Blend: + Prehajanje stereo združevanja: + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + Prehajanje med nepovezanim/maksimalnim/povprečnim/minimalnim načinom stereo združevanja + + + + Tilt Gain: + Nagib jakost: + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + Izpostavi nizke ali visoke frekvence signal stranske verige. -6dB je nizkoprepustni filter, 6 dB je visokoprepustni filter. + + + + Tilt Frequency: + Frekvenca nagiba: + + + + Center frequency of sidechain tilt filter + Osrednja frekvenca filtra nagiba stranske verige + + + + Mix: + Miks: + + + + Balance between wet and dry signals + Razmerje med surovim in obogatenim signalom + + + + Auto Attack: + Samodejni napad: + + + + Automatically control attack value depending on crest factor + Samodejno nadzoruj vrednost za napad glede na vrhove + + + + Auto Release: + Samodejni spust + + + + Automatically control release value depending on crest factor + Samodejno nadzoruj vrednost spusta glede na vrhove + + + + Output gain + Izhodna jakost + + + + + Gain + Jakost + + + + Output volume + Izhodna glasnost + + + + Input gain + Vhodna jakost + + + + Input volume + Vhodna glasnost + + + + Root Mean Square + Efektivna vrednost RMS + + + + Use RMS of the input + Uporabi RMS vhoda + + + + Peak + Vrh + + + + Use absolute value of the input + Uporabi absolutno vrednost vhoda + + + + Left/Right + Levo/Desno + + + + Compress left and right audio + Kompresiraj levi in desni zvok + + + + Mid/Side + Sredina/Stransko + + + + Compress mid and side audio + Kompresiraj sredinski in stranski zvok + + + + Compressor + Kompresor + + + + Compress the audio + Stiskanje zvoka + + + + Limiter + Omejevalnik + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + Nastavi razmerje na neskončno (ne zagotavlja omejevanja glasnosti zvoka) + + + + Unlinked + Nepovezano + + + + Compress each channel separately + Stiskaj vsak kanal posebej + + + + Maximum + Maksimum + + + + Compress based on the loudest channel + Stiskaj glede na glasnejši kanal + + + + Average + Povprečje + + + + Compress based on the averaged channel volume + Stiskaj glede na povprečno glasnost kanala + + + + Minimum + Minimum + + + + Compress based on the quietest channel + Stiskaj glede na tišji kanal + + + + Blend + Zlivanje + + + + Blend between stereo linking modes + Prehajanje med načini združevanja sterea + + + + Auto Makeup Gain + Samodejno večanje jakosti + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + Samodejno veča jakost glede na nastavljen prag, koleno in razmerje + + + + + Soft Clip + Mehko rezanje + + + + Play the delta signal + Predvajaj delta signal + + + + Use the compressor's output as the sidechain input + Uporabi izhod kompresorja kot vhod stranske verige + + + + Lookahead Enabled + Pogled vnaprej je vklopljen + + + + Enable Lookahead, which introduces 20 milliseconds of latency + Vklopi Pogled vnaprej, ki doda 20 milisekund latence + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + Nastavitve povezave + + + + MIDI CONTROLLER + MIDI KRMILNIK + + + + Input channel + Vhodni kanal + + + + CHANNEL + KANAL + + + + Input controller + Vhodni krmilnik + + + + CONTROLLER + KRMILNIK + + + + + Auto Detect + Samodejno zaznavanje + + + + MIDI-devices to receive MIDI-events from + MIDI-naprave, ki morajo prejeti MIDI-dogodke od + + + + USER CONTROLLER + UPORABNIŠKI KRMILNIK + + + + MAPPING FUNCTION + FUNKCIJA MAPIRANJA + + + OK V redu + Cancel - Preklic + Prekini + + + + LMMS + LMMS + + + + Cycle Detected. + Zaznan cikelj. - pluginBrowser + lmms::gui::ControllerRackView - no description - + + Controller Rack + Regal krmilnikov - Incomplete monophonic imitation tb303 - + + Add + Dodaj - Plugin for freely manipulating stereo output - + + Confirm Delete + Potrdi brisanje - 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 + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + Naj res izbrišem? Obstaja(-jo) povezava(-e), ki se nanašajo na ta krmilnik. Razveljavitev ni mogoča. - sf2Instrument + lmms::gui::ControllerView - Bank + + Controls + Kontrole + + + + Rename controller + Preimenuj krmilnik + + + + Enter the new name for this controller + Vnesite novo ime krmilnika + + + + LFO + NFO + + + + Move &up - Patch + + Move &down + + &Remove this controller + Odst&rani ta krmilnik + + + + Re&name this controller + Pr&eimenuj ta krmilnik + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + Pas 1/2 prekrižaj: + + + + Band 2/3 crossover: + Pas 2/3 prekrižaj: + + + + Band 3/4 crossover: + Pas 3/4 prekrižaj: + + + + Band 1 gain + Pas 1 jakost + + + + Band 1 gain: + Pas 1 jakost: + + + + Band 2 gain + Pas 2 jakost + + + + Band 2 gain: + Pas 2 jakost: + + + + Band 3 gain + Pas 3 jakost + + + + Band 3 gain: + Pas 3 jakost: + + + + Band 4 gain + Pas 4 jakost + + + + Band 4 gain: + Pas 4 jakost: + + + + Band 1 mute + Pas 1 utišaj + + + + Mute band 1 + Utišaj pas 1 + + + + Band 2 mute + Pas 2 utišaj + + + + Mute band 2 + Utišaj pas 2 + + + + Band 3 mute + Pas 3 utišaj + + + + Mute band 3 + Utišaj pas 3 + + + + Band 4 mute + Pas 4 utišaj + + + + Mute band 4 + Utišaj pas 4 + + + + lmms::gui::DelayControlsDialog + + + DELAY + ZAMIK + + + + Delay time + Čas zamika + + + + FDBK + POVR + + + + Feedback amount + Količina v povratno zanko + + + + RATE + STOPN + + + + LFO frequency + NFO frekvenca + + + + AMNT + KOLIČ + + + + LFO amount + NFO količina + + + + Out gain + Izhodna jakost + + + Gain + Jakost + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + KOLIČINA + + + + Number of all-pass filters + Število filtrov za vse pasove + + + + FREQ + FREKV + + + + Frequency: + Frekvenca: + + + + RESO + RESO + + + + Resonance: + Resnonanca: + + + + FEED + POVR + + + + Feedback: + Povratna zanka: + + + + DC Offset Removal + DC odmik odstranitve + + + + Remove DC Offset + Odstrani DC odmik + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + FREKV + + + + + Cutoff frequency + Frekvenca rezanja + + + + + RESO + RESO + + + + + Resonance + Resnonanca + + + + + GAIN + JAKOST + + + + + Gain + Jakost + + + + MIX + MIKS + + + + Mix + Miks + + + + Filter 1 enabled + Filter 1 vklopljen + + + + Filter 2 enabled + Filter 2 vklopljen + + + + Enable/disable filter 1 + Vklopi/izklopi filter 1 + + + + Enable/disable filter 2 + Vklopi/izklopi filter 2 + + + + lmms::gui::DynProcControlDialog + + + INPUT + VHOD + + + + Input gain: + Vhodna jakost: + + + + OUTPUT + IZHOD + + + + Output gain: + Izhodna jakost: + + + + ATTACK + NAPAD + + + + Peak attack time: + Čas do vrha napada: + + + + RELEASE + SPUST + + + + Peak release time: + Čas spuščanja od vrha: + + + + + Reset wavegraph + Ponastavi valovni graf + + + + + Smooth wavegraph + Glajenje valovnega grafa + + + + + Increase wavegraph amplitude by 1 dB + Povečaj amplitudo valovnega grafa za 1 dB + + + + + Decrease wavegraph amplitude by 1 dB + Zmanjšaj amplitudo valovnega grafa za 1 dB + + + + Stereo mode: maximum + Streo način: maksimalen + + + + Process based on the maximum of both stereo channels + Obdelava glede na maksimum stereo kanalov + + + + Stereo mode: average + Stereo način: povprečje + + + + Process based on the average of both stereo channels + Obdelava glede na povprečje stereo kanalov + + + + Stereo mode: unlinked + Stereo način: nepovezano + + + + Process each stereo channel independently + Ločena obdelava stereo kanalov + + + + lmms::gui::Editor + + + Transport controls + Kontrole + + + + Play (Space) + Predvajanje (preslednica) + + + + Stop (Space) + Ustavi (preslednica) + + + + Record + Snemaj + + + + Record while playing + Snemaj med predvajanjem + + + + Toggle Step Recording + Preklopi snemanje v korakih + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + VERIGA UČINKOV + + + + Add effect + Dodaj učinek + + + + lmms::gui::EffectSelectDialog + + + Add effect - Reverb + + + Name + Ime + + + + Type + Vrsta + + + + All - Reverb Roomsize + + Search - Reverb Damping + + Description + Opis + + + + Author + Avtor + + + + lmms::gui::EffectView + + + On/Off + Vklopi/izklopi + + + + W/D + S/O + + + + Wet Level: + Nivo obogatenosti: + + + + DECAY + UPAD + + + + Time: + Čas: + + + + GATE + VRATA + + + + Gate: + Vrata: + + + + Controls + Kontrole + + + + Move &up + Premakni &gor + + + + Move &down + Premakni &dol + + + + &Remove this plugin + Odst&rani ta vtičnik + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + KMD + + + + + Modulation amount: + Količina modulacije: + + + + + DEL + BRIŠI + + + + + Pre-delay: + Pred-zamik: + + + + + ATT + NAPAD + + + + + Attack: + Napad: + + + + HOLD + DRŽI + + + + Hold: + Drži: + + + + DEC + RAZ + + + + Decay: + Upad: + + + + SUST + VZD + + + + Sustain: + Zadrži: + + + + REL + SPUST + + + + Release: + Spust: + + + + SPD + HIT + + + + Frequency: + Frekvenca: + + + + FREQ x 100 + FREKV × 100 + + + + Multiply LFO frequency by 100 + Zmnoži NFO frekvenco s 100 + + + + MOD ENV AMOUNT - Reverb Width + + Control envelope amount by this LFO + Količino ovoja nadzorujte s tem NFO + + + + Hint + Namig + + + + Drag and drop a sample into this window. + Povlecite in spustite vzorec v to okno + + + + lmms::gui::EnvelopeGraph + + + Scaling - Reverb Level + + Dynamic - Chorus + + Uses absolute spacings but switches to relative spacing if it's running out of space - Chorus Lines + + Absolute - Chorus Level + + Provides enough potential space for each segment but does not scale - Chorus Speed + + Relative - Chorus Depth - - - - A soundfont %1 could not be loaded. + + Always uses all of the available space to display the envelope graph - sf2InstrumentView + lmms::gui::EqControlsDialog - Open other SoundFont file - Odpri drugo SoundFont datoteko + + HP + VP - Click here to open another SF2 file - + + Low-shelf + Spodnji - Choose the patch - + + Peak 1 + Vrh 1 + + Peak 2 + Vrh 2 + + + + Peak 3 + Vrh 3 + + + + Peak 4 + Vrh 4 + + + + High-shelf + Zgornji + + + + LP + NP + + + + Input gain + Vhodna jakost + + + + + Gain + Jakost + + + + Output gain + Izhodna jakost + + + + Bandwidth: + Pasovna širina: + + + + Octave + Oktava + + + + Resonance: - Apply reverb (if supported) + + Frequency: + Frekvenca: + + + + LP group + NP skupina + + + + HP group + VP skupina + + + + lmms::gui::EqHandle + + + Reso: + Reso: + + + + BW: + PŠ: + + + + + Freq: + Frek: + + + + lmms::gui::ExportProjectDialog + + + Could not open file + Ne morem odpreti datoteke + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + Datoteke %1 ni bilo mogoče odpreti za zapisovanje. +Prepričajte se, da imate pravico za zapisovanje v to datoteko in njeno mapo ter poskusite znova! + + + + Export project to %1 + Izvozi projekt v %1 + + + + ( Fastest - biggest ) + (Hitro - veliko) + + + + ( Slowest - smallest ) + (Počasi - majhno) + + + + Error + Napaka + + + + Error while determining file-encoder device. Please try to choose a different output format. + Napaka pri določanju naprave za kodiranje datoteke. Poskusite izbrati drug izhodni format. + + + + Rendering: %1% + Zapisovanje: %1% + + + + lmms::gui::Fader + + + Set value + Določi vrednost + + + + Please enter a new value between %1 and %2: + Prosim vpišite novo vrednost med %1 in %2: + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + Brskalnik + + + + Search + iskanje + + + + Refresh list + Osveži seznam + + + + User content + Uporabniška vsebina + + + + Factory content + Priložena vsebina + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + Pošlji na aktivno instrumentalno stezo + + + + Open containing folder + Odpri mapo datoteke + + + + Song Editor + Urejevalnik skladbe + + + + Pattern Editor + Urejevalnik matrik + + + + Send to new AudioFileProcessor instance + Pošlji kot novo AudioFileProcessor instanco + + + + Send to new instrument track + Pošlji na novo instrumentalno stezo + + + + (%2Enter) + (%2Enter) + + + + Send to new sample track (Shift + Enter) + Pošljii na novo stezo z vzorci (Shift + Enter) + + + + Loading sample + Nalaganje vzorca + + + + Please wait, loading sample for preview... + Počakajte, vzorec za predogled se nalaga... + + + + Error + Napaka + + + + %1 does not appear to be a valid %2 file + %1 niima pravilne oblike za %2 datoteko + + + + --- Factory files --- + --- Tovarniške datoteke --- + + + + lmms::gui::FileDialog + + + %1 files - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. + + All audio files - Reverb Roomsize: + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + ZAMIK + + + + Delay time: + Čas zamika: + + + + RATE + STOPN + + + + Period: + Perioda: + + + + AMNT + KOLIČ + + + + Amount: + Količina: + + + + PHASE + FAZA + + + + Phase: + Faza: + + + + FDBK + POVR + + + + Feedback amount: + Količina povratne zanke: + + + + NOISE + ŠUM + + + + White noise amount: + Količina belega šuma: + + + + Invert + Inverzno + + + + lmms::gui::FloatModelEditorBase + + + Set linear - Reverb Damping: + + Set logarithmic - Reverb Width: + + + Set value - Reverb Level: + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Apply chorus (if supported) + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + Čas preleta: + + + + Sweep time + Čas preleta + + + + Sweep rate shift amount: + Stopnja premika preleta: + + + + Sweep rate shift amount + Stopnja premika preleta + + + + + Wave pattern duty cycle: + Cikelj izvajanja valovne matrike: + + + + + Wave pattern duty cycle + Cikelj izvajanja valovne matrike + + + + Square channel 1 volume: + Pravokotni kanal 1 glasnost: + + + + Square channel 1 volume + Pravokotni kanal 1 glasnost + + + + + + Length of each step in sweep: + Dolžina vsakega koraka v preletu + + + + + + Length of each step in sweep + Dolžina vsakega koraka preleta + + + + Square channel 2 volume: + Pravokotni kanal 2 glasnost: + + + + Square channel 2 volume + Pravokotni kanal 2 glasnost + + + + Wave pattern channel volume: + Glasnost kanala valovne matrike: + + + + Wave pattern channel volume + Glasnost kanala valovne matrike + + + + Noise channel volume: + Glasnost kanala s šumom: + + + + Noise channel volume + Glasnost kanala s šumom + + + + SO1 volume (Right): + SO1 glasnost (desno): + + + + SO1 volume (Right) + SO1 glasnost (desno) + + + + SO2 volume (Left): + SO2 glasnost (levo) + + + + SO2 volume (Left) + SO2 glasnost (desno) + + + + Treble: + Visoki: + + + + Treble + Visoki + + + + Bass: + Bas: + + + + Bass + Bas + + + + Sweep direction + Smer preleta + + + + + + + + Volume sweep direction + Smer preleta glasnosti + + + + Shift register width + Pomik širine registra + + + + Channel 1 to SO1 (Right) + Kanal 1 na SO1 (desni) + + + + Channel 2 to SO1 (Right) + Kanal 2 na SO1 (desni) + + + + Channel 3 to SO1 (Right) + Kanal 3 na SO1 (desni) + + + + Channel 4 to SO1 (Right) + Kanal 4 na SO1 (desni) + + + + Channel 1 to SO2 (Left) + Kanal 1 na SO2 (levi) + + + + Channel 2 to SO2 (Left) + Kanal 2 na SO2 (levi) + + + + Channel 3 to SO2 (Left) + Kanal 3 na SO2 (levi) + + + + Channel 4 to SO2 (Left) + Kanal 4 na SO2 (levi) + + + + Wave pattern graph + Graf valovne matrike + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + Odpri GIG datoteko + + + + Choose patch + Izberi program + + + + Gain: + Jakost: + + + + GIG Files (*.gig) + GIG datoteke (*.gig) + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. + + Spray: - Chorus Lines: + + Jitter: - Chorus Level: + + Twitch: - Chorus Speed: + + Spray Stereo Spread: - Chorus Depth: + + Grain Shape: + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + Delovna mapa + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + LMMS delovna mapa %1 ne obstaja. Jo ustvarim? Mapo lahko spremenite preko Uredi -> Nastavitve. + + + + Preparing UI + Pripravljanje uporabniškega vmesnika + + + + Preparing song editor + Pripravljam Urejevalnik skladbe + + + + Preparing mixer + Pripravljanje mešalke + + + + Preparing controller rack + Pripravljanje regala kontrolerjev + + + + Preparing project notes + Pripravljanje zaznamkov projekta + + + + Preparing microtuner + Pripravljanje mikoruglaševalnika + + + + Preparing pattern editor + Pripravljanje urejevalnika matrik + + + + Preparing piano roll + Pripravljanje klavirskega črtovja + + + + Preparing automation editor + Pripravljanje urejevalnika avtomatizacije + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + ARPEGGIO + + + + RANGE + RAZPON + + + + Arpeggio range: + Razpon arpeggia: + + + + octave(s) + oktav(a) + + + + REP + REP + + + + Note repeats: + Ponovljanje not: + + + + time(s) + krat + + + + CYCLE + KROŽI + + + + Cycle notes: + Kroženje not: + + + + note(s) + not(a) + + + + SKIP + SKOK + + + + Skip rate: + Stopnja preskakovanja: + + + + + + % + % + + + + MISS + GREŠI + + + + Miss rate: + Stopnja zgrešitve + + + + TIME + ČAS + + + + Arpeggio time: + Čas arpeggia: + + + + ms + ms + + + + GATE + VRATA + + + + Arpeggio gate: + Vrata arpeggia: + + + + Chord: + Akord: + + + + Direction: + Smer: + + + + Mode: + Način: + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + KOPIČENJE + + + + Chord: + Akord: + + + + RANGE + RAZPON + + + + Chord range: + Razpon akorda: + + + + octave(s) + oktav(a) + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + VKLOPI MIDI VHOD + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + KANAL + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + HITR + + + + ENABLE MIDI OUTPUT + VKLOPI MIDI IZHOD + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + PROG + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + NOTA + + + + MIDI devices to receive MIDI events from + MIDI-naprave, ki morajo prejeti MIDI-dogodke od + + + + MIDI devices to send MIDI events to + MIDI-naprave, ki morajo poslati MIDI-dogodke do + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + CILJ + + + + FILTER + FILTER + + + + FREQ + FREKV + + + + Cutoff frequency: + Frekvenca rezanja: + + + + Hz + Hz + + + + Q/RESO + Q/RESO + + + + Q/Resonance: + Q/resonanca: + + + + Envelopes, LFOs and filters are not supported by the current instrument. + Oblike krivulj, LFOji in filtri niso podprti v trenutnem instrumentu. + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + Glasnost + + + + Volume: + Glasnost: + + + + VOL + GLASN + + + + Panning + Panorama + + + + Panning: + Panorama: + + + + PAN + PAN + + + + MIDI + MIDI + + + + Input + Vhod + + + + Output + Izhod + + + + Open/Close MIDI CC Rack + Odpri/Zapri MIDI CC regal + + + + %1: %2 + %1: %2 + + + + lmms::gui::InstrumentTrackWindow + + + Volume + Glasnost + + + + Volume: + Glasnost: + + + + VOL + GLASN + + + + Panning + Panorama + + + + Panning: + Panorama: + + + + PAN + PAN + + + + Pitch + Višina + + + + Pitch: + Višina: + + + + cents + stotinov + + + + PITCH + VIŠINA + + + + Pitch range (semitones) + Razpon višine (poltoni) + + + + RANGE + RAZPON + + + + Mixer channel + Mešalni kanal + + + + CHANNEL + KANAL + + + + Save current instrument track settings in a preset file + Shrani nastavitve trenutnega instrumenta v predlogo + + + + SAVE + SHRANI + + + + Envelope, filter & LFO + Ovoj, filter & NFO + + + + Chord stacking & arpeggio + Nalaganje akordov in arpeggio + + + + Effects + Učinki + + + + MIDI + MIDI + + + + Tuning and transposition + + + + + Save preset + Shrani predlogo + + + + XML preset file (*.xpf) + XML predloga (*.xpf) + + + + Plugin + Vtičnik + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + Začetna frekvenca: + + + + End frequency: + Končna frekvenca: + + + + Frequency slope: + Nagib frekvence: + + + + Gain: + Jakost: + + + + Envelope length: + Dolžina ovoja: + + + + Envelope slope: + Nagib ovoja: + + + + Click: + Klik: + + + + Noise: + Šum: + + + + Start distortion: + Začetno popačenje: + + + + End distortion: + Končno popačenje: + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + Učinki, ki so na voljo + + + + + Unavailable Effects + Učinki, ki niso na voljo + + + + + Instruments + Instrumenti + + + + + Analysis Tools + Analitična orodja + + + + + Don't know + Neznano + + + + Type: + Vrsta: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + Združi kanale + + + + Channel + Kanal + + + + lmms::gui::LadspaControlView + + + Link channels + Združi kanale + + + + Value: + Vrednost: + + + + lmms::gui::LadspaDescription + + + Plugins + Vtičniki + + + + Description + Opis + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + Vrata + + + + Name + Ime + + + + Rate + Stopnja + + + + Direction + Smer + + + + Type + Vrsta + + + + Min < Default < Max + Min < privzeto < maks + + + + Logarithmic + Logaritmično + + + + SR Dependent + SR odvisno + + + + Audio + Zvok + + + + Control + Kontrola + + + + Input + Vhod + + + + Output + Izhod + + + + Toggled + Preklopljeno + + + + Integer + Celoštevilčno + + + + Float + Decimalno + + + + + Yes + Da + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + Frekvenca rezanja: + + + + Resonance: + Resnonanca: + + + + Env Mod: + Ovoj mod: + + + + Decay: + Upad: + + + + 303-es-que, 24dB/octave, 3 pole filter + 303-karski, 24dB/oktavo, 3 polni filter + + + + Slide Decay: + Drseči upad: + + + + DIST: + POPAČ: + + + + Saw wave + Žagasta oblika + + + + Click here for a saw-wave. + Kliknite sem za žagasti val. + + + + Triangle wave + Trikotna oblika + + + + Click here for a triangle-wave. + Kliknite sem za trikotni val. + + + + Square wave + Pravokotna oblika + + + + Click here for a square-wave. + Kliknite sem za pravokotni val. + + + + Rounded square wave + Zaokrožen pravokotni val + + + + Click here for a square-wave with a rounded end. + Kliknite sem za pravokotni val za zaobljenim koncem. + + + + Moog wave + Moog val + + + + Click here for a moog-like wave. + Kliknite sem za Moogu podoben val. + + + + Sine wave + Sinusna oblika + + + + Click for a sine-wave. + Kliknite sem za sinusni val. + + + + + White noise wave + Val belega šuma + + + + Click here for an exponential wave. + Kliknite sem za eksponentni val. + + + + Click here for white-noise. + Kliknite sem za beli šum. + + + + Bandlimited saw wave + Pasovno omejen žagasti val + + + + Click here for bandlimited saw wave. + Kliknite sem za pasovno omejen žagasti val. + + + + Bandlimited square wave + Pasovno omejen pravokotni val + + + + Click here for bandlimited square wave. + Kliknite sem za pasovno omejen pravokotni val. + + + + Bandlimited triangle wave + Pasovno omejen trikotni val. + + + + Click here for bandlimited triangle wave. + Kliknite sem za pasovno omejen trikotni val. + + + + Bandlimited moog saw wave + Pasovno omejen Moog žagasti val + + + + Click here for bandlimited moog saw wave. + Kliknite sem za pasovno omejen Moog žagasti val. + + + + lmms::gui::LcdFloatSpinBox + + + Set value + Določi vrednost + + + + Please enter a new value between %1 and %2: + Vnesite novo vrednost med %1 in %2: + + + + lmms::gui::LcdSpinBox + + + Set value + Določi vrednost + + + + Please enter a new value between %1 and %2: + Vnesite novo vrednost med %1 in %2: + + + + lmms::gui::LeftRightNav + + + + + Previous + Nazaj + + + + + + Next + Naprej + + + + Previous (%1) + Nazaj (%1) + + + + Next (%1) + Naprej (%1) + + + + lmms::gui::LfoControllerDialog + + + LFO + NFO + + + + BASE + OSNOVA + + + + Base: + Osnova: + + + + FREQ + FREKV + + + + LFO frequency: + NFO frekvenca: + + + + AMNT + KOLIČ + + + + Modulation amount: + Količina modulacije: + + + + PHS + FAZ + + + + Phase offset: + Premik faze: + + + + degrees + stopinj + + + + Sine wave + Sinusna oblika + + + + Triangle wave + Trikotna oblika + + + + Saw wave + Žagasta oblika + + + + Square wave + Pravokotna oblika + + + + Moog saw wave + Moog pravokotni val + + + + Exponential wave + Eksponentni val + + + + White noise + Beli šum + + + + User-defined shape. +Double click to pick a file. + Uporabniško določena oblika. +Dvojni klik za izbiro datoteke. + + + + Multiply modulation frequency by 1 + Zmnoži frekvenco moduliranja z 1 + + + + Multiply modulation frequency by 100 + Zmnoži frekvenco moduliranja s 100 + + + + Divide modulation frequency by 100 + Deli frekvenco moduliranja s 100 + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + Nastavitvena datoteka + + + + Error while parsing configuration file at line %1:%2: %3 + Napaka pri razčlenjevanju nastavitvene datoteke v vrstici %1:%2: %3 + + + + Could not open file + Ne morem odpreti datoteke + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + Datoteke %1 ni bilo mogoče odpreti za zapisovanje. +Prepričajte se, da imate pravico za zapisovanje v to datoteko in njeno mapo ter poskusite znova! + + + + Project recovery + Obnova projekta + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + Na voljo je obnovitvena datoteka. Videti je, da se zadnja seja ni pravilno končala ali da je hkrati zagnana še ena instanca LMMS. Ali želite obvnoviti projekt te seje? + + + + + Recover + Obnova + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + Obnova datoteke. Pri tem dejanju je potrebno paziti na to, da ni zagnanih več instanc LMMS. + + + + + Discard + Opusti + + + + Launch a default session and delete the restored files. This is not reversible. + Zaženi privzeto sejo in pobriši obnovljene datoteke. Tega ni mogoče preklicati. + + + + Version %1 + Različica %1 + + + + Preparing plugin browser + Pripravljam brskalnik za vtičnike + + + + Preparing file browsers + Prirpavljam datotečni brskalnik + + + + My Projects + Moji projekti + + + + My Samples + Moji vzorci + + + + My Presets + Moje predloge + + + + My Home + Moj dom + + + + Root Directory + + + + + Volumes + Nosilci + + + + My Computer + Moj računalnik + + + + Loading background picture + Nalagam sliko ozadja + + + + &File + &Datoteka + + + + &New + &Novo + + + + &Open... + &Odpri... + + + + &Save + &Shrani + + + + Save &As... + Shr&ani kot... + + + + Save as New &Version + Shrani kot no&vo različico + + + + Save as default template + Shrani kot privzeto predlogo + + + + Import... + Uvozi... + + + + E&xport... + &Izvozi + + + + E&xport Tracks... + Iz&vozi steze... + + + + Export &MIDI... + Izvozi &MIDI... + + + + &Quit + I&zhod + + + + &Edit + &Uredi + + + + Undo + Razveljavi + + + + Redo + Uveljavi + + + + Scales and keymaps + + + + + Settings + Nastavitve + + + + &View + &Prikaz + + + + &Tools + &Orodja + + + + &Help + &Pomoč + + + + Online Help + Spletna pomoč + + + + Help + Pomoč + + + + About + O programu + + + + Create new project + Ustvari nov projekt + + + + Create new project from template + Ustvari nov projekt iz predloge + + + + Open existing project + Odpri obstoječi projekt + + + + Recently opened projects + Nedavno odprti projekti + + + + Save current project + Shrani trenutni projekt + + + + Export current project + Izvozi trenutni projekt + + + + Metronome + Metronom + + + + + Song Editor + Urejevalnik skladbe + + + + + Pattern Editor + Urejevalnik matrik + + + + + Piano Roll + Klavirsko črtovje + + + + + Automation Editor + Urejevalnik avtomatizacije + + + + + Mixer + Mešalka + + + + Show/hide controller rack + Prikaži/skrij regal krmilnikov + + + + Show/hide project notes + Prikaži/skrij beležke projekta + + + + Untitled + neimenovano + + + + Recover session. Please save your work! + Obnovitvena seja. Shranite dokumente! + + + + LMMS %1 + LMMS %1 + + + + Recovered project not saved + Obnovljen projekt ni bil shranjen + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + Ta projekt je bil obnovljen s prejšnje seje. Trenutno ni shranjen in bo izgubljen, če ga ne shranite. Ali ga želite shraniti? + + + + Project not saved + Projekt ni shranjen + + + + The current project was modified since last saving. Do you want to save it now? + Trenutni projekt je bil po zadnjem shranjevanju spremenjen. Ali ga želite sedaj shraniti? + + + + Open Project + Odpri projekt + + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + + Save Project + Shrani projekt + + + + LMMS Project + LMMS projekt + + + + LMMS Project Template + Predloga za LMMS projekt + + + + Save project template + Shrani predlogo projekta + + + + Overwrite default template? + Prepišem privzeto predlogo? + + + + This will overwrite your current default template. + To bo prepisalo vašo trenutno privzeto predlogo. + + + + Help not available + Pomoč ni na voljo + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + Trenutno LMMS ne ponuja pomoči. +Obiščite http://lmms.sf.net/wiki za ogled LMMS dokumentacije. + + + + Controller Rack + Regal krmilnikov + + + + Project Notes + Projektne beležke + + + + Fullscreen + Celozaslonsko + + + + Volume as dBFS + Glasnost kot dBFS + + + + Smooth scroll + Mehko drsenje + + + + Enable note labels in piano roll + Na klavirskem črtovju prikaži oznake not + + + + MIDI File (*.mid) + MIDI datoteka (*.mid) + + + + + untitled + neimenovano + + + + + Select file for project-export... + Izberi datoteko za izvoz projekta... + + + + Select directory for writing exported tracks... + Izberite mapo za zapisovanje izvoženih datotek... + + + + Save project + Shrani projekt + + + + Project saved + Projekt je shranjen + + + + The project %1 is now saved. + Projekt %1 je zdaj shranjen + + + + Project NOT saved. + Projekt NI shranjen + + + + The project %1 was not saved! + Projekt %1 ni bil shranjen + + + + Import file + Uvozi datoteko + + + + MIDI sequences + MIDI sekvence + + + + Hydrogen projects + Hydrogen projekti + + + + All file types + Vse vrste datotek + + + + lmms::gui::MalletsInstrumentView + + + Instrument + Instrument + + + + Spread + Razpršeno + + + + Spread: + Razpršeno: + + + + Random + + + + + Random: + + + + + Missing files + Manjkajoče datoteke + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + Stk namestitev je nepopolna. Prepričajte sem da je nameščen celotni Stk paket. + + + + Hardness + Trdota + + + + Hardness: + Trdota: + + + + Position + Položaj + + + + Position: + Položaj: + + + + Vibrato gain + Jakost vibrata + + + + Vibrato gain: + Jakost vibrata: + + + + Vibrato frequency + Frekvenca vibrata + + + + Vibrato frequency: + Frekvenca vibrata: + + + + Stick mix + Palični miks + + + + Stick mix: + Palični miks: + + + + Modulator + Modulator + + + + Modulator: + Modulator: + + + + Crossfade + Navzkrižno + + + + Crossfade: + Navzkrižno: + + + + LFO speed + NFO hitrost + + + + LFO speed: + NFO hitrost: + + + + LFO depth + NFO globina + + + + LFO depth: + NFO globina: + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + Pritisk + + + + Pressure: + Pritisk: + + + + Speed + Hitrost + + + + Speed: + Hitrost: + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + - VST nadzor parametrov + + + + VST sync + VST sinhr + + + + + Automated + Samodejno + + + + Close + Zapri + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + - nadzor VST vtičnika + + + + VST Sync + VST sinhronizacija + + + + + Automated + Samodejno + + + + Close + Zapri + + + + lmms::gui::MeterDialog + + + + Meter Numerator + Števec metruma + + + + Meter numerator + Števec metruma + + + + + Meter Denominator + Imenovalec metruma + + + + Meter denominator + Imenovalec metruma + + + + TIME SIG + ČAS OZNAKA + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + Prvi ključ + + + + + Last key + Zadnji ključ + + + + + Middle key + Srednji ključ + + + + + Base key + Osnovni ključ + + + + + + Base note frequency + Frekvenca osnovne note + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + Opis lestvice. Ne more se začeti s "!" in ne sme vsebovati znaka za novo vrstico. + + + + + Load + Naloži + + + + + Save + Shrani + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + Vnesite intervale v ločene vrstice. Številke, ki vsebujejo decimalke, se obravnavajo kot stotinje. +Ostali vnosi se obravnavajo kot celoštevilska razmerja in morajo biti zapisani v obliki 'a/b' ali 'a'. +Enotnost (0.0 stotinj ali razmerje 1/1) je vedno prikazana koz skrita prva vrednost; ne vnašajte je ročno. + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + Opis mape tipk. Ne more se začeti s "!" in ne sme vsebovati znaka za novo vrstico. + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + Vnesite mapiranja tipkovnice v ločene vrstice. Vsaka vrstica pripiše neki MIDI tipki stopnjo na lestvivi, +začenši s srednjo tipko in nadaljujoč po zaporedju. +Vzorec se ponavlja za tipke, ki so izven navedenega razpona v mapi tipk. +Več tipk je mogoče pripisati isti stopnji lestvice. +Vnesite 'x', če želite pustiti tipko nedodeljeno/ nemapirano. + + + + FIRST + PRVA + + + + First MIDI key that will be mapped + Prva MIDI tipka, ki bo mapirana + + + + LAST + ZADNJA + + + + Last MIDI key that will be mapped + Zadnja MIDI tipka, ki bo mapirana + + + + MIDDLE + SREDNJA + + + + First line in the keymap refers to this MIDI key + Prva vrstica mape tipk se nanaša na to MIDI tipko + + + + BASE N. + OSN.NOTA + + + + Base note frequency will be assigned to this MIDI key + Frekvenca osnovne note bo pripisana tej MIDI tipki + + + + BASE NOTE FREQ + FREKV OSN NOTE + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + Napaka pri razčlenjevanju lestvice + + + + Scale name cannot start with an exclamation mark + Ime lestvice se ne more začeti s klicajem + + + + Scale name cannot contain a new-line character + Ime lestvice ne more vsebovati znaka za novo vrstico + + + + Interval defined in cents cannot be converted to a number + Interval definiran v stotnjah ne more biti pretovrjen v številko + + + + Numerator of an interval defined as a ratio cannot be converted to a number + Števec intervala, ki je definiran kot razmerje, ne more biti pretvorjen v številko + + + + Denominator of an interval defined as a ratio cannot be converted to a number + Imenovalec intervala, ki je definiran kot razmerje, ne more biti pretvorjen v številko + + + + Interval defined as a ratio cannot be negative + Interval, ki je definiran kot razmerje, ne more biti negativno + + + + Keymap parsing error + Napaka pri razčlenjevanju mape tipk + + + + Keymap name cannot start with an exclamation mark + Ime mape tipk se ne more začeti s klicajem + + + + Keymap name cannot contain a new-line character + Ime mape tipk ne more vsebovati znaka za novo vrstico + + + + Scale degree cannot be converted to a whole number + Stopnja lestvice ne more biti pretovrjena v celo število + + + + Scale degree cannot be negative + Stopnja lestvice ne more biti negativna + + + + Invalid keymap + Napačna mapa tipk + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + Osnovna tipka ni pripisana stopnji lestvice. Zvok ne bo ustvarjen, ker notam ni možno pripisati referenčne frekvence. + + + + Open scale + Odpri lestvico + + + + + Scala scale definition (*.scl) + Scala definicija lestvice (*.scl) + + + + Scale load failure + Napak pri nalaganju lestvice + + + + + Unable to open selected file. + Izbrane datoteke ni mogoče odpreti. + + + + Open keymap + Odpri mapo tipk + + + + + Scala keymap definition (*.kbm) + Scala definicija mape tipk (*.kbm) + + + + Keymap load failure + Napak pri nalaganju mape tipk + + + + Save scale + Shrani lestvico + + + + Scale save failure + Napaka pri shranjevanju lestvice + + + + + Unable to open selected file for writing. + Izbrane datoteke ni mogoče odpreti za zapisovanje. + + + + Save keymap + Shrani mapo tipk + + + + Keymap save failure + Napaka pri shranjevanju mape tipk + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + MIDI CC regal -%1 + + + + MIDI CC Knobs: + MIDI CC regulatorji: + + + + CC %1 + CC %1 + + + + lmms::gui::MidiClipView + + + + Transpose + Transponiraj + + + + Semitones to transpose by: + Transponiraj za poltonov: + + + + Open in piano-roll + Odpri na klavirskem črtvoju + + + + Set as ghost in piano-roll + Nastavi kot zakrite v klavirskem črtovju + + + + Set as ghost in automation editor + + + + + Clear all notes + Počisti vse note + + + + Reset name + Ponastavi ime + + + + Change name + Spremeni ime + + + + Add steps + Dodaj korake + + + + Remove steps + Odstrani korake + + + + Clone Steps + Kloniraj korake + + + + lmms::gui::MidiSetupWidget + + + Device + Naprava + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + Mešalka + + + + lmms::gui::MonstroView + + + Operators view + Prikaz operatorjev + + + + Matrix view + Matrični prikaz + + + + + + Volume + Glasnost + + + + + + Panning + Panorama + + + + + + Coarse detune + Groba razglasitev + + + + + + semitones + poltoni + + + + + Fine tune left + Fina uglasitev levo + + + + + + + cents + stotini + + + + + Fine tune right + Fina uglasitev desno + + + + + + Stereo phase offset + Odmik stereo faze + + + + + + + + deg + stopinj + + + + Pulse width + Širina pulza + + + + Send sync on pulse rise + Pošlji sinh ko pulz narašča + + + + Send sync on pulse fall + Pošlji sinh ko pulz upada + + + + Hard sync oscillator 2 + Trdi sinh oscilator 2 + + + + Reverse sync oscillator 2 + Obrni sinh oscilator 2 + + + + Sub-osc mix + Pod-osc miks + + + + Hard sync oscillator 3 + Trdi sinh oscilator 3 + + + + Reverse sync oscillator 3 + Obrni sinh oscilator 3 + + + + + + + Attack + Napad + + + + + Rate + Stopnja + + + + + Phase + Faza + + + + + Pre-delay + Pred-zamik + + + + + Hold + Zadrži + + + + + Decay + Upad + + + + + Sustain + Zadrži + + + + + Release + Spust + + + + + Slope + Klanec + + + + Mix osc 2 with osc 3 + Miksaj osc2 z osc 3 + + + + Modulate amplitude of osc 3 by osc 2 + Moduliraj amplitudo osc 3 za osc 2 + + + + Modulate frequency of osc 3 by osc 2 + Moduliraj frekvenco osc 3 za osc 2 + + + + Modulate phase of osc 3 by osc 2 + Moduliraj fazo osc 3 za osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + Količina modulacije + + + + lmms::gui::MultitapEchoControlDialog + + + Length + Dolžina + + + + Step length: + Dolžina koraka: + + + + Dry + Surov + + + + Dry gain: + Surovo jakost: + + + + Stages + Stopnje + + + + Low-pass stages: + Nizkoprepustne stopnje: + + + + Swap inputs + Zamenjaj vhode + + + + Swap left and right input channels for reflections + Zamenjaj levi ibn desni vhodni kanal za odboje + + + + lmms::gui::NesInstrumentView + + + + + + Volume + Glasnost + + + + + + Coarse detune + Groba razglasitev + + + + + + Envelope length + Dolžina ovoja + + + + Enable channel 1 + Vklopi kanal 1 + + + + Enable envelope 1 + Vklopi ovoj 1 + + + + Enable envelope 1 loop + Vklopi ovoj 1 zanko + + + + Enable sweep 1 + Vklopi prelet 1 + + + + + Sweep amount + Količina preleta + + + + + Sweep rate + Stopnja preleta + + + + + 12.5% Duty cycle + 12,5% cikelj izvajanja + + + + + 25% Duty cycle + 25% cikelj izvajanja + + + + + 50% Duty cycle + 50% cikelj izvajanja + + + + + 75% Duty cycle + 75% cikelj izvajanja + + + + Enable channel 2 + Vklopi kanal 2 + + + + Enable envelope 2 + Vklopi ovoj 2 + + + + Enable envelope 2 loop + Vklopi ovoj 2 zanko + + + + Enable sweep 2 + Vklopi prelet 2 + + + + Enable channel 3 + Vklopi kanal 3 + + + + Noise Frequency + Frekvenca šuma + + + + Frequency sweep + Prelet frekvence + + + + Enable channel 4 + Vklopi kanal 4 + + + + Enable envelope 4 + Vklopi ovoj 4 + + + + Enable envelope 4 loop + Vklopi ovoj 4 zanko + + + + Quantize noise frequency when using note frequency + Kvantizacija frekvence šuma, kadar je uporabljena frekvenca note + + + + Use note frequency for noise + Za šum uporabi frekvenco note + + + + Noise mode + Način šuma + + + + Master volume + Glavna glasnost + + + + Vibrato + Vibrato + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + Napad + + + + + Decay + Upad + + + + + Release + Spust + + + + + Frequency multiplier + Množilnik frekvence + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + Popačenje: + + + + Volume: + Glasnost: + + + + Randomise + Naključno + + + + + Osc %1 waveform: + Osc %1 valovna oblika: + + + + Osc %1 volume: + Osc %1 glasnost: + + + + Osc %1 panning: + Osc %1 panorama: + + + + Osc %1 stereo detuning + Osc %1 stereo razglasitev + + + + cents + stotinov + + + + Osc %1 harmonic: + Osc %1 harmonično + + + + lmms::gui::Oscilloscope + + + Oscilloscope + Osciloskop + + + + Click to enable + Klikni za vklop + + + + lmms::gui::PatmanView + + + Open patch + Odpri program + + + + Loop + Zanka + + + + Loop mode + Način zanke + + + + Tune + Uglasitev + + + + Tune mode + Način uglaševanja + + + + No file selected + Nobena datoteka ni izbrana + + + + Open patch file + Odpri programsko datoteko + + + + Patch-Files (*.pat) + Programske datoteke (*.pat) + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + Odpri v urejevalniku matrik + + + + Reset name + Ponastavi ime + + + + Change name + Spremeni ime + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + Urejevalnik matrik + + + + Play/pause current pattern (Space) + Predvajanje/Premor trenutne matrike (presledek) + + + + Stop playback of current pattern (Space) + Zaustavi predvajanje trenutne matrike (presledek) + + + + Pattern selector + Izbirnik matrike + + + + Track and step actions + Dejanja za stezo in korak + + + + New pattern + Nova matrika + + + + Clone pattern + Kloniraj matriko + + + + Add sample-track + Dodaj stezo za vzorce + + + + Add automation-track + Dodaj stezo z avtomatizacijo + + + + Remove steps + Odstrani korake + + + + Add steps + Dodaj korake + + + + Clone Steps + Kloniraj korake + + + + lmms::gui::PeakControllerDialog + + + PEAK + VRH + + + + LFO Controller + NFO krmilnik + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + OSNOVA + + + + Base: + Osnova: + + + + AMNT + KOLIČ + + + + Modulation amount: + Količina modulacije: + + + + MULT + MNOŽ + + + + Amount multiplicator: + Množilnik količine: + + + + ATCK + NPAD + + + + Attack: + Napad: + + + + DCAY + UPAD + + + + Release: + Spust: + + + + TRSH + PRAG + + + + Treshold: + Prag: + + + + Mute output + Uitšaj izhod + + + + Absolute value + Absolutna vrednost + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + Hitrost note + + + + Note Panning + Panorama note + + + + Mark/unmark current semitone + Označi/odznači trenutni polton + + + + Mark/unmark all corresponding octave semitones + Označi/odznači vse pripadajoče poltone oktave + + + + Mark current scale + Označi trenutno lestvico + + + + Mark current chord + Označi trenutni akord + + + + Unmark all + Odznači vse + + + + Select all notes on this key + Izberi vse note tega ključa + + + + Note lock + Zaklep note + + + + Last note + Zadnja nota + + + + No key + Ni ključa + + + + No scale + Ni lestivce + + + + No chord + Ni akorda + + + + Nudge + Potisni + + + + Snap + Preskok + + + + Velocity: %1% + Hitrost: %1% + + + + Panning: %1% left + Panorama: %1% levo + + + + Panning: %1% right + Panorama: %1% desno + + + + Panning: center + Panorama: sredina + + + + Glue notes failed + Lepljenje not ni uspelo + + + + Please select notes to glue first. + Najprej izberite note za lepljenje. + + + + Please open a clip by double-clicking on it! + Odprite izsek z dvojnim klikom! + + + + + Please enter a new value between %1 and %2: + Vnesite novo vrednost med %1 in %2: + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + Predvajanje/premor trenutnega izseka (preslednica) + + + + Record notes from MIDI-device/channel-piano + Snemaj note z MIDI naprave/kanala-pianina + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + Snema note z MIDI naprave/kanala-pianina medtem ko predvaja skladbo ali stezo z matriko + + + + Record notes from MIDI-device/channel-piano, one step at the time + Snema note z MIDI naprave/kanala-pianina, korak po koraku + + + + Stop playing of current clip (Space) + Zaustavi predvajanje trenutnega izseka (preslednica) + + + + Edit actions + Uredi dejanja + + + + Draw mode (Shift+D) + Način risanja (shift+D) + + + + Erase mode (Shift+E) + Način brisanja (Shift+E) + + + + Select mode (Shift+S) + Način izbire (Shift+S) + + + + Pitch Bend mode (Shift+T) + Način pregibanja višine (Shift+T) + + + + Quantize + Kvantizacija + + + + Quantize positions + Kvantizacija položajev + + + + Quantize lengths + Kvantizacija dolžin + + + + File actions + Dejanja datoteke + + + + Import clip + Uvozi izsek + + + + + Export clip + Izvozi izsek + + + + Copy paste controls + Nadzor kopiranja/lepljenja + + + + Cut (%1+X) + Izreži (%1+X) + + + + Copy (%1+C) + Kopiraj (%1+C) + + + + Paste (%1+V) + Prilepi (%1+V) + + + + Timeline controls + Nadzor časovnice + + + + Glue + Lepljenje + + + + Knife + Nož + + + + Fill + Zapolni + + + + Cut overlaps + Izreži prekrito + + + + Min length as last + Minimalna dolžina vsaj + + + + Max length as last + Maksimalna dolžina vsaj + + + + Zoom and note controls + Nadzor povečave in not + + + + Horizontal zooming + Vodoravna povečava + + + + Vertical zooming + Navpična povečava + + + + Quantization + Kvantizacija + + + + Note length + Dolžina note + + + + Key + Ključ + + + + Scale + Skala + + + + Chord + Akord + + + + Snap mode + Način preskoka + + + + Clear ghost notes + Počisti zakrite note + + + + + Piano-Roll - %1 + Pianino-rolca - %1 + + + + + Piano-Roll - no clip + Pianino-rolca - brez izseka + + + + + XML clip file (*.xpt *.xptz) + XML izsek (*.xpt *.xptz) + + + + Export clip success + Uspešno izvožen izsek + + + + Clip saved to %1 + Izsek shranjen v %1 + + + + Import clip. + Uvozi izsek. + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + Uvozili boste izsek, kar bo prepisalo trenuten izsek. Želite nadaljevati? + + + + Open clip + Odpri izsek + + + + Import clip success + Uspešno uvožen izsek + + + + Imported clip %1! + Uvožen izsek %1! + + + + lmms::gui::PianoView + + + Base note + Osnovna nota + + + + First note + Prva nota + + + + Last note + Zadnja nota + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + Vtičniki instrumentov + + + + Instrument browser + Brskalnik instrumentov + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + Pošlji na novo instrumentalno stezo + + + + lmms::gui::ProjectNotes + + + Project Notes + Projektne beležke + + + + Enter project notes here + Sem vnesite zaznamke o projektu + + + + Edit Actions + Uredi dejanja + + + + &Undo + Razveljavi + + + + %1+Z + %1+Z + + + + &Redo + Uveljavi + + + + %1+Y + %1+Y + + + + &Copy + $Kopiraj + + + + %1+C + %1+C + + + + Cu&t + Iz&reži + + + + %1+X + %1+X + + + + &Paste + $Prilepi + + + + %1+V + %1+V + + + + Format Actions + Oblikuj dejanja + + + + &Bold + &Poudarjeno + + + + %1+B + %1+B + + + + &Italic + Po&ševno + + + + %1+I + %1+I + + + + &Underline + Pod&črtano + + + + %1+U + %1+U + + + + &Left + &Levo + + + + %1+L + %1+L + + + + C&enter + C&enter + + + + %1+E + %1+E + + + + &Right + &Desno + + + + %1+R + %1+R + + + + &Justify + Poravna&j + + + + %1+J + %1+J + + + + &Color... + &Barva... + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + Nedavno odp&Rti projekti + + + + lmms::gui::RenameDialog + + + Rename... + Preimenuj... + + + + lmms::gui::ReverbSCControlDialog + + + Input + Vhod + + + + Input gain: + Vhodna jakost: + + + + Size + Velikost + + + + Size: + Velikost: + + + + Color + Barva + + + + Color: + Barva: + + + + Output + Izhod + + + + Output gain: + Izhodna jakost: + + + + lmms::gui::SaControlsDialog + + + Pause + Premor + + + + Pause data acquisition + Premor pri pridobivanju podatkov + + + + Reference freeze + Zamrznitev reference + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + Zamrzni trenutni vhod kot referenco / onemogoči padec v načinu zadrži-vrh + + + + Waterfall + Vodni slap + + + + Display real-time spectrogram + Prikaži ralno-časni spektrogram + + + + Averaging + Določanje povprečja + + + + Enable exponential moving average + Vklopi exponetno povprečje gibanja + + + + Stereo + Stereo + + + + Display stereo channels separately + Ločeno prikaži stereo kanala + + + + Peak hold + Zadrži vrh + + + + Display envelope of peak values + Prikaži ovoj vrednosti vrhov + + + + Logarithmic frequency + Logaritmična frekvenca + + + + Switch between logarithmic and linear frequency scale + Preklopi med logaritmično in linearno skalo frekvence + + + + + Frequency range + Frekvenčni razpon + + + + Logarithmic amplitude + Logaritmična amplituda + + + + Switch between logarithmic and linear amplitude scale + Preklopi med logaritmično in linearno skalo ampllitude + + + + + Amplitude range + Razpon amplitude + + + + + FFT block size + FFT velikost bloka + + + + + FFT window type + FFT vrsta okna + + + + Envelope res. + Ločljivost ovoja + + + + Increase envelope resolution for better details, decrease for better GUI performance. + Povečajte ločljivost spektra za več podrobnosti, zmanjšajte za boljšo odzivnost grafičnega vmesnika. + + + + Maximum number of envelope points drawn per pixel: + Največje število izrisanih pik ovoja na piksel: + + + + Spectrum res. + Loč. spektra + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + Povečajte ločljivost spektra za več podrobnosti, zmanjšajte za boljšo odzivnost grafičnega vmesnika. + + + + Maximum number of spectrum points drawn per pixel: + Največje število izrisanih pik spšektra na piksel: + + + + Falloff factor + Faktor upada + + + + Decrease to make peaks fall faster. + Zmanjšajte za hitrejši upad vrhov. + + + + Multiply buffered value by + Zmnoži medpomnjeno vrednost z + + + + Averaging weight + Povprečje teže + + + + Decrease to make averaging slower and smoother. + Zmanjšajte da upočasnite in zmehčate določanje povprečja. + + + + New sample contributes + Novi prispveki vzorcev + + + + Waterfall height + Višina vodnega slapa + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + Povečajte za počasnejše drsenje, zmanjšajte za boljši ogled hitrih prehodov. Opozorilo: srednja obremenitev procesorja. + + + + Number of lines to keep: + Število ohranjenih vrstic: + + + + Waterfall gamma + Gamma vodnega slapa + + + + Decrease to see very weak signals, increase to get better contrast. + Zmanjšajte za ogled zelo šibkih signalov, povečajte za boljši kontrast. + + + + Gamma value: + Vrednost gamma: + + + + Window overlap + Prekrivanje oken + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + Povečajte, da ne prezrete hitrih prehodov blizu robov FFT oken. Opozorilo: velika obremenitev procesorja. + + + + Number of times each sample is processed: + Število obdelav za vsak vzorec: + + + + Zero padding + Nič odmika + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + Povečaj za bolj spekter bolj gladkega videza. Pozor: obremenjuje procesor. + + + + Processing buffer is + Medpomnilnik za procesiranje je + + + + steps larger than input block + korakov večji od vhodnega bloka + + + + Advanced settings + Napredne nastavitve + + + + Access advanced settings + Dostop do naprednih nastavitev + + + + lmms::gui::SampleClipView + + + Double-click to open sample + Dvojni klik za odpiranje vzorca + + + + Reverse sample + Obrni vzorec + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + Glasnost steze + + + + Channel volume: + Glasnost kanala: + + + + VOL + GLASN + + + + Panning + Panorama + + + + Panning: + Panorama: + + + + PAN + PAN + + + + %1: %2 + %1: %2 + + + + lmms::gui::SampleTrackWindow + + + Sample volume + Glasnost vzorca + + + + Volume: + Glasnost: + + + + VOL + GLASN + + + + Panning + Panorama + + + + Panning: + Panorama: + + + + PAN + PAN + + + + Mixer channel + Mešalni kanal + + + + CHANNEL + KANAL + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + Opusti MIDI povezave + + + + Save As Project Bundle (with resources) + Shrani kot paketni projekt (z viri) + + + + lmms::gui::SetupDialog + + + Settings + Nastavitve + + + + + General + Splošno + + + + Graphical user interface (GUI) + Grafični vmesnik (GUI) + + + + Display volume as dBFS + Prikaz glasnosti kot dBFS + + + + Enable tooltips + Vklopi namige za orodja + + + + Enable master oscilloscope by default + Privzeto vklopi glavni osciloskop + + + + Enable all note labels in piano roll + Vklopi vse oznake not v klavirskem črtovju + + + + Enable compact track buttons + Vklopi kompaktne gumbe orodne vrstice + + + + Enable one instrument-track-window mode + Vklopi okenski način ena instrumentalna steza + + + + Show sidebar on the right-hand side + Prikaži stranski pano na desni strani + + + + Let sample previews continue when mouse is released + Predogledi vzorcev naj se nadaljujejo, ko je miška spuščena + + + + Mute automation tracks during solo + Utišaj avotmatizacijske steze, ko je izbran solo + + + + Show warning when deleting tracks + Ob brisanju stez prikaži opozorilo + + + + Show warning when deleting a mixer channel that is in use + Prikaži opozorilo ob brisanju mešalnega kanala, ki je v rabi + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + Projekti + + + + Compress project files by default + Privzeto stiskanje projektnih datotek + + + + Create a backup file when saving a project + Ustvari varnostno kopijo ob shranjevanju projekta + + + + Reopen last project on startup + Ob zagonu odpri zadnji projekt + + + + Language + Jezik + + + + + Performance + Zmogljivost + + + + Autosave + Samodejno shranjevanje + + + + Enable autosave + Vklopi samodejno shranjevanje + + + + Allow autosave while playing + Dovoli samodejno shranjevanje med predvajanjem + + + + User interface (UI) effects vs. performance + Učinki uporabniškega vmesnika (UI) vs. zmogljivost + + + + Smooth scroll in song editor + Mehko drsenje v urejevalniku skladbe + + + + Display playback cursor in AudioFileProcessor + Prikaži predvajalni kurzor v AudioFileProcessor + + + + Plugins + Vtičniki + + + + VST plugins embedding: + Vdelava VST vtičnikov + + + + No embedding + Brez vdelave + + + + Embed using Qt API + Vdelaj z uporabo Qt API + + + + Embed using native Win32 API + Vdelaj z uporabo Win32 API + + + + Embed using XEmbed protocol + Vdelaj z uporabo XEmbed protokola + + + + Keep plugin windows on top when not embedded + Obdrži okna vtičnika na vrhu, kadar niso vgrajena + + + + Keep effects running even without input + Učinki naj se izvajajo, četudi ni vhoda + + + + + Audio + Zvok + + + + Audio interface + Zvočni vmesnik + + + + Buffer size + Velikost medpomnilnika + + + + Reset to default value + Ponastavi na privzeto vrednost + + + + + MIDI + MIDI + + + + MIDI interface + MIDI vmesnik + + + + Automatically assign MIDI controller to selected track + Samodejno določi MIDi kontroler izbrani stezi + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + Poti + + + + LMMS working directory + LMMS delovna mapa + + + + VST plugins directory + Mapa z VST vtičniki + + + + LADSPA plugins directories + Mape LADSPA vtičnikov + + + + SF2 directory + SF2 mapa + + + + Default SF2 + Privzeti SF2 + + + + GIG directory + GIG mapa + + + + Theme directory + Mapa s temami + + + + Background artwork + Grafike za ozadje + + + + Some changes require restarting. + Določene spremembe zahtevajo ponoven zagon. + + + + OK + V redu + + + + Cancel + Prekini + + + + minutes + minut + + + + minute + minuta + + + + Disabled + Onemogočeno + + + + Autosave interval: %1 + Interval samodejnega shranjevanja: %1 + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + Okvirjev: %1 +Latenca: %2 ms + + + + Choose the LMMS working directory + Izberite LMMS delovno mapo + + + + Choose your VST plugins directory + Izberite mapo z VST vtičniki + + + + Choose your LADSPA plugins directory + Izberite mapo z LADSPA vtičniki + + + + Choose your SF2 directory + Izberite SF2 mapo + + + + Choose your default SF2 + Izberite privzeti SF2 + + + + Choose your GIG directory + Izberite GIG mapo + + + + Choose your theme directory + Izberite mapo s temami + + + + Choose your background picture + Izberite sliko za ozadje + + + + lmms::gui::Sf2InstrumentView + + + Open SoundFont file Odpri SoundFont datoteko - SoundFont2 Files (*.sf2) - - - - - sfxrInstrument - - Wave Form - - - - - sidInstrument - - Cutoff - + + Choose patch + Izberi program - Resonance - + + Gain: + Jakost: - Filter type - + + Apply reverb (if supported) + Uporabi odjek (če je podprt) - Voice 3 off - + + Room size: + Velikost prostora: - 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 - + + Damping: + Dušenje: + Width: - + Širina: + + + + + Level: + Nivo: + + + + Apply chorus (if supported) + Uporabi zbor (če je podprt) + + + + Voices: + Glasovi: + + + + Speed: + Hitrost: + + + + Depth: + Globina + + + + SoundFont Files (*.sf2 *.sf3) + SoundFont datoteke (*.sf2 *.sf3) - stereoEnhancerControls - - Width - - - - - stereoMatrixControlDialog - - Left to Left Vol: - - - - Left to Right Vol: - - - - Right to Left Vol: - - - - Right to Right Vol: - - - - - 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 - - Loading plugin - - - - Please wait while loading VST-plugin... - - - - - 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 + lmms::gui::SidInstrumentView + Volume: Glasnost: - The 'V' knob sets the volume of the selected string. - + + Resonance: + Resnonanca: - String stiffness: - + + + Cutoff frequency: + Frekvenca rezanja: - 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. - + + High-pass filter + Visokoprepustni filter - Pick position: - + + Band-pass filter + Pasovno-prepustni filter - 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. - + + Low-pass filter + Nizkoprepustni filter - Pickup position: - + + Voice 3 off + Glas 3 izklop - 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. - + + MOS6581 SID + MOS6581 SID - Pan: - + + MOS8580 SID + MOS8580 SID - The Pan knob determines the location of the selected string in the stereo field. - + + + Attack: + Napad: - Detune: - + + + Decay: + Upad: - 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. - + + Sustain: + Zadrži: - Fuzziness: - + + + Release: + Spust: - 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'. - + + Pulse Width: + Širina pulza: - Length: - + + Coarse: + Grobo: - 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 - + + Pulse wave + Pulzni val + Triangle wave - + Trikotna oblika + Saw wave + Žagasta oblika + + + + Noise + Šum + + + + Sync + Sinhroniziraj + + + + Ring modulation + Modulacija zvonjenja + + + + Filtered + Filtrirano + + + + Test + Test + + + + Pulse width: + Širina pulza: + + + + lmms::gui::SideBarWidget + + + Close + Zapri + + + + lmms::gui::SlicerTView + + + Slice snap + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + Ne morem odpreti datoteke + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + Datoteke %1 ni mogoče odpreti. Verjetno nimate pravic za branje te datoteke. +Poskrbite, da boste imeli vsaj bralne pravice in poskusite znova. + + + + Operation denied + Operacija zavrnjena + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + Paketna mapa z imenom, ki že obstaja v izbrani poti. Paktenega projekta ni mogoče prepisati. Izberite drugo ime. + + + + + + Error + Napaka + + + + Couldn't create bundle folder. + Paketne mape ni bilo mogoče ustvariti. + + + + Couldn't create resources folder. + Mape z viri ni bilo mogoče ustvariti. + + + + Failed to copy resources. + Neuspešno kopiranje virov + + + + + Could not write file + Datoteke ni bilo mogoče zapisati + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + Napaka v datoteki + + + + The file %1 seems to contain errors and therefore can't be loaded. + Datoteka %1 vsebuje napake in je ni mogoče naložiti. + + + + template + predloga + + + + project + projekt + + + + Version difference + Razlika različic + + + + This %1 was created with LMMS %2 + %1 je ustvarjen z LMMS %2 + + + + Zoom + Povečava + + + + Tempo + Tempo + + + + TEMPO + TEMPO + + + + Tempo in BPM + Tempo v BPM + + + + + + Master volume + Glavna glasnost + + + + + + Global transposition + Globalno transponiranje + + + + 1/%1 Bar + 1/%1 takt + + + + %1 Bars + %1 taktov + + + + Value: %1% + Vrednost: %1% + + + + Value: %1 keys + Vrednost: %1% ključev + + + + lmms::gui::SongEditorWindow + + + Song-Editor + Urejevalnik skladbe + + + + Play song (Space) + Predvajaj skladbo (preslednica) + + + + Record samples from Audio-device + Snemaj vzorce iz zvočne naprave + + + + Record samples from Audio-device while playing song or pattern track + Snemanje vzorcev iz zvočne naprave med predvajanjem skladbe ali steze z matriko + + + + Stop song (Space) + Zaustavi skladbo (preslednica) + + + + Track actions + Dejanja steze + + + + Add pattern-track + Dodaj stezo z matriko + + + + Add sample-track + Dodaj stezo za vzorce + + + + Add automation-track + Dodaj stezo za avtomatizacijo + + + + Edit actions + Uredi dejanja + + + + Draw mode + Način risanja + + + + Knife mode (split sample clips) + Način noža (razdeli izseke vzorcev) + + + + Edit mode (select and move) + Način urejanja (izberi in premakni) + + + + Timeline controls + Nadzor časovnice + + + + Bar insert controls + Kontrole za vstavljanje takta + + + + Insert bar + Vstavi takt + + + + Remove bar + Odstrani takt + + + + Zoom controls + Nadzor povečave + + + + + Zoom + Povečava + + + + Snap controls + Nadzor preskoka + + + + + Clip snapping size + Velikost preskoka izseka + + + + Toggle proportional snap on/off + Preklopi proporcionalni preskok + + + + Base snapping size + Osnovna velikost preskoka + + + + lmms::gui::StepRecorderWidget + + + Hint + Namig + + + + Move recording curser using <Left/Right> arrows + Premikaj snemalni kurzor s pomočjo smernih tipk <levo/desno> + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + ŠIRINA + + + + Width: + Širina: + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + Levo na levo glas.: + + + + Left to Right Vol: + Levo na desno glas.: + + + + Right to Left Vol: + Desno na levo glas.: + + + + Right to Right Vol: + Desno na desno glas.: + + + + lmms::gui::SubWindow + + + Close + Zapri + + + + Maximize + Najv.povečava + + + + Restore + Obnovi + + + + lmms::gui::TapTempoView + + + 0 + 0 + + + + + Precision + Natančnost + + + + Display in high precision + Prikaži z veliko natančnostjo + + + + 0.0 ms + 0.0 ms + + + + Mute metronome + Utišaj metronom + + + + Mute + Utišaj + + + + BPM in milliseconds + BPM v milisekundah + + + + 0 ms + 0 ms + + + + Frequency of BPM + Frekvenca BPM + + + + 0.0000 hz + 0.0000 hz + + + + Reset + Ponastavi + + + + Reset counter and sidebar information + Ponastavi števec in podatke v stranskem panoju + + + + Sync + Sinhroniziraj + + + + Sync with project tempo + Sinhroniziraj z hitrostjo projekta + + + + %1 ms + %1 ms + + + + %1 hz + %1 hz + + + + lmms::gui::TemplatesMenu + + + New from template + Novo iz predloge + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + Sinhronizacija tempa + + + + No Sync + Brez sinhronizacije + + + + Eight beats + Osem dob + + + + Whole note + Celinka + + + + Half note + Polovinka + + + + Quarter note + Četrtinka + + + + 8th note + Osminka + + + + 16th note + Šestnajstinka + + + + 32nd note + 32-inka + + + + Custom... + Po meri... + + + + Custom + Po meri + + + + Synced to Eight Beats + Sinhronizirano na osem dob + + + + Synced to Whole Note + Sinhronizirano na celinko + + + + Synced to Half Note + Sinhronizirano na polovinko + + + + Synced to Quarter Note + Sinhronizirano na četrtinko + + + + Synced to 8th Note + Sinhronizirano na osminko + + + + Synced to 16th Note + Sinhronizirano na šestnajstinko + + + + Synced to 32nd Note + Sinhronizirano na 32-inko + + + + lmms::gui::TimeDisplayWidget + + + Time units + Enote za čas + + + + MIN + MIN + + + + SEC + SEK + + + + MSEC + MSEK + + + + BAR + TAKT + + + + BEAT + DOB + + + + TICK + UTRIP + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + Samodejno drsenje + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + Točke povratka zanke: + + + + After stopping go back to beginning + Po zaustavitvi se vrni na začetek + + + + After stopping go back to position at which playing was started + Po zaustavitvi se vrni na začetno mesto predvajanja + + + + After stopping keep position + Po zaustavitvi ostani na položaju + + + + Hint + Namig + + + + Press <%1> to disable magnetic loop points. + Pritisni <%1> za izklop magnetnih točk zanke. + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + Prilepi + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + Pritisnite <%1>, ko kliknete na oprijem za premikanje, da začnete postopek vleči in spusti. + + + + Actions + Dejanja + + + + + Mute + Utišaj + + + + + Solo + Solo + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + Če stezo odstranite, je ni mogoče povrniti. Ali res želite odstraniti stezo "%1"? + + + + Confirm removal + Potrdi odstranitev + + + + Don't ask again + Tega več ne sprašuj + + + + Clone this track + Kloniraj to stezo + + + + Remove this track + Odstrani to stezo + + + + Clear this track + Počisti to stezo + + + + Channel %1: %2 + Kanal %1: %2 + + + + Assign to new Mixer Channel + Dodeli novemu mešalnemu kanalu + + + + Turn all recording on + Vklopi snemanje vseh + + + + Turn all recording off + Izklopi snemanje vseh + + + + Track color + Barva steze + + + + Change + Spremeni + + + + Reset + Ponastavi + + + + Pick random + Izberi naključno + + + + Reset clip colors + Ponastavi barve izsekov + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + Moduliraj fazo oscilatorja 1 za oscilator 2 + + + + Modulate amplitude of oscillator 1 by oscillator 2 + Moduliraj amplitudo oscilatorja 1 za oscilator 2 + + + + Mix output of oscillators 1 & 2 + Miksaj izhoda oscilatorjev 1 & 2 + + + + Synchronize oscillator 1 with oscillator 2 + Sinhroniziraj oscilator 1 z oscilatorjem 2 + + + + Modulate frequency of oscillator 1 by oscillator 2 + Moduliraj frekvenco oscilatorja 1 za oscilator 2 + + + + Modulate phase of oscillator 2 by oscillator 3 + Moduliraj fazo oscilatorja 2 za oscilator 3 + + + + Modulate amplitude of oscillator 2 by oscillator 3 + Moduliraj amplitudo oscilatorja 2 za oscilator 3 + + + + Mix output of oscillators 2 & 3 + Miksaj izhoda oscilatorjev 2 & 3 + + + + Synchronize oscillator 2 with oscillator 3 + Sinhroniziraj oscilator 2 z oscilatorjem 3 + + + + Modulate frequency of oscillator 2 by oscillator 3 + Moduliraj frekvenco oscilatorja 2 za oscilator 3 + + + + Osc %1 volume: + Osc %1 glasnost: + + + + Osc %1 panning: + Osc %1 panorama: + + + + Osc %1 coarse detuning: + Osc %1 groba razglasitev: + + + + semitones + poltonov + + + + Osc %1 fine detuning left: + Osc %1 fina razglasitev levo: + + + + + cents + stotinov + + + + Osc %1 fine detuning right: + Osc %1 fina razglasitev desno: + + + + Osc %1 phase-offset: + Osc %1 fazni zamik: + + + + + degrees + stopinj + + + + Osc %1 stereo phase-detuning: + Osc %1 stereo fazna razglasitev: + + + + Sine wave + Sinusna oblika + + + + Triangle wave + Trikotna oblika + + + + Saw wave + Žagasta oblika + + + Square wave - + Pravokotna oblika - White noise wave - + + Moog-like saw wave + Moogu podoben žagasti val - User defined wave - + + Exponential wave + Eksponentni val - Smooth - + + White noise + Beli šum - Click here to smooth waveform. - + + User-defined wave + Uporabniško določena oblika - 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. - + + Use alias-free wavetable oscillators. + Uporabi oscilatorje tabel valovnih oblik brez nadimkov - voiceObject + lmms::gui::VecControlsDialog - Voice %1 pulse width - + + HQ + HQ - Voice %1 attack - + + Double the resolution and simulate continuous analog-like trace. + Podvoji ločljivosti in simulira kontinuirano sledenje podobno analogemu. - Voice %1 decay - + + Log. scale + Log. skala - Voice %1 sustain - + + Display amplitude on logarithmic scale to better see small values. + Prikaži amplitudio na logaritmični skali, da se bolje vidijo majhne vrednosti. - Voice %1 release - + + Persist. + Obstojn. - Voice %1 coarse detuning - + + Trace persistence: higher amount means the trace will stay bright for longer time. + Obstojnost sledi: večja količina pomeni, da bo sled ostala dalj časa vidna - Voice %1 wave shape - - - - Voice %1 sync - - - - Voice %1 ring modulate - - - - Voice %1 filtered - - - - Voice %1 test - + + Trace persistence + Obstojnost sledi - waveShaperControlDialog + lmms::gui::VersionedSaveDialog - INPUT - + + Increment version number + Povečanje številke različice - Input gain: - + + Decrement version number + Zmanjšanje številke različice - OUTPUT - + + Save Options + Možnosti shranjevanja - Output gain: - + + already exists. Do you want to replace it? + že obstaja. Želite nadomestiti? + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + Odpri VST vtičnik - Reset waveform - + + Control VST plugin from LMMS host + Nadzor VST vtičnika z LMMS gostitelja - Click here to reset the wavegraph back to default - + + Open VST plugin preset + Oppri predlogo VST vtičnika + + Previous (-) + Nazaj (-) + + + + Save preset + Shrani predlogo + + + + Next (+) + Naprej (+) + + + + Show/hide GUI + Prikaži/skrij grafični vmesnik + + + + Turn off all notes + Izklopi vse note + + + + DLL-files (*.dll) + DLL-datoteke (*.dll) + + + + EXE-files (*.exe) + EXE-datoteke (*.exe) + + + + SO-files (*.so) + SO-datoteke (*.so) + + + + No VST plugin loaded + VS vtičnik ni naložen + + + + Preset + Predloga + + + + by + od + + + + - VST plugin control + - nadzor VST vtičnika + + + + lmms::gui::VibedView + + + Enable waveform + Vklopi valovno obliko + + + + Smooth waveform - + Glajenje valovne oblike - Click here to apply smoothing to wavegraph - + + + Normalize waveform + Normalizacija valovne oblike - Increase graph amplitude by 1dB - + + + Sine wave + Sinusna oblika - Click here to increase wavegraph amplitude by 1dB - + + + Triangle wave + Trikotna oblika - Decrease graph amplitude by 1dB - + + + Saw wave + Žagasta oblika - Click here to decrease wavegraph amplitude by 1dB - + + + Square wave + Pravokotna oblika - Clip input - + + + White noise + Beli šum - Clip input signal to 0dB - + + + User-defined wave + Uporabniško določena oblika + + + + String volume: + Glasnost strune: + + + + String stiffness: + Togost strune: + + + + Pick position: + Položaj odjema: + + + + Pickup position: + Položaj odjemalca: + + + + String panning: + Panorama strune: + + + + String detune: + Razglašenost strune: + + + + String fuzziness: + Popačenost strune: + + + + String length: + Dolžina strune: + + + + Impulse Editor + Urejevalnik impulzov + + + + Impulse + Impulz + + + + Enable/disable string + Omogoči/onemogoči struno + + + + Octave + Oktava + + + + String + Struna - waveShaperControls + lmms::gui::VstEffectControlDialog - Input gain - + + Show/hide + Prikaži/Skrij - Output gain - + + Control VST plugin from LMMS host + Nadzor VST vtičnika z LMMS gostitelja + + + + Open VST plugin preset + Oppri predlogo VST vtičnika + + + + Previous (-) + Nazaj (-) + + + + Next (+) + Naprej (+) + + + + Save preset + Shrani predlogo + + + + + Effect by: + Učinek od: + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + lmms::gui::WatsynView + + + + + + Volume + Glasnost + + + + + + + Panning + Panorama + + + + + + + Freq. multiplier + Množilnik frekv. + + + + + + + Left detune + Razglasi levo + + + + + + + + + + + cents + stotini + + + + + + + Right detune + Razglasi desno + + + + A-B Mix + A-B Miks + + + + Mix envelope amount + Miks ovoj količina + + + + Mix envelope attack + Miks ovoj napad + + + + Mix envelope hold + Miks ovoj zadrži + + + + Mix envelope decay + Miks ovoj upad + + + + Crosstalk + Navzkrižno + + + + Select oscillator A1 + Izberi oscilator A1 + + + + Select oscillator A2 + Izberi oscilator A2 + + + + Select oscillator B1 + Izberi oscilator B1 + + + + Select oscillator B2 + Izberi oscilator B2 + + + + Mix output of A2 to A1 + Miksaj izhod od A2 k A1 + + + + Modulate amplitude of A1 by output of A2 + Moduliraj amplitudo za A1 iz izhoda A2 + + + + Ring modulate A1 and A2 + Zvonjenje modulacija A1 in A2 + + + + Modulate phase of A1 by output of A2 + Moduliraj fazo za A1 iz izhoda A2 + + + + Mix output of B2 to B1 + Miksaj izhod od B2 k B1 + + + + Modulate amplitude of B1 by output of B2 + Moduliraj amplitudo za B1 iz izhoda B2 + + + + Ring modulate B1 and B2 + Zvonjenje modulacija B1 in B2 + + + + Modulate phase of B1 by output of B2 + Moduliraj fazo za B1 iz izhoda B2 + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + Tu narišite svojo valovno obliko s vlečenjem miške po tem grafu. + + + + Load waveform + Naloži valovno obliko + + + + Load a waveform from a sample file + Naloži valovno obliko iz vzorčne datoteke + + + + Phase left + Faza levo + + + + Shift phase by -15 degrees + Premakni fazo za -15 stopinj + + + + Phase right + Faza desno + + + + Shift phase by +15 degrees + Premakni fazo za +15 stopinj + + + + + Normalize + Normalizacija + + + + + Invert + Inverzno + + + + + Smooth + Glajenje + + + + + Sine wave + Sinusna oblika + + + + + + Triangle wave + Trikotna oblika + + + + Saw wave + Žagasta oblika + + + + + Square wave + Pravokotna oblika + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + VHOD + + + + Input gain: + Vhodna jakost: + + + + OUTPUT + IZHOD + + + + Output gain: + Izhodna jakost: + + + + + Reset wavegraph + Ponastavi valovni graf + + + + + Smooth wavegraph + Glajenje valovnega grafa + + + + + Increase wavegraph amplitude by 1 dB + Povečaj amplitudo valovnega grafa za 1 dB + + + + + Decrease wavegraph amplitude by 1 dB + Zmanjšaj amplitudo valovnega grafa za 1 dB + + + + Clip input + Rezanje vhoda + + + + Clip input signal to 0 dB + Rezanje vhodnega signala na 0 dB + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + Tu narišite svojo valovno obliko s vlečenjem miške po tem grafu. + + + + Select oscillator W1 + Izberi oscilator W1 + + + + Select oscillator W2 + Izberi oscilator W2 + + + + Select oscillator W3 + Izberi oscilator W3 + + + + Select output O1 + Izberi izhod O1 + + + + Select output O2 + Izberi izhod O2 + + + + Open help window + Odpri okno s pomočjo + + + + + Sine wave + Sinusna oblika + + + + + Moog-saw wave + Moog-žagasti val + + + + + Exponential wave + Eksponentni val + + + + + Saw wave + Žagasta oblika + + + + + User-defined wave + Uporabniško oblikovan vala + + + + + Triangle wave + Trikotna oblika + + + + + Square wave + Pravokotna oblika + + + + + White noise + Beli šum + + + + WaveInterpolate + InterpolacijaVala + + + + ExpressionValid + IzrazVeljaven + + + + General purpose 1: + Splošni namen 1: + + + + General purpose 2: + Splošni namen 2: + + + + General purpose 3: + Splošni namen 3: + + + + O1 panning: + O1 panorama: + + + + O2 panning: + O2 panorama: + + + + Release transition: + Tranzicija spusta: + + + + Smoothness + Zglajenost + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + Portamento: + + + + PORT + PORT + + + + Filter frequency: + Frekvenca filtra: + + + + FREQ + FREKV + + + + Filter resonance: + Resonanca filtra: + + + + RES + LOČ + + + + Bandwidth: + Pasovna širina: + + + + BW + + + + + FM gain: + FM jakost: + + + + FM GAIN + FM JAKOST + + + + Resonance center frequency: + Središčna frekvenca resonance + + + + RES CF + LOČ SF + + + + Resonance bandwidth: + Pasovna širina resonance: + + + + RES BW + LOČ PŠ + + + + Forward MIDI control changes + Posreduj MIDI spremembe kontrole + + + + Show GUI + Prikaži grafični vmesnik \ No newline at end of file diff --git a/data/locale/sr.ts b/data/locale/sr.ts index f746c74d3..557890f35 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 + MixerChannelView 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 @@ -2956,7 +2956,7 @@ You can remove and move FX channels in the context menu, which is accessed by ri - InstrumentMiscView + InstrumentTuningView MASTER PITCH @@ -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 + MixerChannelLcdSpinBox 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 56cf1a0af..ec65769c5 100644 --- a/data/locale/sv.ts +++ b/data/locale/sv.ts @@ -1,6252 +1,15091 @@ - + 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. + Upphovsrätt © %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 - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL - - - - Volume: - Volym: - - - - PAN - PAN - - - - Panning: - Panorering: - - - - LEFT - VÄNSTER - - - - Left gain: - Vänsterförstärkning: - - - - RIGHT - HÖGER - - - - Right gain: - Högerförstärkning: - - - - AmplifierControls - - - Volume - Volym - - - - Panning - Panorering - - - - Left gain - Vänsterförstärkning - - - - Right gain - Högerförstärkning - - - - AudioAlsaSetupWidget - - - DEVICE - ENHET - - - - CHANNELS - KANALER - - - - AudioFileProcessorView - - - Open other sample - Öppna annan 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. - - - - 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: - 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: - 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: - - - - 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 - - - - CHANNELS - KANALER - - - - AudioOss::setupWidget - - - DEVICE - ENHET - - - - CHANNELS - KANALER - - - - AudioPortAudio::setupWidget - - - BACKEND - BACKEND - - - - DEVICE - ENHET - - - - AudioPulseAudio::setupWidget - - - DEVICE - ENHET - - - - CHANNELS - KANALER - - - - AudioSdl::setupWidget - - - DEVICE - ENHET - - - - AudioSndio::setupWidget - - - DEVICE - ENHET - - - - CHANNELS - KANALER - - - - AudioSoundIo::setupWidget - - - BACKEND - BAKÄNDE - - - - DEVICE - ENHET - - - - AutomatableModel - - - &Reset (%1%2) - &Nollställ (%1%2) - - - - &Copy value (%1%2) - &Kopiera värde (%1%2) - - - - &Paste value (%1%2) - &Klistra in värde (%1%2) - - - - Edit song-global automation - Redigera låt-global automation - - - - Remove song-global automation - Ta bort global automation - - - - Remove all linked controls - Ta bort alla kopplade kontroller - - - - Connected to %1 - Kopplad till %1 - - - - Connected to controller - Kopplad till controller - - - - Edit connection... - Redigera koppling... - - - - Remove connection - Ta bort koppling - - - - Connect to controller... - Koppla till kontroller... - - - - AutomationEditor - - - Please open an automation pattern 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) - 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) - 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) - - - - 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 - - - - 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. + + About JUCE - - - Automation Editor - no pattern - Redigera Automation - inget automationsmönster - - - - - Automation Editor - %1 - Redigera Automation - %1 - - - - Model is already connected to this pattern. - Modellen är redan ansluten till det här mönstret. - - - - AutomationPattern - - - Drag a control while pressing <%1> - Dra en kontroll samtidigt som du håller <%1> - - - - AutomationPatternView - - - 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 + + <b>About JUCE</b> - - 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. - Modellen är redan ansluten till det här mönstret. - - - - AutomationTrack - - - Automation track - Automationsspår - - - - BBEditor - - - Beat+Bassline Editor - Takt+Basgång-redigeraren - - - - 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) - - - - 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 - - - - 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 - - - Open in Beat+Bassline-Editor - Öppna 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 - - - Beat/Bassline %1 - Takt/Basgång %1 - - - - Clone of %1 - Kopia av %1 - - - - BassBoosterControlDialog - - - FREQ - FREQ - - - - Frequency: - Frekvens: - - - - GAIN - FÖRSTÄRKNING - - - - Gain: - Förstärkning: - - - - RATIO - FÖRHÅLLANDE - - - - Ratio: - Förhållande: - - - - BassBoosterControls - - - Frequency - Frekvens - - - - Gain - Förstärkning - - - - Ratio - Förhållande - - - - BitcrushControlDialog - - - IN - IN - - - - OUT - UT - - - - - GAIN - FÖRSTÄRKNING - - - - Input Gain: - Ingång förstärkning: - - - - NOISE - BRUS - - - - Input Noise: + + This program uses JUCE version 3.x.x. - - Output Gain: - Output Förstärkning - - - - CLIP - KLIPP - - - - Output Clip: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - - Rate Enabled - Hastighet Aktiverad + + This program uses JUCE version + + + + + AudioDeviceSetupWidget + + + [System Default] + + + + + CarlaAboutW + + + About Carla + Om Carla - - Enable samplerate-crushing + + 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>Upphovsrätt (C) 2011-2019 falkTX<br> + + + + + (Engine not running) + (Motorn inte igång) + + + + Everything! (Including LRDF) + Allt! (Inklusive LRDF) + + + + Everything! (Including CustomData/Chunks) + Allting! (Inklusive CustomData/Chunks) + + + + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + Om 110&#37; komplett (med anpassade tillägg)<br/>Implementerad funktion/tillägg:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + + + + + + Using Juce host + Använder Juce-värd + + + + About 85% complete (missing vst bank/presets and some minor stuff) + Omkring 85% färdigställt (saknar vst-bank/förinställningar och vissa mindre grejor) + + + + CarlaHostW + + + MainWindow + HuvudFönster + + + + Rack + Rack + + + + Patchbay + Kopplingsplint + + + + Logs + Loggar + + + + Loading... + Läser in... + + + + Save - - Depth Enabled + + Clear - - Enable bitdepth-crushing + + Ctrl+L - - FREQ - FREKV. + + Auto-Scroll + - - Sample rate: + + Buffer Size: + Buffertstorlek: + + + + Sample Rate: Samplingsfrekvens: - - STEREO - STEREO + + ? Xruns + ? Överskridanden - - Stereo difference: - Stereo skillnad: + + DSP Load: %p% + DSP-belastning: %p% - - QUANT - + + &File + &Arkiv - - Levels: - Nivåer: + + &Engine + &Motor - - - CaptionMenu - + + &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) - - - - CarlaInstrumentView - - - Show GUI - Visa användargränssnitt - - - - 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. - - - - Controller - - - Controller %1 - Kontroller %1 - - - - ControllerConnectionDialog - - - Connection Settings - Kopplingsinställningar - - - - MIDI CONTROLLER - MIDI-KONTROLLER - - - - Input channel - Ingångskanal - - - - CHANNEL - KANAL - - - - Input controller - Ingångsregulator - - - - CONTROLLER - KONTROLLER - - - - - Auto Detect - Upptäck Automatiskt - - - - MIDI-devices to receive MIDI-events from - MIDI-enheter för att ta emot MIDI-händelser från - - - - USER CONTROLLER - ANVÄNDARKONTROLLER - - - - MAPPING FUNCTION - KARTLÄGGNINGSFUNKTION - - - - OK - OK - - - - Cancel - Avbryt - - - - LMMS - LMMS - - - - Cycle Detected. - - - - - ControllerRackView - - - Controller Rack - Kontrollrack - - - - Add - Lägg till - - - - Confirm Delete - Bekräfta Borttagning - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Vill du verkligen ta bort? Det finns kopplingar till den här kontrollern, och operationen går inte ångra. - - - - ControllerView - - - Controls - Kontroller - - - - 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 - - - - CrossoverEQControlDialog - - - Band 1/2 Crossover: + + Tool Bar - - Band 2/3 Crossover: - + + Disk + Disk - - Band 3/4 Crossover: - + + + Home + Hem - - Band 1 Gain: - Band 1 Förstärkn.: + + Transport + Transport - - Band 2 Gain: - Band 2 Förstärkn.: + + Playback Controls + Uppspelningskontroller - - Band 3 Gain: - Band 3 Förstärkn.: + + Time Information + Tidinformation - - Band 4 Gain: - Band 4 Förstärkn.: + + Frame: + Bild: - - Band 1 Mute - Band 1 Tyst + + 000'000'000 + 000'000'000 - - Mute Band 1 - Tysta Band 1 - - - - Band 2 Mute - Band 2 Tyst - - - - Mute Band 2 - Tysta Band 2 - - - - Band 3 Mute - Band 3 Tyst - - - - Mute Band 3 - Tysta Band 3 - - - - Band 4 Mute - Band 4 Tyst - - - - Mute Band 4 - Tysta Band 4 - - - - DelayControls - - - Delay Samples - Fördröj samplingar - - - - Feedback - Återkoppling - - - - Lfo Frequency - Lfo-frekvens - - - - Lfo Amount - Lfo-mängd - - - - Output gain - Utgångsförstärkning - - - - DelayControlsDialog - - - DELAY - FÖRDRÖJNING - - - - Delay Time - Tidsfördröjning - - - - FDBK - - - - - Feedback Amount - Återgivningsmängd - - - - RATE - HASTIGHET - - - - Lfo - Lfo - - - - AMNT - - - - - Lfo Amt - - - - - Out Gain - Ut-förstärkning - - - - Gain - Förstärkning - - - - DualFilterControlDialog - - - - FREQ - FREKV. - - - - - Cutoff frequency - Cutoff frekvens - - - - - RESO - RESO - - - - - Resonance - Resonans - - - - - GAIN - FÖRST. - - - - - Gain - Förstärkning - - - - MIX - MIX - - - - Mix - Mix - - - - Filter 1 enabled - Filter 1 aktiverat - - - - Filter 2 enabled - Filter 2 aktiverat - - - - Click to enable/disable Filter 1 - Klicka för att aktivera/inaktivera Filter 1 - - - - Click to enable/disable Filter 2 - Klicka för att aktivera/inaktivera Filter 2 - - - - DualFilterControls - - - Filter 1 enabled - Filter 1 aktiverat - - - - Filter 1 type - Filter 1 typ - - - - Cutoff 1 frequency - Cutoff 1 frekvens - - - - Q/Resonance 1 - Q/Resonans 1 - - - - Gain 1 - Förstärkning 1 - - - - Mix - Mix - - - - Filter 2 enabled - Filter 2 aktiverat - - - - Filter 2 type - Filter 2 typ - - - - Cutoff 2 frequency - Cutoff 2 frekvens - - - - Q/Resonance 2 - Q/Resonans 2 - - - - Gain 2 - Förstärkning 2 - - - - - LowPass - Lågpass - - - - - HiPass - Högpass - - - - - BandPass csg - BandPass csg - - - - - BandPass czpg - BandPass czpg - - - - - Notch - - - - - - Allpass - Allpass - - - - - Moog - Moog - - - - - 2x LowPass - 2x Lågpass - - - - - RC LowPass 12dB - RC Lågpass 12dB - - - - - RC BandPass 12dB - RC BandPass 12dB - - - - - RC HighPass 12dB - RC Högpass 12dB - - - - - RC LowPass 24dB - RC Lågpass 24dB - - - - - RC BandPass 24dB - RC BandPass 24dB - - - - - RC HighPass 24dB - RC Högpass 24dB - - - - - Vocal Formant Filter - - - - - - 2x Moog - 2x Moog - - - - - SV LowPass - SV Lågpass - - - - - SV BandPass - SV BandPass - - - - - SV HighPass - SV Högpass - - - - - SV Notch - - - - - - Fast Formant - - - - - - Tripole - - - - - Editor - - - Transport controls - Transportkontroller - - - - Play (Space) - Play (Mellanslag) - - - - Stop (Space) - Stop (Mellanslag) - - - - Record - Spela in - - - - Record while playing - Spela in under uppspelningen - - - - Effect - - - Effect enabled - Effekt aktiverad - - - - Wet/Dry mix - Blöt/Torr mix - - - - Gate - Gate - - - - Decay - Förfall - - - - EffectChain - - - Effects enabled - Effekter aktiverade - - - - EffectRackView - - - EFFECTS CHAIN - EFFEKTKEDJA - - - - Add effect - Lägg till effekt - - - - EffectSelectDialog - - - Add effect - Lägg till effekt - - - - - Name - Namn - - - - Type - Typ - - - - Description - Beskrivning - - - - Author - Författare - - - - EffectView - - - Toggles the effect on or off. - Slår på eller av effekten. - - - - On/Off - På/Av - - - - W/D - - - - - 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 - - - - + 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. + + 00:00:00 + 00:00:00 + + + + BBT: + BBT: + + + + 000|00|0000 + 000|00|0000 + + + + Settings + Inställningar + + + + BPM + BPM + + + + Use JACK Transport + Använd JACK-transport + + + + Use Ableton Link + Använd Ableton Link + + + + &New + &Ny + + + + Ctrl+N + Ctrl+N + + + + &Open... + &Öppna... + + + + + Open... + Öppna... + + + + Ctrl+O + Ctrl+O + + + + &Save + &Spara + + + + Ctrl+S + Ctrl+S + + + + Save &As... + Spara &som... + + + + + Save As... + Spara som... + + + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Quit + &Avsluta + + + + Ctrl+Q + Ctrl+Q + + + + &Start + &Starta + + + + F5 + F5 + + + + St&op + St&opp + + + + F6 + F6 + + + + &Add Plugin... + &Lägg till tillägg... + + + + Ctrl+A + Ctrl+A + + + + &Remove All + &Ta bort alla + + + + Enable + Aktivera + + + + Disable + Inaktivera + + + + 0% Wet (Bypass) + 0% effekt (förbikoppla) + + + + 100% Wet + 100% effekt + + + + 0% Volume (Mute) + 0% volym (tyst) + + + + 100% Volume + 100% volym + + + + Center Balance + Centrumbalans + + + + &Play + &Spela + + + + Ctrl+Shift+P + Ctrl+Shift+P + + + + &Stop + &Stopp + + + + Ctrl+Shift+X + Ctrl+Shift+X + + + + &Backwards + &Bakåt + + + + Ctrl+Shift+B + Ctrl+Shift+B + + + + &Forwards + &Framåt + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + &Arrangera + + + + Ctrl+G + Ctrl+G + + + + + &Refresh + &Uppdatera + + + + Ctrl+R + Ctrl+R + + + + Save &Image... + Spara &bild... + + + + Auto-Fit + Autoanpassa + + + + Zoom In + Zooma in + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + Zooma ut + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + Zooma 100% + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + Visa &verktygsfält + + + + &Configure Carla + &Konfigurera Carla + + + + &About + &Om + + + + About &JUCE + Om &JUCE + + + + About &Qt + Om &Qt + + + + Show Canvas &Meters + Visa Duk&mätare + + + + Show Canvas &Keyboard + Visa Duk&tangentbord + + + + Show Internal + Visa intern + + + + Show External + Visa extern + + + + Show Time Panel + Visa tidspanel + + + + Show &Side Panel + Visa &sidopanel + + + + Ctrl+P - - GATE - GATE + + &Connect... + &Anslut... - - Gate: - Gate: + + Compact Slots + Komprimera fack - - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. + + Expand Slots + Expandera fack + + + + Perform secret 1 + Utför hemlighet 1 + + + + Perform secret 2 + Utför hemlighet 2 + + + + Perform secret 3 + Utför hemlighet 3 + + + + Perform secret 4 + Utför hemlighet 4 + + + + Perform secret 5 + Utför hemlighet 5 + + + + Add &JACK Application... + Lägg till &JACK-program… + + + + &Configure driver... + &Konfigurera drivrutin... + + + + Panic + Panik + + + + Open custom driver panel... + Öppna anpassad drivrutinspanel… + + + + Save Image... (2x zoom) - - 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. + + Save Image... (4x zoom) - - Move &up - Flytta &upp - - - - Move &down - Flytta &ner - - - - &Remove this plugin - &Ta bort den här insticksmodulen - - - - EnvelopeAndLfoParameters - - - Predelay - För-fördröjning - - - - Attack - Attack - - - - Hold - Hold - - - - Decay - Decay - - - - Sustain - Sustain - - - - Release - Release - - - - Modulation - Modulering - - - - LFO Predelay + + Copy as Image to Clipboard - - LFO Attack - LFO-Attack - - - - LFO speed - LFO-hastighet - - - - LFO Modulation - LFO-Modulering - - - - LFO Wave Shape - LFO-vågform - - - - Freq x 100 - Frekv. x 100 - - - - Modulate Env-Amount - Modulera Env-mängd - - - - EnvelopeAndLfoView - - - - DEL - RAD - - - - Predelay: - För-fö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: - - - - 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-frekvensen med 100 - - - - MODULATE ENV-AMOUNT - - - - - 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. - - - - EqControls - - - Input gain - Ingångsförstärkning - - - - Output gain - Utgångsförstärkning - - - - 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 aktiv - - - - LP 12 - LP 12 - - - - LP 24 - LP 24 - - - - LP 48 - LP 48 - - - - HP 12 - HP 12 - - - - HP 24 - HP 24 - - - - HP 48 - HP 48 - - - - low pass type - Lågpass-typ - - - - high pass type - Högpass-typ - - - - Analyse IN - Analysera IN - - - - Analyse OUT - Analysera UT - - - - EqControlsDialog - - - HP - HP - - - - Low Shelf - - - - - Peak 1 - - - - - Peak 2 - - - - - Peak 3 - - - - - Peak 4 - - - - - High Shelf - - - - - LP - LP - - - - In Gain - In-förstärkning - - - - - - Gain - Förstärkning - - - - Out Gain - Ut-förstärkning - - - - Bandwidth: - Bandbredd: - - - - Octave - Oktav - - - - Resonance : - Resonans: - - - - Frequency: - Frekvens: - - - - lp grp - - - - - hp grp + + Ctrl+Shift+C - EqHandle + CarlaHostWindow - - Reso: - Reso.: + + Export as... + Exportera som... - - BW: + + + + + 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? + + + + CarlaSettingsW + + + 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 + + + + Use "Classic" as default rack skin - - - Freq: - Frekv.: + + Interface refresh interval: + Gränssnittets uppdateringsintervall: + + + + + ms + ms + + + + Show console output in Logs tab (needs engine restart) + Visa konsolutmatning i Loggflik (kräver motoromstart) + + + + Show a confirmation dialog before quitting + Visa en bekräftelsedialog innan avslut + + + + + Theme + Tema + + + + Use Carla "PRO" theme (needs restart) + Använd Carla ”PRO”-tema (kräver omstart) + + + + Color scheme: + Färgschema: + + + + Black + Svart + + + + System + System + + + + Enable experimental features + Aktivera experimentella funktioner + + + + <b>Canvas</b> + <b>Duk</b> + + + + Bezier Lines + Bézierlinjer + + + + Theme: + Tema: + + + + Size: + Storlek: + + + + 775x600 + 775x600 + + + + 1550x1200 + 1550x1200 + + + + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 + + + + + Options + Alternativ + + + + Auto-hide groups with no ports + Dölj grupper utan portar automatiskt + + + + Auto-select items on hover + Automarkera objekt vid hovring + + + + Basic eye-candy (group shadows) + Grundläggande ögongodis (gruppskuggor) + + + + Render Hints + Renderingstips + + + + Anti-Aliasing + Kantutjämning + + + + Full canvas repaints (slower, but prevents drawing issues) + Fullständiga dukomritningar (långsammare, men förhindrar uppritningsproblem) + + + + <b>Engine</b> + <b>Motor</b> + + + + + Core + Kärna + + + + Single Client + Enkel klient + + + + Multiple Clients + Flera klienter + + + + + Continuous Rack + Kontinuerligt rack + + + + + Patchbay + Kopplingsplint + + + + Audio driver: + Ljuddrivrutin: + + + + Process mode: + Hanteringsläge: + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + Maximalt antal parametrar att tillåta i den inbyggda ”Redigera”-dialogen + + + + Max Parameters: + Max parametrar: + + + + ... + ... + + + + Reset Xrun counter after project load + Återställ Överskridsräknaren efter projektinläsning + + + + Plugin UIs + Tilläggsgränssnitt + + + + + How much time to wait for OSC GUIs to ping back the host + Hur lång tid att vänta för OSC-användargränssnitt att pinga tillbaka till värden + + + + UI Bridge Timeout: + Tidsgräns för användargränssnittsbryggor: + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + Använd OSC-GUI-bryggor när möjligt, för att på detta sätt separera användargränssnittet från DSP-koden. + + + + Use UI bridges instead of direct handling when possible + Använd gränssnittsbryggor istället för direkthantering när möjligt + + + + Make plugin UIs always-on-top + Placera alltid tilläggsgränssnitt överst + + + + Make plugin UIs appear on top of Carla (needs restart) + Placera tilläggsgränssnitt ovanpå Carla (kräver omstart) + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + OBSERVERA: Tilläggsgränssnitt över bryggor kan inte hanteras av Carla på macOS + + + + + Restart the engine to load the new settings + Starta om motorn för att läsa in de nya inställningarna + + + + <b>OSC</b> + <b>OSC</b> + + + + Enable OSC + Aktivera OSC + + + + Enable TCP port + Aktivera TCP-port + + + + + Use specific port: + Använd specifik port: + + + + Overridden by CARLA_OSC_TCP_PORT env var + Åsidosatt av miljövariabeln CARLA_OSC_TCP_PORT + + + + + Use randomly assigned port + Använd slumpmässigt tilldelad port + + + + Enable UDP port + Aktivera UDP-port + + + + Overridden by CARLA_OSC_UDP_PORT env var + Åsidosatt av miljövariabeln CARLA_OSC_UDP_PORT + + + + DSSI UIs require OSC UDP port enabled + DSSI-användargränssnit kräver att OSC UDP-port är aktiverad + + + + <b>File Paths</b> + <b>Filsökvägar</b> + + + + Audio + Ljud + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + Används för tillägget "audiofile" + + + + Used for the "midifile" plugin + Används för tillägget "midifile" + + + + + Add... + Lägg till... + + + + + Remove + Ta bort + + + + + Change... + Ändra... + + + + <b>Plugin Paths</b> + <b>Tilläggssökvägar</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + Starta om Carla för att hitta nya tillägg + + + + <b>Wine</b> + <b>Wine</b> + + + + Executable + Körbar + + + + Path to 'wine' binary: + Sökväg till "wine"-binär: + + + + Prefix + Prefix + + + + Auto-detect Wine prefix based on plugin filename + Automatisk detektering av Wine-prefix baserat på filnamn för tillägg + + + + Fallback: + Reservinställning: + + + + Note: WINEPREFIX env var is preferred over this fallback + Notera: Miljövariabeln WINEPREFIX föredras framför denna reservinställning + + + + Realtime Priority + Realtidsprioritet + + + + Base priority: + Grundprioritet: + + + + WineServer priority: + WineServer-prioritet: + + + + These options are not available for Carla as plugin + Dessa alternativ finns inte tillgängliga för Carla som tillägg + + + + <b>Experimental</b> + <b>Experimentell</b> + + + + Experimental options! Likely to be unstable! + Experimentalla alternativ! Förmodligen instabila! + + + + Enable plugin bridges + Aktivera tilläggsbryggor + + + + Enable Wine bridges + Aktivera Wine-bryggor + + + + Enable jack applications + Aktivera jack-program + + + + Export single plugins to LV2 + Exportera enskilda tillägg till LV2 + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + Läs in Carla-bakände i global namnrymd (INTE REKOMMENDERAT) + + + + Fancy eye-candy (fade-in/out groups, glow connections) + Snyggt ögongodisk (grupper tonas in/ut, glödande anslutningar) + + + + Use OpenGL for rendering (needs restart) + Använd OpenGL för rendering (kräver omstart) + + + + High Quality Anti-Aliasing (OpenGL only) + Högkvalitativ kantutjämning (endast OpenGL) + + + + Render Ardour-style "Inline Displays" + Rendera Ardour-liknande ”inbyggda visningar” + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + Tvinga mono-tillägg att använda stereo genom att köra 2 instanser av det samtidigt. +Detta läge är inte tillgängligt för VST-tillägg. + + + + Force mono plugins as stereo + Tvinga mono-tillägg att vara stereo + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + Kör tillägg i bryggat läge när det är möjligt + + + + + + + Add Path + Lägg till sökväg + + + + Dialog + + + Carla Control - Connect + Carla-kontroll - Anslut + + + + Remote setup + Fjärrinställning + + + + UDP Port: + UDP-port: + + + + Remote host: + Fjärrvärd: + + + + TCP Port: + TCP-port: + + + + 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 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) + + + Start Starta - + Cancel Avbryt - - - Could not open file - Kunde inte öppna fil - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Det gick inte att öppna filen %1 för att skriva. -Se till att du har skrivbehörighet till filen och mappen som innehåller filen och försök igen! - - - - Export project to %1 - Exportera projekt till %1 - - - - Error - Fel - - - - Error while determining file-encoder device. Please try to choose a different output format. - Fel vid bestämning av filkodarenhet. Vänligen försök att välja ett annat utmatningsformat. - - - - Rendering: %1% - Renderar: %1% - - - - Fader - - - - Please enter a new value between %1 and %2: - Ange ett nytt värde mellan %1 och %2: - - - - FileBrowser - - - Browser - Bläddrare - - - - FileBrowserTreeWidget - - - Send to active instrument-track - Skicka till aktivt instrument-spår - - - - Open in new instrument-track/Song Editor - Öppna i nytt instrument-spår/Låt-redigeraren - - - - Open in new instrument-track/B+B Editor - - - - - 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 - - - - file - fil - - - - --- Factory files --- - --- Grundfiler --- - - - - FlangerControls - - - Delay Samples - Fördröj samplingar - - - - Lfo Frequency - Lfo-frekvens - - - - Seconds - Sekunder - - - - Regen - - - - - Noise - Brus - - - - Invert - Invertera - - - - FlangerControlsDialog - - - DELAY - FÖRDRÖJNING - - - - Delay Time: - Fördröjningstid: - - - - RATE - HASTIGHET - - - - Period: - Period: - - - - AMNT - - - - - Amount: - Mängd: - - - - FDBK - - - - - Feedback Amount: - - - - - NOISE - BRUS - - - - White Noise Amount: - - - - - Invert - Invertera - - - - FxLine - - - 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 - - - - FxMixer - - - Master - Master - - - - - - FX %1 - FX %1 - - - - Volume - Volym - - - - Mute - Tysta - - - - Solo - Solo - - - - FxMixerView - - - FX-Mixer - FX-Mixer - - - - FX Fader %1 - FX Fader %1 - - - - Mute - Tysta - - - - Mute this FX channel - Tysta denna FX-kanal - - - - Solo - Solo - - - - Solo FX channel - FX-kanal Solo - - - - FxRoute - - - - Amount to send from channel %1 to channel %2 - Mängd att skicka från kanal %1 till kanal %2 - - - - GigInstrument - - - Bank - Bank - - - - Patch - - - - - Gain - Förstärkning - - - - 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 - - - - GIG Files (*.gig) - GIG-filer (*.gig) - - - - GuiApplication - - - Working directory - Arbetsmapp - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Arbetsmappen %1 för LMMS finns inte. Vill du skapa denna nu? Du kan ändra mappen senare via Redigera -> Inställningar. - - - - Preparing UI - Förbereder användargränssnitt - - - - Preparing song editor - Förbereder låtredigeraren - - - - Preparing mixer - Förbereder mixer - - - - Preparing controller rack - Förbereder kontrollrack - - - - Preparing project notes - Förbereder projektanteckningar - - - - Preparing beat/bassline editor - Förbereder takt/basgång-redigeraren - - - - Preparing piano roll - Förbereder pianorulle - - - - Preparing automation editor - Förbereder automationsredigeraren - - - - InstrumentFunctionArpeggio - - - Arpeggio - Arpeggio - - - - Arpeggio type - Arpeggio-typ - - - - Arpeggio range - Arpeggio-omfång - - - - Cycle steps - - - - - Skip rate - - - - - Miss rate - - - - - Arpeggio time - Arpeggio-tid - - - - Arpeggio gate - - - - - Arpeggio direction - Arpeggio-riktning - - - - Arpeggio mode - Arpeggio-typ - - - - Up - Upp - - - - Down - Ner - - - - Up and down - Upp och ner - - - - Down and up - Ner och upp - - - - Random - Slumpmässig - - - - Free - Fritt - - - - Sort - Sortera - - - - Sync - Synkronisera - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - 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. - - - - - CYCLE - - - - - Cycle notes: - - - - - 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 - - - - - 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 - 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: - - - - - 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: - InstrumentFunctionNoteStacking - + octave oktav - - + + Major Dur - + Majb5 - + Majb5 - + minor moll - + minb5 - - - - - sus2 - - - - - sus4 - - - - - aug - - - - - augsus4 - - - - - tri - + mollb5 + sus2 + sus2 + + + + sus4 + sus4 + + + + aug + aug + + + + augsus4 + augsus4 + + + + tri + tre + + + 6 6 - + 6sus4 - + 6sus4 - + 6add9 - + 6add9 - + m6 - + m6 - + m6add9 - + m6add9 - + 7 7 - + 7sus4 - + 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 - + 7add11 - + 7add13 - + 7add13 - + 7#11 7#11 - - - Maj7 - - - - - Maj7b5 - - - - - Maj7#5 - - - - - Maj7#11 - - - - - Maj7add13 - - - - - m7 - - - m7b5 - + Maj7 + Maj7 - m7b9 - + Maj7b5 + Maj7b5 - m7add11 - + Maj7#5 + Maj7#5 - m7add13 - + Maj7#11 + Maj7#11 - m-Maj7 - + Maj7add13 + Maj7add13 - m-Maj7add11 - + m7 + m7 - m-Maj7add13 - + m7b5 + m7b5 + + + + m7b9 + m7b9 + m7add11 + m7add11 + + + + m7add13 + m7add13 + + + + m-Maj7 + m-Maj7 + + + + m-Maj7add11 + m-Maj7add11 + + + + m-Maj7add13 + m-Maj7add13 + + + 9 9 - + 9sus4 - + 9sus4 - + add9 - + add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - - - Maj9 - - - - - Maj9sus4 - - - - - Maj9#5 - - - - - Maj9#11 - - - - - m9 - - - - - madd9 - - - m9b5 - + Maj9 + Maj9 - m9-Maj7 - + Maj9sus4 + Maj9sus4 + + + + Maj9#5 + Maj9#5 + Maj9#11 + Maj9#11 + + + + m9 + m9 + + + + madd9 + madd9 + + + + m9b5 + m9b5 + + + + m9-Maj7 + m9-Maj7 + + + 11 11 - + 11b9 - + 11b9 - + Maj11 - + Maj11 - + m11 - + m11 - + m-Maj11 - + m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 - + Maj13 - + m13 - + m13 - + m-Maj13 - + m-Maj13 - + Harmonic minor Harmonisk moll - + Melodic minor Melodisk moll - + Whole tone Hela tonen - + Diminished Minskad - + Major pentatonic - + Dur pentatonisk - + Minor pentatonic - + Mollpentatonisk - + Jap in sen - + Jap in sen - + Major bebop - + Dur bebop - + Dominant bebop - + Dominant bebop - + Blues Blues - + Arabic Arabisk - + Enigmatic Gåtfull - - - Neopolitan - - - - - Neopolitan minor - - - - - Hungarian minor - - - - - Dorian - - - - - Phrygian - - - - - Lydian - - - Mixolydian - + Neopolitan + Napolitansk - Aeolian - + Neopolitan minor + Napolitansk moll - Locrian - + Hungarian minor + Ungersk moll + Dorian + Dorisk + + + + Phrygian + Frygisk + + + + Lydian + Lydisk + + + + Mixolydian + Mixolydisk + + + + Aeolian + Aeolisk + + + + Locrian + Lokrisk + + + Minor Moll - + Chromatic Kromatisk - + Half-Whole Diminished - + Halv-hel förminskad - + 5 5 - + Phrygian dominant - + Frygisk dominant - + Persian Persisk - - - Chords - Ackord - - - - Chord type - Ackordtyp - - - - Chord range - Ackordomfång - - - - InstrumentFunctionNoteStackingView - - - STACKING - STAPLA - - - - Chord: - Ackord: - - - - RANGE - OMFÅNG - - - - Chord range: - Ackordomfång: - - - - octave(s) - oktav(er) - - - - 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 - - - - NOTE - 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 - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity - - - - - BASE VELOCITY - BASHASTIGHET - - - - InstrumentMiscView - - - MASTER PITCH - - - - - Enables the use of Master Pitch - - InstrumentSoundShaping - + VOLUME VOLYM - + Volume Volym - + CUTOFF - + BRYTFRKV - - + Cutoff frequency Cutoff frekvens - + RESO RESO - + Resonance Resonans + + + JackAppDialog - - Envelopes/LFOs + + Add JACK Application - - Filter type - Filtertyp + + Note: Features not implemented yet are greyed out + - - Q/Resonance - Q/Resonans + + Application + - - LowPass - Lågpass + + Name: + - - HiPass - Högpass + + Application: + - - BandPass csg - BandPass csg + + From template + - - BandPass czpg - BandPass czpg + + Custom + - + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + + + + + JuceAboutW + + + This program uses JUCE version %1. + Detta program använder JUCE version %1. + + + + 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 + + + + Esc + + + + + &Insert Mode + &Infogningsläge + + + + F + F + + + + &Velocity Mode + &Hastighetsläge + + + + D + D + + + + Select All + Välj alla + + + + A + A + + + + 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 + + + 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 + + + + + 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 + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + + + + + PluginEdit + + + Plugin Editor + 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 Notes + + + + + Send Bank/Program Changes + Skicka bank-/programändringar + + + + Send Control Changes + Skicka kontrolländringar + + + + Send Channel Pressure + Skicka kanaltryck + + + + Send Note Aftertouch + Skicka efterberöring för noter + + + + Send Pitchbend + Skicka tonhöjdsböjning + + + + Send All Sound/Notes Off + Skicka alla ljud/noter av + + + + +Plugin Name + + +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. + Tillägget hittades inte. + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + LMMS-tillägget %1 har ingen tilläggsbeskrivning med namnet %2! + + + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + Form + + + + Parameter Name + Parameternamn + + + + TextLabel + + + + + ... + ... + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + 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: + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + Läs in tillägg igen + + + + Show GUI + Visa användargränssnitt + + + + Help + Hjälp + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + Namn: + + + + Maker: + Skapare: + + + + Copyright: + Copyright: + + + + Requires Real Time: + Kräver realtid: + + + + + + Yes + Ja + + + + + + No + Nej + + + + Real Time Capable: + Klarar realtid: + + + + In Place Broken: + Trasig på plats: + + + + Channels In: + Kanaler in: + + + + Channels Out: + Kanaler ut: + + + + File: %1 + Fil: %1 + + + + File: + Fil: + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + + + + + lmms::AudioFileProcessor + + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + Notch - - Allpass - Allpass - - - - Moog - Moog - - - - 2x LowPass - 2x Lågpass - - - - RC LowPass 12dB - RC Lågpass 12dB - - - - RC BandPass 12dB - RC BandPass 12dB - - - - RC HighPass 12dB - RC Högpass 12dB - - - - RC LowPass 24dB - RC Lågpass 24dB - - - - RC BandPass 24dB - RC BandPass 24dB - - - - RC HighPass 24dB - RC Högpass 24dB - - - - Vocal Formant Filter + + + All-pass - + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + 2x Moog - 2x Moog + - - SV LowPass - SV Lågpass + + + SV Low-pass + - - SV BandPass - SV BandPass + + + SV Band-pass + - - SV HighPass - SV Högpass + + + SV High-pass + - + + SV Notch - + + Fast Formant - + + Tripole - InstrumentSoundShapingView + lmms::DynProcControls - - 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...! + + Input gain - - FILTER - FILTER + + Output gain + - - 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. + + Attack time + - + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + FREQ - FREKV. - - - - cutoff frequency: - cutoff-frekvens: - - - - 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... - + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + RESO - RESO - - - - 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. - + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + Envelopes, LFOs and filters are not supported by the current instrument. - InstrumentTrack + lmms::gui::InstrumentTrackView - - 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 - - - - Volume - Volym - - - - Panning - Panorering - - - - Pitch - Tonhöjd - - - - Pitch range - Tonhöjdsomfång - - - - FX channel - FX-kanal - - - - Master Pitch + + Mixer channel - - - Default preset - Standardinställning - - - - InstrumentTrackView - - + Volume - Volym + - + Volume: - Volym: + - + VOL - VOL + - + Panning - Panorering + - + Panning: - Panorering: + - + PAN - PAN + - + MIDI - MIDI + - + Input - Ingång + - + Output - Utgång + - - FX %1: %2 - FX %1: %2 + + Open/Close MIDI CC Rack + + + + + %1: %2 + - InstrumentTrackWindow + lmms::gui::InstrumentTrackWindow - - GENERAL SETTINGS - ÖVERGRIPANDE INSTÄLLNINGAR + + Volume + - - 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. - - - - Instrument volume - Instrument-volym - - - + Volume: - Volym: + - + VOL - VOL + - + Panning - Panorering + - + Panning: - Panorering: + - + PAN - PAN + - + Pitch - Tonhöjd + - + Pitch: - Tonhöjd: + - + cents - + PITCH - + Pitch range (semitones) - + RANGE - OMFÅNG - - - - FX channel - FX-kanal - - - - FX - 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 + + Mixer channel + - + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + Envelope, filter & LFO - + Chord stacking & arpeggio - + Effects - Effekter + - - MIDI settings - MIDI-inställningar + + MIDI + - - Miscellaneous - Diverse + + Tuning and transposition + - + Save preset - Spara förinställning + - + XML preset file (*.xpf) - XML förinställnings-fil (*.xpf) + - + Plugin - Insticksmodul + - Knob + lmms::gui::InstrumentTuningView - - Set linear - Ställ in linjär + + GLOBAL TRANSPOSITION + - - Set logarithmic - Ställ in logaritmisk + + Enables the use of global transposition + - - 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: + + Microtuner is not available for MIDI-based instruments. + - - Please enter a new value between %1 and %2: - Ange ett nytt värde mellan %1 och %2: + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + - LadspaControl + lmms::gui::KickerInstrumentView - - Link channels - Länka kanaler + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + - LadspaControlDialog + lmms::gui::LOMMControlDialog - + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + Link Channels - Länka Kanaler + - + Channel - Kanal + - LadspaControlView + lmms::gui::LadspaControlView - + Link channels - Länka kanaler + - + Value: - Värde: - - - - Sorry, no help available. - Ledsen, ingen hjälp är tillgänglig. + - LadspaEffect + lmms::gui::LadspaDescription - - Unknown LADSPA plugin %1 requested. - Okänd LADSPA-insticksmodul %1 efterfrågad. + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + - LcdSpinBox + lmms::gui::LadspaMatrixControlDialog - - Please enter a new value between %1 and %2: - Ange ett nytt värde mellan %1 och %2: + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + - LeftRightNav + lmms::gui::LadspaPortDialog - - - - Previous - Tidigare + + Ports + - - - - Next - Nästa + + Name + - - Previous (%1) - Tidigare (%1) + + Rate + - - Next (%1) - Nästa (%1) + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + - LfoController + lmms::gui::Lb302SynthView - - LFO Controller + + Cutoff Freq: - - Base value - Basvärde - - - - Oscillator speed - Oscillatorhastighet - - - - Oscillator amount - Oscillatormängd - - - - Oscillator phase - Oscillatorfas - - - - Oscillator waveform - Oscillatorvågform - - - - Frequency Multiplier - Frekvens Multiplikator - - - - LfoControllerDialog - - - LFO - LFO - - - - LFO Controller + + Resonance: - - BASE + + Env Mod: - - Base amount: + + Decay: - - todo + + 303-es-que, 24dB/octave, 3 pole filter - - SPD - SPD - - - - LFO-speed: + + Slide Decay: - - Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. + + DIST: - - AMNT + + Saw wave - - 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 - - - - - Phase offset: - - - - - 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. - - - - - 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. - Klicka här för sågtandsvåg - - - - Click here for a square-wave. - Klicka här för fyrkantvåg. - - - - Click here for a moog 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. - Klicka här för vitt brus. + - - Click here for a user-defined shape. + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. Double click to pick a file. - Klicka här för en användardefinierad form. -Dubbelklicka för att välja en fil. - - - - LmmsCore - - - Generating wavetables - - Initializing data structures - Initierar datastrukturer + + Multiply modulation frequency by 1 + - - Opening audio and midi devices - Öppnar ljud- och midienheter + + Multiply modulation frequency by 100 + - - Launching mixer threads + + Divide modulation frequency by 100 - MainWindow + lmms::gui::LfoGraph - + + %1 Hz + + + + + lmms::gui::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 + + + + + Preparing file browsers + - Preparing plugin browser - Förbereder insticksmodulsbläddraren - - - - Preparing file browsers - Förbereder fil-browser + My Projects + - My Projects - Mina projekt + My Samples + - My Samples - Mina samplingar - - - My Presets - Mina förinställningar + - + My Home - Min hemmapp + - - Root directory - Rotmapp + + Root Directory + - + Volumes - Volymer + - + My Computer - Min dator + - - Loading background artwork - Laddar bakgrunds-grafik + + Loading background picture + - + &File - &Arkiv + - + &New - &Ny + - - New from template - Nytt från mall - - - + &Open... - &Öppna... + - - &Recently Opened Projects - &Nyligen öppnade projekt - - - + &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 + - + + Scales and keymaps + + + + 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 + + + + + Open existing project + + + + + Recently opened projects + - Create new project from template - Skapa nytt projekt från mall - - - - Open existing project - Öppna existerande projekt - - - - Recently opened projects - Nyligen öppnade projekt - - - Save current project - Spara aktuellt projekt + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + - Export current project - Exportera aktuellt projekt - - - - What's this? - Vad är detta? - - - - Toggle metronome - Slå på/av metronom - - - - Show/hide Song-Editor - Visa/dölj Låtredigeraren - - - - 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. - - - - Show/hide Beat+Bassline Editor - Visa/dölj Takt+Basgång-redigeraren - - - - 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. + + Pattern Editor - - 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. + + + Piano Roll - - 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. + + + Automation Editor - - 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 - - - - 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 - - + + 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. - 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 + + + + + Fullscreen + + + + Volume as dBFS - Volym som dBFS + - + Smooth scroll - Mjuk rullning + - + Enable note labels in piano roll - Visa noter i pianorulle + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + - MeterDialog + lmms::gui::MalletsInstrumentView - - + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + Meter Numerator - - + + Meter numerator + + + + + Meter Denominator - + + Meter denominator + + + + TIME SIG - MeterModel + lmms::gui::MicrotunerConfig - - Numerator - Täljare + + Selected scale slot + - - Denominator - Nämnare + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + - MidiController + lmms::gui::MidiCCRackView - - MIDI Controller - MIDI-styrenhet + + + MIDI CC Rack - %1 + - - unnamed_midi_controller - unnamed_midi_controller + + MIDI CC Knobs: + + + + + CC %1 + - MidiImport + lmms::gui::MidiClipView - - - Setup incomplete - Installation ofullständig + + + Transpose + - - 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. + + Semitones to transpose by: + - - 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. + + Open in piano-roll + - - Track - Spår + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + - MidiJack + lmms::gui::MidiSetupWidget - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK-server nerstängd - - - - The JACK server seems to be shuted down. - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) - JACK-servern verkar vara avstängd. + + Device + - MidiPort + lmms::gui::MixerChannelLcdSpinBox - - Input channel - Ingångskanal + + Assign to: + - - Output channel - Utgångskanal + + New Mixer Channel + - - Input controller - Ingångskontroller + + Please enter a new value between %1 and %2: + - - Output controller - Utgångskontroller - - - - Fixed input velocity - Fast ingångshastighet - - - - Fixed output velocity - Fast utgångshastighet - - - - Fixed output note - Fast utgångsnot - - - - Output MIDI program - Utgång MIDI-program - - - - Base velocity - Bashastighet - - - - Receive MIDI-events - Ta emot MIDI-event - - - - Send MIDI-events - Skicka MIDI-event + + Set value + - MidiSetupWidget + lmms::gui::MixerChannelView - - DEVICE - ENHET - - - - MonstroInstrument - - - Osc 1 Volume - Osc 1 Volym - - - - Osc 1 Panning - Osc 1 Panorering - - - - 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 + + Channel send amount - - Env 1 Decay + + Mute - - Env 1 Sustain + + Mute this channel - - Env 1 Release + + Solo - - Env 1 Slope + + Solo this channel - - Env 2 Pre-delay + + Fader %1 - - Env 2 Attack + + Move &left - - Env 2 Hold + + Move &right - - Env 2 Decay + + Rename &channel - - Env 2 Sustain + + R&emove channel - - Env 2 Release + + Remove &unused channels - - Env 2 Slope + + Color - - Osc2-3 modulation + + Change - - Selected view - Vald vy - - - - Vol1-Env1 - - - - - Vol1-Env2 + + Reset - - Vol1-LFO1 + + Pick random - - 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 - Sinusvåg - - - - Bandlimited Triangle wave - - - - - Bandlimited Saw wave - - - - - Bandlimited Ramp wave - - - - - Bandlimited Square wave - - - - - Bandlimited Moog saw wave - - - - - - Soft square wave - Mjuk 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 Square wave - - - - - Digital Moog saw wave - - - - - 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 - - - - 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. + + This Mixer Channel is being used. +Are you sure you want to remove this channel? -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. +Warning: This operation can not be undone. - + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + 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 - - - - Volume - Volym - - - - - + + + Panning - Panorering + - - - + + + Coarse detune - - - + + + semitones - halvtoner - - - - - 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 - Attack + - - + + Rate - Värdera + - - + + Phase - Fas + - - + + Pre-delay - - + + Hold - Håll + - - + + Decay - Decay + - - + + Sustain - Sustain + - - + + Release - Släpp + - - + + Slope - Lutning - - - - Mix Osc2 with Osc3 - Mixa Osc2 med Osc3 - - - - Modulate amplitude of Osc3 with Osc2 - Modulera amplituden för Osc3 med Osc2 - - - - Modulate frequency of Osc3 with Osc2 - Modulera frekvensen för Osc3 med Osc2 - - - - Modulate phase of Osc3 with Osc2 - Modulera fasen för Osc3 med 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. + + Mix osc 2 with osc 3 - - The CRS knob changes the tuning of oscillator 3 in semitone steps. + + Modulate amplitude of osc 3 by osc 2 - - - - - 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. + + Modulate frequency of osc 3 by osc 2 - - - - The SPO knob modifies the difference in phase between left and right channels. Higher difference creates a wider stereo image. + + Modulate phase of osc 3 by osc 2 - - 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 + - MultitapEchoControlDialog + lmms::gui::MultitapEchoControlDialog Length - Längd + @@ -6260,17 +15099,17 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - Dry Gain: + Dry gain: Stages - Stadier + - Lowpass stages: + Low-pass stages: @@ -6280,6465 +15119,3920 @@ 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 + lmms::gui::NesInstrumentView - - Channel 1 Coarse detune - - - - - Channel 1 Volume - Kanal 1 volym - - - - Channel 1 Envelope length - - - - - Channel 1 Duty cycle - - - - - Channel 1 Sweep amount - - - - - Channel 1 Sweep rate - - - - - Channel 2 Coarse detune - - - - - Channel 2 Volume - Kanal 2 volym - - - - Channel 2 Envelope length - - - - - Channel 2 Duty cycle - - - - - Channel 2 Sweep amount - - - - - Channel 2 Sweep rate - - - - - Channel 3 Coarse detune - - - - - Channel 3 Volume - Kanal 3 volym - - - - Channel 4 Volume - Kanal 4 volym - - - - Channel 4 Envelope length - - - - - Channel 4 Noise frequency - - - - - Channel 4 Noise frequency sweep - - - - - Master volume - Huvudvolym - - - - Vibrato - - - - - NesInstrumentView - - - - - + + + + Volume - Volym + - - - + + + Coarse detune - - - + + + Envelope length - + Enable channel 1 - Aktivera kanal 1 + - + Enable envelope 1 - + Enable envelope 1 loop - + Enable sweep 1 - Aktivera svep 1 + - - + + Sweep amount - Svepmängd + - - + + Sweep rate - Svephastighet + - - + + 12.5% Duty cycle - - + + 25% Duty cycle - - + + 50% Duty cycle - - + + 75% Duty cycle - + Enable channel 2 - Aktivera kanal 2 + - + Enable envelope 2 - + Enable envelope 2 loop - + Enable sweep 2 - + Enable channel 3 - Aktivera kanal 3 + - + Noise Frequency - Brusfrekvens + - + Frequency sweep - + Enable channel 4 - Aktivera kanal 4 + - + Enable envelope 4 - + Enable envelope 4 loop - + Quantize noise frequency when using note frequency - Kvantifiera brusfrekvens vid användning av notfrekvens + - + Use note frequency for noise - Använd notfrekvens för brus + - + Noise mode - Brusläge + - - Master Volume - Huvudvolym + + Master volume + - + Vibrato - OscillatorObject + lmms::gui::OpulenzInstrumentView - - Osc %1 waveform - - - - - Osc %1 harmonic - - - - - - Osc %1 volume - Osc %1 volym - - - - - Osc %1 panning - Osc %1 panorering - - - - - 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 - Moduleringstyp %1 - - - - PatchesDialog - - - Qsynth: Channel Preset - Qsynth: Kanal förinställd - - - - Bank selector - Bankväljare - - - - Bank - Bank - - - - Program selector - Programväljare - - - - Patch - - - - - Name - Namn - - - - OK - OK - - - - Cancel - Avbryt - - - - PatmanView - - - Open other patch - - - - - 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 - - - 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 - - - - Clear all notes - Rensa alla noter - - - - Reset name - Nollställ namn - - - - Change name - Byt namn - - - - Add steps - Lägg till steg - - - - Remove steps - Ta bort steg - - - - Clone Steps - Klona Steg - - - - PeakController - - - Peak Controller - - - - - 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: - - - - - AMNT - - - - - Modulation amount: - Moduleringsmängd: - - - - MULT - - - - - Amount Multiplicator: - - - - - ATCK - - - - - Attack: - Attack: - - - - DCAY - - - - - Release: - Release: - - - - TRSH - - - - - Treshold: - Tröskelvärde: - - - - PeakControllerEffectControls - - - Base value - Basvärde - - - - Modulation amount - Moduleringsmängd - - - + + Attack - Attack - - - - Release - Släpp - - - - Treshold - Tröskelvärde - - - - Mute output - Tysta utgångs-ljud - - - - Abs Value - Abs-värde - - - - Amount Multiplicator - - - - - PianoRoll - - - Note Velocity - Nothastighet - - - - 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 scale - Ingen skala - - - - No chord - Inget ackord - - - - Velocity: %1% - Hastighet: %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! - Dubbelklicka för att öppna ett mönster! - - - - - Please enter a new value between %1 and %2: - Ange ett nytt värde mellan %1 och %2: - - - - PianoRollWindow - - - Play/pause current pattern (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 - - - - Stop playing of current pattern (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) - - - - - 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 - - - - - Copy paste controls - - - - - Cut selected notes (%1+X) - Klipp ut valda noter (%1+X) - - - - Copy selected notes (%1+C) - Kopiera valda noter (%1+C) - - - - Paste notes from clipboard (%1+V) - Klistra in noter (%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 - - - - 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. - - - - - 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 - Pianorulle - inget mönster - - - - PianoView - - - Base note - Basnot - - - - Plugin - - - Plugin not found - Instickmodulen 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! -Orsak: "%2" - - - - Error while loading plugin - Fel vid inläsning av instickmodulen - - - - Failed to load plugin "%1"! - Misslyckades att läsa in insticksmodulen "%1"! - - - - PluginBrowser - - - Instrument Plugins - Instrument insticksmoduler - - - - 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. - - - - PluginFactory - - - Plugin not found. - Insticksmodulen hittades inte. - - - - LMMS plugin %1 does not have a plugin descriptor named %2! - - - - - ProjectNotes - - - Project Notes - Projektanteckningar - - - - Enter project notes here - - - - - 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 - - - - - &Bold - &Fet - - - - %1+B - %1+B - - - - &Italic - &Kursiv - - - - %1+I - %1+I - - - - &Underline - &Understruken - - - - %1+U - %1+U - - - - &Left - &Vänster - - - - %1+L - %1+L - - - - C&enter - C&entrera - - - - %1+E - %1+E - - - - &Right - &Höger - - - - %1+R - %1+R - - - - &Justify - &Justera - - - - %1+J - %1+J - - - - &Color... - &Färg... - - - - ProjectRenderer - - - WAV-File (*.wav) - WAV-Fil (*.wav) - - - - Compressed OGG-File (*.ogg) - Komprimerad OGG-Fil (*.ogg) - - - - Compressed MP3-File (*.mp3) - Komprimerad MP3-fil ( *.mp3) - - - - QWidget - - - - - Name: - Namn: - - - - - Maker: - Skapare: - - - - - Copyright: - Copyright: - - - - - Requires Real Time: - - - - - - - - - - Yes - Ja - - - - - - - - - No - Nej - - - - - Real Time Capable: - - - - - - In Place Broken: - - - - - - Channels In: - Kanaler In: - - - - - Channels Out: - Kanaler Ut: - - - - File: %1 - Fil: %1 - - - - File: - Fil: - - - - RenameDialog - - - Rename... - Byt namn... - - - - ReverbSCControlDialog - - - Input - Ingång - - - - Input Gain: - Input Förstärkning: - - - - Size - Storlek - - - - Size: - Storlek: - - - - Color - Färg - - - - Color: - Färg: - - - - Output - Utgång - - - - Output Gain: - Output Förstärkning - - - - ReverbSCControls - - - Input Gain - Ingångsförstärkning - - - - Size - Storlek - - - - Color - Färg - - - - Output Gain - Utgångsförstärkning - - - - 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 - - - double-click to select sample - dubbelklicka för att välja ljudfil - - - - Delete (middle mousebutton) - Ta bort (musens mitt-knapp) - - - - Cut - Klipp ut - - - - Copy - Kopiera - - - - Paste - Klistra in - - - - Mute/unmute (<%1> + middle click) - Tysta/avtysta (<%1> + mittenklick) - - - - SampleTrack - - - Volume - Volym - - - - Panning - Panorering - - - - - Sample track - Ljudspår - - - - SampleTrackView - - - Track volume - Spårvolym - - - - Channel volume: - Kanalvolym: - - - - VOL - VOL - - - - Panning - Panorering - - - - Panning: - Panorering: - - - - PAN - PAN - - - - SetupDialog - - - Setup LMMS - Ställ in LMMS - - - - - General settings - Allmänna inställningar - - - - BUFFER SIZE - BUFFERTSTORLEK - - - - - 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 - - - - - No embedding - - - - - Embed using Qt API - - - - - Embed using native Win32 API - - - - - Embed using XEmbed protocol - - - - - LANGUAGE - SPRÅK - - - - - Paths - Sökvägar - - - - Directories - Kataloger - - - - LMMS working directory - LMMS-arbetsmapp - - - - Themes directory - Mapp för teman - - - - Background artwork - Bakgrund konstverk - - - - 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 - - - - STK rawwave directory - Mapp för STK rå-vågform - - - - Default Soundfont File - Standard Soundfont-fil - - - - - Performance settings - Prestandainställningar - - - - Auto save - Spara automatiskt - - - - Enable auto-save - Aktivera automatisk sparande - - - - Allow auto-save while playing - Tillåt automatisk sparande när du spelar - - - - UI effects vs. performance - UI-effekter vs. prestanda - - - - Smooth scroll in Song Editor - Mjuk rullning i Låtredigeraren - - - - Show playback cursor in AudioFileProcessor - Visa uppspelningsmarkören i AudioFileProcessor - - - - - Audio settings - Ljudinställningar - - - - AUDIO INTERFACE - LJUDGRÄNSSNITT - - - - - MIDI settings - MIDI-inställningar - - - - 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 - - - - Auto-save interval: %1 - Automatiskt sparande intervall: %1 - - - - 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. - - - - - 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 - Tempo - - - - Master volume - Huvudvolym - - - - Master pitch - - - - - 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 - - - - - 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: - 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. - - - - 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. - - - - 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 of song - Sångtempo - - - - 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 - - - - - master pitch - - - - - Value: %1% - Värde: %1% - - - - Value: %1 semitones - Värde: %1 halvtoner - - - - SongEditorWindow - - - Song-Editor - Låtredigerare - - - - Play song (Space) - Spela sång (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) - - - - 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 - - - - Edit mode (select and move) - Redigeringsläge (välj och flytta) - - - - Timeline controls - Tidslinjekontroller - - - - Zoom controls - Zoomningskontroller - - - - SpectrumAnalyzerControlDialog - - - Linear spectrum - Linjärt spektrum - - - - Linear Y axis - Linjär Y-axel - - - - SpectrumAnalyzerControls - - - Linear spectrum - Linjärt spektrum - - - - Linear Y axis - Linjär Y-axel - - - - Channel mode - Kanalläge - - - - SubWindow - - - Close - Stäng - - - - Maximize - Maximera - - - - Restore - Återställ - - - - TabWidget - - - - Settings for %1 - Inställningar för %1 - - - - TempoSyncKnob - - - - Tempo Sync - Temposynkronisering - - - - No Sync - Ingen synkronisering - - - - Eight beats - Åtta takter - - - - Whole note - Hel-not - - - - Half note - Halvnot - - - - Quarter note - Fjärdedelsnot - - - - 8th note - 8:e noten - - - - 16th note - 16:e noten - - - - 32nd note - 32:e noten - - - - Custom... - Anpassad... - - - - Custom - Anpassad - - - - Synced to Eight Beats - Synkroniserad till Åtta Takter - - - - Synced to Whole Note - Synkroniserad till helnoten - - - - Synced to Half Note - Synkroniserad till halvnoten - - - - Synced to Quarter Note - Synkroniserad till fjärdedelsnoten - - - - Synced to 8th Note - Synkroniserad till 8:e noten - - - - Synced to 16th Note - Synkroniserad till 16:e noten - - - - Synced to 32nd Note - Synkroniserad till 32:e noten - - - - TimeDisplayWidget - - - click to change time units - Klicka för att ändra tidsenheter - - - - MIN - MIN - - - - SEC - SEK - - - - MSEC - MSEK - - - - BAR - - - - - BEAT - TAKT - - - - TICK - TICK - - - - TimeLineWidget - - - Enable/disable auto-scrolling - Aktivera/inaktivera automatisk rullning - - - - Enable/disable loop-points - Aktivera/inaktivera loop-punkter - - - - After stopping go back to begin - Efter att ha stoppat 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 - - - - TrackContainer - - - Couldn't import file - Kunde inte importera filen - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - Kunde inte hitta ett filter för att importera filen %1. -Du bör konvertera filen till ett format som stöds av LMMS genom att använda ett annat program. - - - - Couldn't open file - Kunde inte öppna filen - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - Kunde inte öppna filen %1 för läsning. -Se till att du har läsrättigheter för filen och mappen som innehåller filen och försök igen! - - - - Loading project... - Läser in projekt... - - - - - Cancel - Avbryt - - - - - Please wait... - Vänligen vänta... - - - - Loading cancelled - Inläsningen avbruten - - - - Project loading was cancelled. - Projektinläsningen avbröts. - - - - Loading Track %1 (%2/Total %3) - Läser in spår %1 (%2/Totalt %3) - - - - Importing MIDI-file... - Importerar MIDI-fil... - - - - TrackContentObject - - - Mute - Tysta - - - - TrackContentObjectView - - - 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) - - - - Delete (middle mousebutton) - Ta bort (musens mitt-knapp) - - - - Cut - Klipp ut - - - - Copy - Kopiera - - - - Paste - Klistra in - - - - Mute/unmute (<%1> + middle click) - Tysta/avtysta (<%1> + mittenklick) - - - - TrackOperationsWidget - - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - - - - - Actions for this track - Åtgärder för detta spår - - - - Mute - Tysta - - - - - Solo - Solo - - - - Mute this track - Tysta detta spår - - - - 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 - FX %1: %2 - - - - Assign to new FX Channel - Koppla till ny FX-kanal - - - - Turn all recording on - Slå på all inspelning - - - - Turn all recording off - Slå av all inspelning - - - - 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 - 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 - - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - - - - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Använd amplitudmodulering för modulerande oscillator 2 med oscillator 3 - - - - Mix output of oscillator 2 & 3 - - - - - Synchronize oscillator 2 with oscillator 3 - Synkronisera oscillatorn 2 med oscillatorn 3 - - - - Use frequency modulation for modulating oscillator 2 with 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: - - - - - 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: - - - - - - 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 - 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: - - - - - 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. - Använd en exponentiell våg för aktuell oscillator. - - - - Use white-noise for current oscillator. - - - - - Use a user-defined waveform for current oscillator. - Använd en användardefinierad vågform för nuvarande oscillator. - - - - VersionedSaveDialog - - - Increment version number - - - - - Decrement version number - - - - - already exists. Do you want to replace it? - finns redan. Vill du ersätta den? - - - - 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 - Kontrollera VST-insticksmodulen 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 - - - - - 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 - - - - 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 - - - - VstEffectControlDialog - - - Show/hide - Visa/dölj - - - - Control VST-plugin from LMMS host - Kontrollera VST-plugin 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 - - - - - 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 /> - - - - VstPlugin - - - - The VST plugin %1 could not be loaded. - VST-insticksmodulen %1 kunde inte läsas in. - - - - Open Preset - Öppna Förinställning - - - - - Vst Plugin Preset (*.fxp *.fxb) - - - - - : default - : standard - - - - " - " - - - - ' - ' - - - - Save Preset - Spara Förinställning - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - Läser in insticksmodulen - - - - Please wait while loading VST plugin... - Vänligen vänta medan VST-instickmodulen 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 - - - - - 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 - A2-A1 modulering - - - - B2-B1 modulation - B2-B1 modulering - - - - Selected graph - Vald graf - - - - WatsynView - - - - - - Volume - Volym - - - - - - - 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 - 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 - - - - - 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 - Blanda utgång B2 till 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. - 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 - - - - Phase left - Fas vänster - - - - Click to shift phase by -15 degrees - Klicka för att flytta fas med -15 grader - - - - Phase right - Fas höger - - - - Click to shift phase by +15 degrees - - - - - Normalize - Normalisera - - - - Click to normalize - Klicka för normalisering - - - - Invert - Invertera - - - - Click to invert - Klicka för invertering - - - - Smooth - Utjämna - - - - 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 - - - - Click for saw wave - Klicka för sågtandsvåg - - - - Square wave - Fyrkantvåg - - - - Click for square wave - Klicka för fyrkantvåg - - - - ZynAddSubFxInstrument - - - Portamento - - - - - Filter Frequency - - - - - Filter Resonance - - - - - Bandwidth - Bandbredd - - - - FM Gain - FM-Förstärkning - - - - Resonance Center Frequency - - - - - Resonance Bandwidth - Resonans Bandbredd - - - - Forward MIDI Control Change Events - - - - - ZynAddSubFxView - - - Portamento: - Portamento: - - - - PORT - PORT - - - - Filter Frequency: - Filter-frekvens: - - - - FREQ - FREQ - - - - Filter Resonance: - Filter-resonans: - - - - RES - - - - - Bandwidth: - Bandbredd: - - - - BW - - - - - FM Gain: - FM-Förstärkning: - - - - FM GAIN - - - - - Resonance center frequency: - Resonanscenterfrekvens: - - - - RES CF - - - - - Resonance bandwidth: - Resonans bandbredd: - - - - RES BW - - - - - Forward MIDI Control Changes - - - - - 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 - - - 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 - - - - - Sample not found: %1 - Ljudfil hittades inte: %1 - - - - bitInvader - - - Samplelength - Ljudfilslängd - - - - bitInvaderView - - - Sample Length - Ljudfilens Längd - - - - Draw your own waveform here by dragging your mouse on this graph. - Rita din egen vågform här genom att dra musen på den här grafen. - - - - Sine wave - Sinusvåg - - - - 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 wave - Vitt brus-våg - - - - Click here for white-noise. - Klicka här för vitt brus. - - - - 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 - - - INPUT - INGÅNG - - - - Input gain: - Ingångsförstärkning: - - - - OUTPUT - UTGÅNG - - - - Output gain: - Utgångsförstärkning: - - - - ATTACK - ATTACK - - - - Peak attack time: - - - - - RELEASE - - - - - Peak release time: - - - - - Reset waveform - Återställ vågform - - - - Click here to reset the wavegraph back to default - - - - - Smooth waveform - Mjuk vågform - - - - Click here to apply smoothing to wavegraph - - - - - Increase wavegraph amplitude by 1dB - - - - - 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 - - - - - Stereomode Average - - - - - Process based on the average of both stereo channels - - - - - Stereomode Unlinked - - - - - Process each stereo channel independently - - - - - dynProcControls - - - Input gain - Ingångsförstärkning - - - - Output gain - Utgångsförstärkning - - - - Attack time - Attacktid - - - - Release time - - - - - Stereo mode - Stereo-läge - - - - fxLineLcdSpinBox - - - Assign to: - Tilldela till: - - - - New FX Channel - Ny FX-Kanal - - - - graphModel - - - Graph - Graf - - - - kickerInstrument - - - Start frequency - Startfrekvens - - - - End frequency - Slutfrekvens - - - - Length - Längd - - - - Distortion Start - - - - - Distortion End - - - - - Gain - Förstärkning - - - - Envelope Slope - - - - - Noise - Brus - - - - Click - Klick - - - - Frequency Slope - - - - - Start from note - Starta från not - - - - End to note - Sluta på not - - - - kickerInstrumentView - - - Start frequency: - Startfrekvens: - - - - End frequency: - Slutfrekvens: - - - - Frequency Slope: - - - - - Gain: - Förstärkning: - - - - Envelope Length: - - - - - Envelope Slope: - - - - - Click: - Klick: - - - - Noise: - Brus: - - - - Distortion Start: - - - - - Distortion End: - - - - - 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 - - - Plugins - Insticksmoduler - - - - Description - Beskrivning - - - - ladspaPortDialog - - - Ports - Portar - - - - Name - Namn - - - - Rate - Värdera - - - - Direction - Riktning - - - - Type - Typ - - - - Min < Default < Max - Min < Standard < Max - - - - Logarithmic - Logaritmisk - - - - SR Dependent - - - - - Audio - Ljud - - - - Control - Kontroll - - - - Input - Ingång - - - - Output - Utgång - - - - Toggled - Växlad - - - - Integer - Heltal - - - - Float - Flyttal - - - - - Yes - Ja - - - - lb302Synth - - - VCF Cutoff Frequency - - - - - VCF Resonance - - - - - VCF Envelope Mod - - - - - VCF Envelope Decay - - - - - Distortion - Förvrängning - - - - Waveform - Vågform - - - - Slide Decay - - - - - Slide - - - - - Accent - - - - - Dead - - - - - 24dB/oct Filter - - - - - lb302SynthView - - - Cutoff Freq: - - - - - Resonance: - Resonans: - - - - Env Mod: - - - - - Decay: - Decay: - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - - - - - 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 - - - - - Click here for a square-wave with a rounded end. - - - - - Moog wave - - - - - Click here for a moog-like wave. - - - - - 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. - - - - - Click here for white-noise. - Klicka här för vitt brus. - - - - 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 - Hårdhet - - - - Position - Position - - - - Vibrato Gain - - - - - Vibrato Freq - - - - - Stick Mix - - Modulator - Modulator - - - - Crossfade - Överbländning - - - - LFO Speed - LFO hastighet - - - - LFO Depth - - - - - ADSR - ADSR - - - - Pressure - Tryck - - - - Motion - Rörelse - - - - Speed - Hastighet - - - - Bowed - - - - - Spread - - - - - Marimba - - - - - Vibraphone - - - - - Agogo - - - - - Wood1 - - - - - Reso - - - - - Wood2 - - - - - Beats - Takter - - - - Two Fixed - - - - - Clump - - - - - Tubular Bells - - - - - Uniform Bar - - - - - Tuned Bar - - - - - Glass - - - - - Tibetan Bowl - Tibetansk skål - - - - malletsInstrumentView - - - Instrument - Instrument - - - - Spread - - - - - Spread: - - - - - 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 - - - - - Vib Gain: - - - - - Vib Freq - - - - - Vib Freq: - - - - - Stick Mix - - - - - Stick Mix: - - - - - Modulator - Modulator - - - - Modulator: - Modulator: - - - - Crossfade - Överbländning - - - - Crossfade: - Överbländning: - - - - LFO Speed - LFO hastighet - - - - LFO Speed: - - - - - LFO Depth - - - - - LFO Depth: - - - - - ADSR - ADSR - - - - ADSR: - ADSR: - - - - Pressure - Tryck - - - - Pressure: - Tryck: - - - - Speed - Hastighet - - - - Speed: - Hastighet: - - - - manageVSTEffectView - - - - VST parameter control - - - - - VST Sync - - - - - 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 - - - - - VST plugin control - - - - - VST Sync - - - - - 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 - - - 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 + lmms::gui::OrganicInstrumentView - - Distortion - Förvrängning - - - - Volume - Volym - - - - 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 volume: - Osc %1 volym: + - + Osc %1 panning: - Osc %1 panorering: + - + Osc %1 stereo detuning - + cents - + Osc %1 harmonic: - Osc %1 harmonisk: - - - - FreeBoyInstrument - - - 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 - - - - - Name - Namn - - - - OK - OK - - - - Cancel - Avbryt - - - - pluginBrowser - - - 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 + lmms::gui::Oscilloscope - - Bank - Bank - - - - Patch + + Oscilloscope - - Gain - Förstärkning - - - - Reverb - Reverb - - - - Reverb Roomsize - - - - - Reverb Damping - - - - - Reverb Width - - - - - Reverb Level - - - - - Chorus - Chorus - - - - Chorus Lines - - - - - Chorus Level - - - - - Chorus Speed - - - - - Chorus Depth - - - - - A soundfont %1 could not be loaded. - SoundFont %1 kunde inte läsas in. - - - - 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) - - - - sfxrInstrument - - - Wave Form - Vågform - - - - sidInstrument - - - Cutoff - - - - - Resonance - Resonans - - - - Filter type - Filtertyp - - - - Voice 3 off - Röst 3 av - - - - Volume - Volym - - - - Chip model + + Click to enable - sidInstrumentView + lmms::gui::PatmanView - + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + Volume: - Volym: + - + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + Resonance: - Resonans: + - - + + Cutoff frequency: - - High-Pass filter - Högpassfilter + + High-pass filter + - - Band-Pass filter - Bandpassfilter + + Band-pass filter + - - Low-Pass filter - Lågpassfilter + + Low-pass filter + - - Voice3 Off - Voice3 Av + + Voice 3 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-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 + - - Pulse Wave - Pulsvåg + + Triangle wave + - - Triangle Wave - Triangelvåg + + Saw wave + - - 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 modulation - - 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. + + Pulse width: - stereoEnhancerControlDialog + lmms::gui::SideBarWidget - - WIDE + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap - + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + Width: - Bredd: + - stereoEnhancerControls + lmms::gui::StereoMatrixControlDialog - - Width - Bredd - - - - stereoMatrixControlDialog - - + Left to Left Vol: - Vänster till Vänster Vol.: + - + Left to Right Vol: - Vänster till Höger Vol.: + - + Right to Left Vol: - Höger till Vänster Vol.: + - + Right to Right Vol: - Höger till Höger vol.: + - stereoMatrixControls + lmms::gui::SubWindow - - Left to Left - Vänster till Vänster + + Close + - - Left to Right - Vänster till Höger + + Maximize + - - Right to Left - Höger till Vänster - - - - Right to Right - Höger till Höger + + Restore + - vestigeInstrument + lmms::gui::TapTempoView - - Loading plugin - Läser in plugin + + 0 + - - Please wait while loading VST-plugin... - Vänta medans VST-insticksmodulen läses in... + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + - vibed + lmms::gui::TemplatesMenu - - String %1 volume - Sträng %1 volym - - - - String %1 stiffness - Sträng %1 styvhet - - - - Pick %1 position - Välj %1 position - - - - Pickup %1 position + + New from template - - - Pan %1 - - - - - Detune %1 - - - - - Fuzziness %1 - Oskärpa %1  - - - - Length %1 - Längd %1 - - - - Impulse %1 - Impuls %1 - - - - Octave %1 - Oktav %1 - - vibedView + lmms::gui::TempoSyncBarModelEditor - - Volume: - Volym: - - - - The 'V' knob sets the volume of the selected string. + + + Tempo Sync - + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + String stiffness: - 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: - - 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: - - 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: - 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 - - 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. + + Impulse - - 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/disable string - - Enable waveform - Aktivera vågform + + Octave + - - Click here to enable/disable waveform. - Klicka här för att aktivera/inaktivera vågform. - - - + String - Sträng + + + + lmms::gui::VstEffectControlDialog - - 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. + + Show/hide - - Sine wave - Sinusvåg - - - - Use a sine-wave for current oscillator. + + Control VST plugin from LMMS host - - Triangle wave - Triangelvåg - - - - Use a triangle-wave for current oscillator. + + Open VST plugin preset - - Saw wave - Sågtandsvåg - - - - Use a saw-wave for current oscillator. + + Previous (-) - - Square wave - Fyrkantvåg - - - - Use a square-wave for current oscillator. + + Next (+) - - White noise wave - Vitt brus-våg - - - - Use white-noise for current oscillator. + + Save preset - - User defined wave - Användardefinierad vågform + + + Effect by: + - - Use a user-defined waveform for current oscillator. - Använd en användardefinierad vågform för aktuell oscillator. + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + - - Smooth - Utjämna + + + + + Panning + - - Click here to smooth waveform. - Klicka här för att jämna vågform. + + + + + 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 - Normalisera + - - Click here to normalize waveform. - Klicka här för att normalisera vågformen. + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + - voiceObject + lmms::gui::WaveShaperControlDialog - - Voice %1 pulse width - Röst %1 pulsbredd - - - - Voice %1 attack - Röst %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 - Röst %1 filtrerad - - - - Voice %1 test - Röst %1 test - - - - waveShaperControlDialog - - + INPUT - INGÅNG + - + Input gain: - Ingångsförstärkning: + - + OUTPUT - UTGÅNG + - + Output gain: - Utgångsförstärkning: - - - - Reset waveform - Återställ vågform - - - - Click here to reset the wavegraph back to default - - Smooth waveform - Mjuk vågform - - - - Click here to apply smoothing to wavegraph + + + Reset wavegraph - - 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 + + + Smooth wavegraph - + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + Clip input - - Clip input signal to 0dB + + Clip input signal to 0 dB - waveShaperControls + lmms::gui::XpressiveView - - Input gain - Ingångsförstärkning + + Draw your own waveform here by dragging your mouse on this graph. + - - Output gain - Utgångsförstärkning + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + \ No newline at end of file diff --git a/data/locale/tr.ts b/data/locale/tr.ts new file mode 100644 index 000000000..0c49ea926 --- /dev/null +++ b/data/locale/tr.ts @@ -0,0 +1,19055 @@ + + + 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 + + + + AboutJuceDialog + + + About JUCE + + + + + <b>About JUCE</b> + + + + + This program uses JUCE version 3.x.x. + + + + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + + + + + This program uses JUCE version + + + + + AudioDeviceSetupWidget + + + [System Default] + + + + + 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... + + + + Save + + + + + Clear + + + + + Ctrl+L + + + + + Auto-Scroll + + + + + Buffer Size: + Arabellek Boyutu: + + + + Sample Rate: + Örnekleme Oranı: + + + + ? Xruns + ? Xruns + + + + DSP Load: %p% + EKR Yükü: %p% + + + + &File + &Dosya + + + + &Engine + &Motor + + + + &Plugin + &Eklenti + + + + Macros (all plugins) + Makrolar (tüm eklentiler) + + + + &Canvas + &Tuval + + + + Zoom + Büyütme + + + + &Settings + &Ayarlar + + + + &Help + &Yardım + + + + Tool Bar + + + + + Disk + Disk + + + + + Home + Ana Sayfa + + + + Transport + Aktarım + + + + Playback Controls + Oynatma Kontrolleri + + + + Time Information + Zaman Bilgileri + + + + Frame: + Çerçeve: + + + + 000'000'000 + 000'000'000 + + + + Time: + Zaman: + + + + 00:00:00 + 00:00:00 + + + + BBT: + BBT: + + + + 000|00|0000 + 000|00|0000 + + + + Settings + Ayarlar + + + + BPM + BPM + + + + Use JACK Transport + JACK Transport'u kullanın + + + + Use Ableton Link + Ableton Bağlantısını kullanın + + + + &New + &Yeni + + + + Ctrl+N + Ctrl+N + + + + &Open... + &Aç... + + + + + Open... + Aç... + + + + Ctrl+O + Ctrl+O + + + + &Save + &Kaydet + + + + Ctrl+S + CTRL + S + + + + Save &As... + &Farklı Kaydet... + + + + + Save As... + Farklı Kaydet... + + + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Quit + &Çıkış + + + + Ctrl+Q + Ctrl+Q + + + + &Start + &Başlat + + + + F5 + F5 + + + + St&op + Du&rdur + + + + F6 + F6 + + + + &Add Plugin... + &Eklenti Ekle... + + + + Ctrl+A + Ctrl+A + + + + &Remove All + Tümünü &Kaldır + + + + Enable + Etkinleştir + + + + Disable + Devre Dışı Bırak + + + + 0% Wet (Bypass) + % 0 Islak (Baypas) + + + + 100% Wet + % 100 Islak + + + + 0% Volume (Mute) + % 0 Ses (Sessiz) + + + + 100% Volume + % 100 Hacim + + + + Center Balance + Merkez Dengesi + + + + &Play + &Oynat + + + + Ctrl+Shift+P + Ctrl+ÜstKrkt+P + + + + &Stop + &Durdur + + + + Ctrl+Shift+X + Ctrl+Shift+X + + + + &Backwards + &Geriye doğru + + + + Ctrl+Shift+B + Ctrl+Shift+B + + + + &Forwards + &İleriye + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + &Düzenleme + + + + Ctrl+G + Ctrl+G + + + + + &Refresh + &Yenile + + + + Ctrl+R + Ctrl +R + + + + Save &Image... + &Görüntüyü Kaydet... + + + + Auto-Fit + Otomatik Sığdır + + + + Zoom In + Yakınlaştır + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + Uzaklaştır + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + % 100 Yakınlaştır + + + + Ctrl+1 + Ctrl +1 + + + + Show &Toolbar + &Araç Çubuğunu Göster + + + + &Configure Carla + &Carla'yı yapılandır + + + + &About + &Hakkında + + + + About &JUCE + &JUCE Hakkında + + + + About &Qt + &Qt Hakkında + + + + Show Canvas &Meters + Tuval &Ölçerleri Göster + + + + Show Canvas &Keyboard + Tuval &Klavyeyi Göster + + + + Show Internal + Dahili Göster + + + + Show External + Harici Göster + + + + Show Time Panel + Zaman Panelini Göster + + + + Show &Side Panel + &Yan Paneli Göster + + + + Ctrl+P + + + + + &Connect... + &Bağlan... + + + + Compact Slots + Kompakt Yuvalar + + + + Expand Slots + Yuvaları Genişlet + + + + Perform secret 1 + Gizli 1'i gerçekleştir + + + + Perform secret 2 + Gizli 2'yi gerçekleştir + + + + Perform secret 3 + Gizli 3'ü gerçekleştir + + + + Perform secret 4 + Gizli 4'ü gerçekleştir + + + + Perform secret 5 + Gizli 5'i gerçekleştir + + + + Add &JACK Application... + &JACK Uygulaması Ekle... + + + + &Configure driver... + Sürücüyü &yapılandırın... + + + + Panic + Panik + + + + Open custom driver panel... + Özel sürücü panelini aç... + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + + + + + CarlaHostWindow + + + Export as... + Farklı dışa aktar... + + + + + + + Error + Hata + + + + Failed to load project + Proje yüklenemedi + + + + Failed to save project + Proje kaydedilemedi + + + + Quit + Çık + + + + Are you sure you want to quit Carla? + Carla'yı bırakmak istediğinden emin misin? + + + + Could not connect to Audio backend '%1', possible reasons: +%2 + '%1' Ses arka ucuna bağlanılamadı, olası nedenler: +%2 + + + + Could not connect to Audio backend '%1' + Ses arka ucuna '%1' bağlanılamadı + + + + Warning + Uyarı + + + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + Hala yüklü bazı eklentiler var, motoru durdurmak için bunları kaldırmanız gerekiyor. +Bunu şimdi yapmak istiyor musun? + + + + 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 + + + + Use "Classic" as default rack skin + + + + + Interface refresh interval: + Arayüz yenileme aralığı: + + + + + ms + ms + + + + Show console output in Logs tab (needs engine restart) + Konsol çıktısını Günlükler sekmesinde göster (motorun yeniden başlatılması gerekir) + + + + Show a confirmation dialog before quitting + Çıkmadan önce bir onay iletişim kutusu göster + + + + + Theme + Tema + + + + Use Carla "PRO" theme (needs restart) + Carla "PRO" temasını kullanın (yeniden başlatılması gerekiyor) + + + + Color scheme: + Renk düzeni: + + + + Black + Siyah + + + + System + Sistem + + + + Enable experimental features + Deneysel özellikleri etkinleştirin + + + + <b>Canvas</b> + <b>Tuval</b> + + + + Bezier Lines + Bezier Hatları + + + + Theme: + Tema: + + + + Size: + Boyut: + + + + 775x600 + 775x600 + + + + 1550x1200 + 1550x1200 + + + + 3100x2400 + 3100x2400 + + + + 4650x3600 + 4650x3600 + + + + 6200x4800 + 6200x4800 + + + + 12400x9600 + + + + + Options + Seçenekler + + + + Auto-hide groups with no ports + Bağlantı noktası olmayan grupları otomatik gizle + + + + Auto-select items on hover + Fareyle üzerine gelindiğinde öğeleri otomatik seç + + + + Basic eye-candy (group shadows) + Temel göz şekeri (grup gölgeleri) + + + + Render Hints + Oluşturma İpuçları + + + + Anti-Aliasing + Kenar Yumuşatma + + + + Full canvas repaints (slower, but prevents drawing issues) + Tuvali yeniden boyar (daha yavaştır, ancak çizim sorunlarını önler) + + + + <b>Engine</b> + <b>Motor</b> + + + + + Core + Çekirdek + + + + Single Client + Tek Alıcı + + + + Multiple Clients + Çoklu Alıcı + + + + + Continuous Rack + Sürekli Raf + + + + + Patchbay + Yama yuvası + + + + Audio driver: + Ses sürücüsü: + + + + Process mode: + İşlem modeli: + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + Yerleşik 'Düzenle' iletişim kutusunda izin verilecek maksimum parametre sayısı + + + + Max Parameters: + Maksimum Parametreler: + + + + ... + ... + + + + Reset Xrun counter after project load + Proje yükünden sonra Xrun sayacını sıfırlayın + + + + Plugin UIs + Eklenti kullanıcı arayüzleri + + + + + How much time to wait for OSC GUIs to ping back the host + OSC Arayüz'lerin ana bilgisayarı geri göndermesi için ne kadar beklemek gerekir + + + + UI Bridge Timeout: + Arayüz Köprüsü Zaman Aşımı: + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + Mümkün olduğunda OSC-Arayüz köprülerini kullanın, bu şekilde UI'yi DSP kodundan ayırın + + + + Use UI bridges instead of direct handling when possible + Mümkün olduğunda doğrudan işlem yerine Arayüz köprülerini kullanın + + + + Make plugin UIs always-on-top + Eklenti kullanıcı arayüzlerini her zaman en üstte yapın + + + + Make plugin UIs appear on top of Carla (needs restart) + Eklenti kullanıcı arayüzlerinin Carla'nın üstünde görünmesini sağlayın (yeniden başlatılması gerekiyor) + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + NOT: Eklenti köprüsü kullanıcı arayüzleri, macOS'ta Carla tarafından yönetilemez + + + + + Restart the engine to load the new settings + Yeni ayarları yüklemek için motoru yeniden başlatın + + + + <b>OSC</b> + <b>OSC</b> + + + + Enable OSC + OSC'yi etkinleştir + + + + Enable TCP port + TCP bağlantı noktasını etkinleştir + + + + + Use specific port: + Belirli bir bağlantı noktası kullanın: + + + + Overridden by CARLA_OSC_TCP_PORT env var + CARLA_OSC_TCP_PORT env var tarafından geçersiz kılındı + + + + + Use randomly assigned port + Rastgele atanan bağlantı noktasını kullan + + + + Enable UDP port + UDP bağlantı noktasını etkinleştir + + + + Overridden by CARLA_OSC_UDP_PORT env var + CARLA_OSC_UDP_PORT ortam değişkeni tarafından geçersiz kılındı + + + + DSSI UIs require OSC UDP port enabled + DSSI kullanıcı arabirimleri, OSC UDP bağlantı noktasının etkinleştirilmesini gerektirir + + + + <b>File Paths</b> + <b>Dosya Yolları</b> + + + + Audio + Ses + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + "Ses dosyası" eklentisi için kullanılır + + + + Used for the "midifile" plugin + "Midifile" eklentisi için kullanılır + + + + + Add... + Ekle... + + + + + Remove + Kaldır + + + + + Change... + Değiştir... + + + + <b>Plugin Paths</b> + <b>Eklenti Yolları</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + Yeni eklentiler bulmak için Carla'yı yeniden başlatın + + + + <b>Wine</b> + <b>Wine</b> + + + + Executable + Yürütülebilir + + + + Path to 'wine' binary: + 'Wine' ikilisine giden yol: + + + + Prefix + Önek + + + + Auto-detect Wine prefix based on plugin filename + Eklenti dosya adına göre Wine önekini otomatik algıla + + + + Fallback: + Geri çekilmek: + + + + Note: WINEPREFIX env var is preferred over this fallback + Not: WINEPREFIX env var değişkeni bu yedek yerine tercih edilir + + + + Realtime Priority + Gerçek Zamanlı Öncelik + + + + Base priority: + Temel öncelik: + + + + WineServer priority: + WineSunucusu önceliği: + + + + These options are not available for Carla as plugin + Bu seçenekler, eklenti olarak Carla için mevcut değildir + + + + <b>Experimental</b> + <b>Deneysel</b> + + + + Experimental options! Likely to be unstable! + Deneysel seçenekler! Kararsız olması muhtemel! + + + + Enable plugin bridges + Eklenti köprülerini etkinleştirin + + + + Enable Wine bridges + Wine köprülerini etkinleştir + + + + Enable jack applications + Jack uygulamalarını etkinleştirin + + + + Export single plugins to LV2 + Tek eklentileri LV2'ye aktarın + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + Carla arka ucunu genel ad alanında yükle (ÖNERİLMEZ) + + + + Fancy eye-candy (fade-in/out groups, glow connections) + Süslü göz alıcı (grupların açılması / kapanması, kızdırma bağlantıları) + + + + Use OpenGL for rendering (needs restart) + Oluşturmak için OpenGL kullanın (yeniden başlatılması gerekir) + + + + High Quality Anti-Aliasing (OpenGL only) + Yüksek Kaliteli Örtüşme Önleme (yalnızca OpenGL) + + + + Render Ardour-style "Inline Displays" + Ardour tarzı "Satır İçi Ekranları" Oluştur + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + Aynı anda 2 örnek çalıştırarak mono eklentileri stereo olarak zorlayın. +Bu mod, VST eklentileri için kullanılamaz. + + + + Force mono plugins as stereo + Mono eklentileri stereo olarak zorla + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + Mümkün olduğunda eklentileri köprü modunda çalıştırın + + + + + + + Add Path + Yol Ekle + + + + Dialog + + + 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ı: + + + + 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 + + + + 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) + zaman(lar) + + + + 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ş) + + + + Start + Başlat + + + + Cancel + İptal + + + + 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 + + + + InstrumentSoundShaping + + + VOLUME + DÜZEY + + + + Volume + Ses Düzeyi + + + + CUTOFF + AYIRMAK + + + + Cutoff frequency + Kesme frekansı + + + + RESO + RESO + + + + Resonance + Çınlama + + + + JackAppDialog + + + Add JACK Application + + + + + Note: Features not implemented yet are greyed out + + + + + Application + + + + + Name: + + + + + Application: + + + + + From template + + + + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + + + + + JuceAboutW + + + This program uses JUCE version %1. + Bu program JUCE %1 sürümünü kullanı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ış + + + + Esc + + + + + &Insert Mode + &Ekle Modu + + + + F + F + + + + &Velocity Mode + &Hız Modu + + + + D + D + + + + Select All + Tümünü seç + + + + A + A + + + + 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 + + + + PluginBrowser + + + 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 + + + + An all-pass filter allowing for extremely high orders. + Son derece yüksek siparişlere izin veren bir all-pass filtresi. + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + Ritim için dokunun + + + + 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 Notes + + + + + Send Bank/Program Changes + Yuva/Program Değişikliklerini Gönderin + + + + Send Control Changes + Kontrol Değişikliklerini Gönder + + + + Send Channel Pressure + Kanal Basıncını Gönder + + + + Send Note Aftertouch + Sonra Dokunma Notası Gönder + + + + Send Pitchbend + Perde eğimi Gönder + + + + Send All Sound/Notes Off + Tüm Sesleri/Notaları Gönder Kapalı + + + + +Plugin Name + + +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! + + + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + Biçim + + + + Parameter Name + Parametre Adı + + + + TextLabel + + + + + ... + ... + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + Ç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: + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + Eklentiyi Yeniden Yükle + + + + Show GUI + Görselli Arayüzü Göster + + + + Help + Yardım + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + İsim: + + + + 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: + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + Düzey + + + + Panning + Kaydırma + + + + Left gain + Sol kazanç + + + + Right gain + Sağ kazanç + + + + lmms::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 + Ters örnek + + + + Loop mode + Döngü modu + + + + Stutter + Kekemelik + + + + Interpolation mode + Ara değerlendirme modu + + + + None + Hiçbiri + + + + Linear + Doğrusal + + + + Sinc + Sinc + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + JACK istemcisi yeniden başlatıldı + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS bir nedenden ötürü JACK tarafından sistemden atıldı. Bundan dolayı LMMS'in JACK altyapısı yeniden başlatıldı. Bağlantıları yeniden elle yapmanız gerekecek. + + + + JACK server down + JACK sunucusu kapalı + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + JACK sunucusu kapanmış gibi görünüyor ve yeni bir örnek başlatılamadı. Bu nedenle LMMS devam edemiyor. Projenizi kaydetmeli, JACK ve LMMS'i yeniden başlatmalısınız. + + + + Client name + İstemci adı + + + + Channels + Kanallar + + + + lmms::AudioOss + + + Device + Aygıt + + + + Channels + Kanallar + + + + lmms::AudioPortAudio::setupWidget + + + Backend + Arka uç + + + + Device + Aygıt + + + + lmms::AudioPulseAudio + + + Device + Aygıt + + + + Channels + Kanallar + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + Aygıt + + + + Channels + Kanallar + + + + lmms::AudioSoundIo::setupWidget + + + Backend + Arka uç + + + + Device + Aygıt + + + + lmms::AutomatableModel + + + &Reset (%1%2) + &Sıfırla (%1%2) + + + + &Copy value (%1%2) + &Değeri kopyala (%1%2) + + + + &Paste value (%1%2) + &Değeri yapıştır (%1%2) + + + + &Paste value + &Değeri yapıştır + + + + Edit song-global automation + Global şarkı otomasyonunu düzenle + + + + Remove song-global automation + Global şarkı otomasyonunu kaldır + + + + Remove all linked controls + Tüm bağlantılı kontrolleri kaldır + + + + Connected to %1 + Şuna bağlı: %1 + + + + Connected to controller + Kontrolöre bağlı + + + + Edit connection... + Bağlantıyı düzenle... + + + + Remove connection + Bağlantıyı kaldır + + + + Connect to controller... + Kontrolöre bağla... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + <%1> tuşuna basarken bir kontrolü sürükleyin + + + + lmms::AutomationTrack + + + Automation track + Parça otomasyonu + + + + lmms::BassBoosterControls + + + Frequency + Frekans + + + + Gain + Kazanç + + + + Ratio + Oran + + + + lmms::BitInvader + + + Sample length + Örnek uzunluğu + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + Giriş kazancı + + + + 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 + + + + lmms::Clip + + + Mute + Sustur + + + + lmms::CompressorControls + + + Threshold + Eşik + + + + Ratio + Oran + + + + Attack + Saldırı + + + + Release + Yayınla + + + + Knee + Diz + + + + Hold + Tut + + + + Range + Aralık + + + + RMS Size + RMS Boyutu + + + + Mid/Side + Orta/Yan + + + + Peak Mode + Tepe Modu + + + + Lookahead Length + Önden Bakış Uzunluğu + + + + Input Balance + Giriş Dengesi + + + + Output Balance + Çıktı Dengesi + + + + Limiter + Sınırlayıcı + + + + Output Gain + Çıkış Kazancı + + + + Input Gain + Giriş Kazancı + + + + Blend + Harman + + + + Stereo Balance + Çift kanal Dengesi + + + + Auto Makeup Gain + Otomatik Makyaj Kazancı + + + + Audition + İşitme + + + + Feedback + Geri bildirim + + + + Auto Attack + Otomatik Saldırı + + + + Auto Release + Otomatik Yayın + + + + Lookahead + Önden Bakış + + + + Tilt + Eğim + + + + Tilt Frequency + Eğim Frekansı + + + + Stereo Link + Çift kanal Bağlantı + + + + Mix + Karıştır + + + + lmms::Controller + + + Controller %1 + Kontrolör %1 + + + + lmms::DelayControls + + + Delay samples + Gecikme örnekleri + + + + Feedback + Geri bildirim + + + + LFO frequency + LFO frekansı + + + + LFO amount + LFO miktarı + + + + Output gain + Çıkış kazancı + + + + lmms::DispersionControls + + + Amount + Miktar + + + + Frequency + Frekans + + + + Resonance + Rezonans + + + + Feedback + Geri bildirim + + + + DC Offset Removal + DC Ofset Kaldırma + + + + lmms::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 Çentiği + + + + + Fast Formant + Hızlı Biçimlendirici + + + + + Tripole + Üçlü + + + + lmms::DynProcControls + + + Input gain + Giriş kazancı + + + + Output gain + Çıkış kazancı + + + + Attack time + Kalkma zamanı + + + + Release time + Yayımlama zamanı + + + + Stereo mode + Çift kanal modu + + + + lmms::Effect + + + Effect enabled + Efekt etkinleştirildi + + + + Wet/Dry mix + Islak/Kuru karışım + + + + Gate + Geçit + + + + Decay + Bozunma + + + + lmms::EffectChain + + + Effects enabled + Efektler etkinleştirildi + + + + lmms::Engine + + + Generating wavetables + Dalgaboyu oluşturma + + + + Initializing data structures + Veri yapılarını başlatma + + + + Opening audio and midi devices + Ses ve midi cihazlarını açma + + + + Launching audio engine threads + Ses motoru dizileri başlatılıyor + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + Ortam ön gecikme + + + + Env attack + Ortam saldırısı + + + + Env hold + Ortam tutma + + + + Env decay + Ortam bozunma + + + + Env sustain + Ortam sürdürme + + + + Env release + Ortam yayınlama + + + + Env mod amount + Ortam mod miktarı + + + + LFO pre-delay + LFO ön gecikmesi + + + + LFO attack + LFO saldırısı + + + + LFO frequency + LFO frekansı + + + + LFO mod amount + LFO mod miktarı + + + + LFO wave shape + LFO dalga şekli + + + + LFO frequency x 100 + LFO frekansı x 100 + + + + Modulate env amount + Ortam miktarını değiştir + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + Giriş kazancı + + + + Output gain + Çıkış kazancı + + + + Low-shelf gain + Düşük raf kazancı + + + + Peak 1 gain + Tepe kazancı 1 + + + + Peak 2 gain + Tepe kazancı 2 + + + + Peak 3 gain + Tepe kazancı 3 + + + + Peak 4 gain + Tepe kazancı 4 + + + + High-shelf gain + Yüksek raf kazancı + + + + HP res + HP res + + + + Low-shelf res + Düşük raflı res + + + + Peak 1 BW + Tepe 1 BW + + + + Peak 2 BW + Tepe 2 BW + + + + Peak 3 BW + Tepe 3 BW + + + + Peak 4 BW + Tepe 4 BW + + + + High-shelf res + Yüksek raf çözünürlüğü + + + + LP res + LP res + + + + HP freq + HP frekansı + + + + Low-shelf freq + Düşük raf frekansı + + + + Peak 1 freq + Tepe frekansı 1 + + + + Peak 2 freq + Tepe frekansı 2 + + + + Peak 3 freq + Tepe frekansı 3 + + + + Peak 4 freq + Tepe frekansı 4 + + + + High-shelf freq + Yüksek raf frekansı + + + + LP freq + LP frekansı + + + + HP active + HP etkin + + + + Low-shelf active + Düşük raf etkin + + + + Peak 1 active + Aktif tepe 1 + + + + Peak 2 active + Aktif tepe 2 + + + + Peak 3 active + Aktif tepe 3 + + + + Peak 4 active + Aktif tepe 4 + + + + High-shelf active + Yüksek raf etkin + + + + LP active + LP etkin + + + + LP 12 + LP 12 + + + + LP 24 + LP 24 + + + + LP 48 + LP 48 + + + + HP 12 + HP 12 + + + + HP 24 + HP 24 + + + + HP 48 + HP 48 + + + + Low-pass type + Düşük geçişli tip + + + + High-pass type + Yüksek geçişli tip + + + + Analyse IN + GİRİŞ'i analiz et + + + + Analyse OUT + ÇIKIŞ'ı analiz et + + + + lmms::FlangerControls + + + Delay samples + Gecikme örnekleri + + + + LFO frequency + LFO frekansı + + + + Amount + + + + + Stereo phase + Stereo faz + + + + Feedback + + + + + Noise + Gürültü + + + + Invert + Tersine çevir + + + + lmms::FreeBoyInstrument + + + Sweep time + Tarama zamanı + + + + Sweep direction + Tarama yönü + + + + Sweep rate shift amount + Tarama oranı kaydırma miktarı + + + + + Wave pattern duty cycle + Dalga deseni görev döngüsü + + + + Channel 1 volume + Kanal 1 düzeyi + + + + + + Volume sweep direction + Düzey tarama yönü + + + + + + Length of each step in sweep + Taramadaki her adımın uzunluğu + + + + Channel 2 volume + Kanal 2 düzeyi + + + + Channel 3 volume + Kanal 3 düzeyi + + + + Channel 4 volume + Kanal 4 düzeyi + + + + Shift Register width + Kayıt genişliğini kaydır + + + + Right output level + Sağ çıkış seviyesi + + + + Left output level + Sol çıkış seviyesi + + + + Channel 1 to SO2 (Left) + Kanal 1'den SO2'ye (Sol) + + + + Channel 2 to SO2 (Left) + Kanal 2'den SO2'ye (Sol) + + + + Channel 3 to SO2 (Left) + Kanal 3'den SO2'ye (Sol) + + + + Channel 4 to SO2 (Left) + Kanal 4'den SO2'ye (Sol) + + + + Channel 1 to SO1 (Right) + Kanal 1'den SO1'e (Sağ) + + + + Channel 2 to SO1 (Right) + Kanal 2'den SO1'e (Sağ) + + + + Channel 3 to SO1 (Right) + Kanal 3'den SO1'e (Sağ) + + + + Channel 4 to SO1 (Right) + Kanal 4'den SO1'e (Sağ) + + + + Treble + Tiz + + + + Bass + Bas + + + + lmms::GigInstrument + + + Bank + Yuva + + + + Patch + Yama + + + + Gain + Kazanç + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + 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 + Boş + + + + Sort + Sırala + + + + Sync + Eşitle + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + Akordlar + + + + Chord type + Akord türü + + + + Chord range + Akord aralığı + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + Zarflar / LFO'lar + + + + Filter type + Filtre tipi + + + + Cutoff frequency + Kesme frekansı + + + + Q/Resonance + Q/Rezonans + + + + Low-pass + Düşük geçiş + + + + Hi-pass + Yüksek geçiş + + + + Band-pass csg + Bant geçişli csg + + + + Band-pass czpg + Bant geçişli czpg + + + + Notch + Çentik + + + + All-pass + Tamamı bitti + + + + Moog + Moog + + + + 2x Low-pass + 2x Düşük geçiş + + + + RC Low-pass 12 dB/oct + RC Düşük geçişli 12 dB/oct + + + + RC Band-pass 12 dB/oct + RC Bant geçişi 12 dB/oct + + + + RC High-pass 12 dB/oct + RC Yüksek Geçişli 12 dB/oct + + + + RC Low-pass 24 dB/oct + RC Düşük geçişli 24 dB/oct + + + + RC Band-pass 24 dB/oct + RC Bant geçişi 24 dB/oct + + + + RC High-pass 24 dB/oct + RC Yüksek Geçişli 24 dB/oct + + + + Vocal Formant + Vokal Biçimlendirici + + + + 2x Moog + 2x Moog + + + + SV Low-pass + SV Düşük geçiş + + + + SV Band-pass + SV Bant geçişi + + + + SV High-pass + SV Yüksek geçiş + + + + SV Notch + SV Çentiği + + + + Fast Formant + Hızlı Biçimlendirici + + + + Tripole + Üçlü + + + + lmms::InstrumentTrack + + + + unnamed_track + adsız_parça + + + + Base note + Temel nota + + + + First note + İlk nota + + + + Last note + Son nota + + + + Volume + Düzey + + + + Panning + Kaydırma + + + + Pitch + Saha + + + + Pitch range + Eğim aralığı + + + + Mixer channel + FX kanalı + + + + Master pitch + Ana sahne + + + + Enable/Disable MIDI CC + MIDI CC'yi Etkinleştir / Devre Dışı Bırak + + + + CC Controller %1 + CC Denetleyicisi %1 + + + + + Default preset + Varsayılan ön ayar + + + + lmms::Keymap + + + empty + boş + + + + lmms::KickerInstrument + + + Start frequency + Başlangıç frekansı + + + + End frequency + Bitiş frekansı + + + + Length + Süre + + + + Start distortion + Bozulmayı başlat + + + + End distortion + Bozulmayı bitir + + + + Gain + Kazanç + + + + Envelope slope + Zarf eğimi + + + + Noise + Gürültü + + + + Click + Tıkla + + + + Frequency slope + Frekans eğimi + + + + Start from note + Notadan başla + + + + End to note + Notanın sonu + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + Kanalları bağla + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + Bilinmeyen LADSPA eklentisi %1 istendi. + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + VCF Kesme Frekansı + + + + VCF Resonance + VCF Rezonansı + + + + VCF Envelope Mod + VCF Zarf Modu + + + + VCF Envelope Decay + VCF Zarf Bozulması + + + + Distortion + Bozma + + + + Waveform + Dalga şekli + + + + Slide Decay + Bozulma Kaydırma + + + + Slide + Kaydır + + + + Accent + Vurgu + + + + Dead + Ölü + + + + 24dB/oct Filter + 24dB/oct FiltRESİ + + + + lmms::LfoController + + + LFO Controller + LFO Denetleyicisi + + + + Base value + Temel değer + + + + Oscillator speed + Osilatör hızı + + + + Oscillator amount + Osilatör miktarı + + + + Oscillator phase + Osilatör fazı + + + + Oscillator waveform + Osilatör dalga formu + + + + Frequency Multiplier + Frekans Çarpanı + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + Sertlik + + + + Position + Konum + + + + Vibrato gain + Titreşim kazancı + + + + Vibrato frequency + Titreşim frekansı + + + + Stick mix + Çubuk karıştırıcı + + + + Modulator + Modülatör + + + + Crossfade + Çapraz geçiş + + + + LFO speed + LFO hızı + + + + LFO depth + LFO derinliği + + + + ADSR + ADSR + + + + Pressure + Basınç + + + + Motion + Hareket + + + + Speed + Hız + + + + Bowed + Eğilmiş + + + + Instrument + + + + + Spread + Etrafa Saç + + + + Randomness + + + + + Marimba + Marimba + + + + Vibraphone + Vibrafon + + + + Agogo + Agogo + + + + Wood 1 + Ahşap 1 + + + + Reso + Reso + + + + Wood 2 + Ahşap 2 + + + + Beats + Vuruşlar + + + + Two fixed + İki sabit + + + + Clump + Tortu + + + + Tubular bells + Borulu çanlar + + + + Uniform bar + Üniforma çubuğu + + + + Tuned bar + Ayarlanmış çubuk + + + + Glass + Cam + + + + Tibetan bowl + Tibet kase + + + + lmms::MeterModel + + + Numerator + Pay + + + + Denominator + Payda + + + + lmms::Microtuner + + + Microtuner + Mikro ayarlayıcı + + + + Microtuner on / off + Mikro ayarlayıcı açık / kapalı + + + + Selected scale + Seçili ölçek + + + + Selected keyboard mapping + Seçilen klavye eşlemesi + + + + lmms::MidiController + + + MIDI Controller + MIDI Denetleyicisi + + + + unnamed_midi_controller + adsız_midi_denetleyici + + + + lmms::MidiImport + + + + Setup incomplete + Kurulum tamamlanmadı + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + Ayarlar iletişim kutusunda (Düzenle-> Ayarlar) varsayılan bir ses yazı tipi ayarlamadınız. Bu nedenle, bu MIDI dosyasını içe aktardıktan sonra hiçbir ses çalınmayacaktır. Bir Genel MIDI ses yazı tipi indirmeli, bunu ayarlar iletişim kutusunda belirtmeli ve tekrar denemelisiniz. + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + LMMS'yi içe aktarılan MIDI dosyalarına varsayılan ses eklemek için kullanılan SoundFont2 oynatıcı desteğiyle derlemediniz. Bu nedenle, bu MIDI dosyasını içe aktardıktan sonra hiçbir ses çalınmayacaktır. + + + + MIDI Time Signature Numerator + MIDI Zaman İmza Payı + + + + MIDI Time Signature Denominator + MIDI Zaman İmza Paydası + + + + Numerator + Pay + + + + Denominator + Payda + + + + + Tempo + Tempo + + + + Track + Parça + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + JACK sunucusu kapalı + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + JACK sunucusu kapatılmış görünüyor. + + + + lmms::MidiPort + + + Input channel + Giriş kanalı + + + + Output channel + Çıkış kanalı + + + + Input controller + Giriş kontrolörü + + + + Output controller + Çıkış denetleyicisi + + + + Fixed input velocity + Sabit giriş hızı + + + + Fixed output velocity + Sabit çıkış hızı + + + + Fixed output note + Sabit çıktı notu + + + + Output MIDI program + MIDI programı çıktısı + + + + Base velocity + Temel hız + + + + Receive MIDI-events + MIDI olaylarını alın + + + + Send MIDI-events + MIDI olayları gönder + + + + lmms::Mixer + + + Master + Usta + + + + + + Channel %1 + FX %1 + + + + Volume + Ses Düzeyi + + + + Mute + Sustur + + + + Solo + Tek + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + %1 kanalından %2 kanalına gönderilecek miktar + + + + lmms::MonstroInstrument + + + Osc 1 volume + Osc 1 düzey + + + + Osc 1 panning + Osc 1 kaydırma + + + + Osc 1 coarse detune + Osc 1 kaba detay + + + + Osc 1 fine detune left + Osc 1 ince detay sol + + + + Osc 1 fine detune right + Osc 1 ince detay sağ + + + + Osc 1 stereo phase offset + Osc 1 çift kanal faz ofseti + + + + Osc 1 pulse width + Osc 1 darbe genişliği + + + + Osc 1 sync send on rise + Osc 1 nsenkronizasyonu yükselişte gönder + + + + Osc 1 sync send on fall + Osc 1 senkronizasyonu sonbaharda gönder + + + + Osc 2 volume + Osc 2 düzey + + + + Osc 2 panning + Osc 2 kaydırma + + + + Osc 2 coarse detune + Osc 2 kaba detay + + + + Osc 2 fine detune left + Osc 2 ince detay sol + + + + Osc 2 fine detune right + Osc 2 ince detay sağ + + + + Osc 2 stereo phase offset + Osc 2 çift kanal faz ofseti + + + + Osc 2 waveform + Osc 2 dalga formu + + + + Osc 2 sync hard + Osc 2 senkronizasyonu zor + + + + Osc 2 sync reverse + Osc 2 senkronizasyon ters + + + + Osc 3 volume + Osc 3 düzey + + + + Osc 3 panning + Osc 3 kaydırma + + + + Osc 3 coarse detune + Osc 3 kaba detay + + + + Osc 3 Stereo phase offset + Osc 3 çift kanal faz ofseti + + + + Osc 3 sub-oscillator mix + Osc 3 alt osilatör karışımı + + + + Osc 3 waveform 1 + Osc 3 dalga formu 1 + + + + Osc 3 waveform 2 + Osc 3 dalga formu 2 + + + + Osc 3 sync hard + Osc 3 senkronizasyonu zor + + + + Osc 3 Sync reverse + Osc 3 Senkronizasyon ters + + + + LFO 1 waveform + LFO 1 dalga formu + + + + LFO 1 attack + LFO 1 saldırısı + + + + LFO 1 rate + LFO 1 oran + + + + LFO 1 phase + LFO 1 aşaması + + + + LFO 2 waveform + LFO 2 dalga formu + + + + LFO 2 attack + LFO 2 saldırısı + + + + LFO 2 rate + LFO 2 oran + + + + LFO 2 phase + LFO 2 aşaması + + + + Env 1 pre-delay + Env 1 ön gecikme + + + + Env 1 attack + Env 1 saldırısı + + + + Env 1 hold + Env 1 tutma + + + + Env 1 decay + Env 1 bozunma + + + + Env 1 sustain + Env 1 sürdürmek + + + + Env 1 release + Env 1 yayını + + + + Env 1 slope + Env 1 eğimi + + + + Env 2 pre-delay + Env 2 ön gecikmesi + + + + Env 2 attack + Env 2 saldırısı + + + + Env 2 hold + Env 2 tutma + + + + Env 2 decay + Env 2 bozunma + + + + Env 2 sustain + Env 2 sürdürmek + + + + Env 2 release + Env 2 yayını + + + + Env 2 slope + Env 2 eğimi + + + + Osc 2+3 modulation + Osc 2+3 modülasyonu + + + + Selected view + Seçili görünüm + + + + Osc 1 - Vol env 1 + Osc 1 - Düzey env 1 + + + + Osc 1 - Vol env 2 + Osc 1 - Düzey env 2 + + + + Osc 1 - Vol LFO 1 + Osc 1 - Düzey LFO 1 + + + + Osc 1 - Vol LFO 2 + Osc 1 - Düzey LFO 2 + + + + Osc 2 - Vol env 1 + Osc 2 - Düzey env 1 + + + + Osc 2 - Vol env 2 + Osc 2 - Düzey env 2 + + + + Osc 2 - Vol LFO 1 + Osc 2 - Düzey LFO 1 + + + + Osc 2 - Vol LFO 2 + Osc 2 - Düzey LFO 2 + + + + Osc 3 - Vol env 1 + Osc 3 - Düzey env 1 + + + + Osc 3 - Vol env 2 + Osc 3 - Düzey env 2 + + + + Osc 3 - Vol LFO 1 + Osc 3 - Düzey LFO 1 + + + + Osc 3 - Vol LFO 2 + Osc 3 - Düzey LFO 2 + + + + Osc 1 - Phs env 1 + Osc 1 - Phs env 1 + + + + Osc 1 - Phs env 2 + Osc 1 - Phs env 2 + + + + Osc 1 - Phs LFO 1 + Osc 1 - Phs LFO 1 + + + + Osc 1 - Phs LFO 2 + Osc 1 - Phs LFO 2 + + + + Osc 2 - Phs env 1 + Osc 2 - Phs env 1 + + + + Osc 2 - Phs env 2 + Osc 2 - Phs env 2 + + + + Osc 2 - Phs LFO 1 + Osc 2 - Phs LFO 1 + + + + Osc 2 - Phs LFO 2 + Osc 2 - Phs LFO 2 + + + + Osc 3 - Phs env 1 + Osc 3 - Phs env 1 + + + + Osc 3 - Phs env 2 + Osc 3 - Phs env 2 + + + + Osc 3 - Phs LFO 1 + Osc 3 - Phs LFO 1 + + + + Osc 3 - Phs LFO 2 + Osc 3 - Phs LFO 2 + + + + Osc 1 - Pit env 1 + Osc 1 - Pit env 1 + + + + Osc 1 - Pit env 2 + Osc 1 - Pit env 2 + + + + Osc 1 - Pit LFO 1 + Osc 1 - Pit LFO 1 + + + + Osc 1 - Pit LFO 2 + Osc 1 - Pit LFO 2 + + + + Osc 2 - Pit env 1 + Osc 2 - Pit env 1 + + + + Osc 2 - Pit env 2 + Osc 2 - Pit env 2 + + + + Osc 2 - Pit LFO 1 + Osc 2 - Pit LFO 1 + + + + Osc 2 - Pit LFO 2 + Osc 2 - Pit LFO 2 + + + + Osc 3 - Pit env 1 + Osc 3 - Pit env 1 + + + + Osc 3 - Pit env 2 + Osc 3 - Pit env 2 + + + + Osc 3 - Pit LFO 1 + Osc 3 - Pit LFO 1 + + + + Osc 3 - Pit LFO 2 + Osc 3 - Pit LFO 2 + + + + Osc 1 - PW env 1 + Osc 1 - PW env 1 + + + + Osc 1 - PW env 2 + Osc 1 - PW env 2 + + + + Osc 1 - PW LFO 1 + Osc 1 - PW LFO 1 + + + + Osc 1 - PW LFO 2 + Osc 1 - PW LFO 2 + + + + Osc 3 - Sub env 1 + Osc 3 - Sub env 1 + + + + Osc 3 - Sub env 2 + Osc 3 - Sub env 2 + + + + Osc 3 - Sub LFO 1 + Osc 3 - Sub LFO 1 + + + + Osc 3 - Sub LFO 2 + Osc 3 - Sub LFO 2 + + + + + Sine wave + Sinüs dalgası + + + + Bandlimited Triangle wave + Band sınırlı Üçgen dalga + + + + Bandlimited Saw wave + Bant sınırı Testere dalgası + + + + Bandlimited Ramp wave + Bant sınırlı Rampa dalgası + + + + Bandlimited Square wave + Bant sınırı Kare dalga + + + + Bandlimited Moog saw wave + Band sınırlı Moog testere dalgası + + + + + Soft square wave + Yumuşak kare dalga + + + + Absolute sine wave + Mutlak sinüs dalgası + + + + + Exponential wave + Üstel dalga + + + + White noise + Beyaz gürültü + + + + Digital Triangle wave + Dijital Üçgen dalga + + + + Digital Saw wave + Dijital Testere dalgası + + + + Digital Ramp wave + Dijital Rampa dalgası + + + + Digital Square wave + Dijital Kare dalga + + + + Digital Moog saw wave + Digital Moog testere dalgası + + + + Triangle wave + Üçgen dalga + + + + Saw wave + Testere dalga + + + + Ramp wave + Rampa dalgası + + + + Square wave + Kare dalgası + + + + Moog saw wave + Moog testere dalgası + + + + Abs. sine wave + Abs. sinüs dalgası + + + + Random + Rastgele + + + + Random smooth + Rastgele pürüzsüz + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + Kanal 1 kaba detune + + + + Channel 1 volume + Kanal 1 düzeyi + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + Kanal 1 zarf uzunluğu + + + + Channel 1 duty cycle + Kanal 1 görev döngüsü + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + Kanal 1 tarama miktarı + + + + Channel 1 sweep rate + Kanal 1 tarama hızı + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + Kanal 2 zarf uzunluğu + + + + Channel 2 duty cycle + Kanal 2 görev döngüsü + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + Kanal 2 tarama miktarı + + + + Channel 2 sweep rate + Kanal 2 tarama hızı + + + + Channel 3 enable + + + + + Channel 3 coarse detune + Kanal 3 kaba detune + + + + Channel 3 volume + Kanal 3 düzeyi + + + + Channel 4 enable + + + + + Channel 4 volume + Kanal 4 düzeyi + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + Kanal 4 zarf uzunluğu + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + Kanal 4 gürültü frekansı + + + + Channel 4 noise frequency sweep + Kanal 4 gürültü frekansı taraması + + + + Channel 4 quantize + + + + + Master volume + Ana ses + + + + Vibrato + Titreşim + + + + lmms::OpulenzInstrument + + + Patch + Yama + + + + Op 1 attack + Op 1 saldırısı + + + + Op 1 decay + Op 1 bozunması + + + + Op 1 sustain + Op 1 sürdürme + + + + Op 1 release + Op 1 yayını + + + + Op 1 level + Op 1 seviyesi + + + + Op 1 level scaling + Op 1 seviye ölçeklendirme + + + + Op 1 frequency multiplier + Op 1 frekans çarpanı + + + + Op 1 feedback + Op 1 geribildirimi + + + + Op 1 key scaling rate + Op 1 anahtar ölçekleme oranı + + + + Op 1 percussive envelope + Op 1 vurmalı zarf + + + + Op 1 tremolo + Op 1 tremolo + + + + Op 1 vibrato + Op 1 titreşimi + + + + Op 1 waveform + Op 1 dalga formu + + + + Op 2 attack + Op 2 saldırısı + + + + Op 2 decay + Op 2 bozunması + + + + Op 2 sustain + Op 2 sürdürme + + + + Op 2 release + Op 2 yayını + + + + Op 2 level + Op 2 seviyesi + + + + Op 2 level scaling + Op 2 seviye ölçeklendirme + + + + Op 2 frequency multiplier + Op 2 frekans çarpanı + + + + Op 2 key scaling rate + Op 2 anahtar ölçekleme oranı + + + + Op 2 percussive envelope + Op 2 vurmalı zarf + + + + Op 2 tremolo + Op 2 tremolo + + + + Op 2 vibrato + Op 2 titreşimi + + + + Op 2 waveform + Op 2 dalga formu + + + + FM + FM + + + + Vibrato depth + Titreşim derinliği + + + + Tremolo depth + Tremolo derinliği + + + + lmms::OrganicInstrument + + + Distortion + Bozma + + + + Volume + Ses Düzeyi + + + + lmms::OscillatorObject + + + Osc %1 waveform + Osc %1 dalga biçimi + + + + Osc %1 harmonic + Osc %1 harmonik + + + + + Osc %1 volume + Osc %1 düzeyi + + + + + Osc %1 panning + Osc %1 kaydırma + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + Osc %1 kaba ince ayar + + + + Osc %1 fine detuning left + Osc %1 ince ayar sol + + + + Osc %1 fine detuning right + Osc %1 ince ayar sağ + + + + Osc %1 phase-offset + Osc %1 faz kayması + + + + Osc %1 stereo phase-detuning + Osc %1 stereo faz ayarlama + + + + Osc %1 wave shape + Osc %1 dalga şekli + + + + Modulation type %1 + Modülasyon türü %1 + + + + lmms::PatternTrack + + + Pattern %1 + %1 Kalıbı + + + + Clone of %1 + Kopya %1 + + + + lmms::PeakController + + + Peak Controller + Tepe Kontrolörü + + + + Peak Controller Bug + Tepe Kontrol Hatası + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + LMMS'nin eski sürümündeki bir hata nedeniyle, tepe denetleyicileri doğru şekilde bağlanamayabilir. Lütfen tepe denetleyicilerin doğru şekilde bağlandığından emin olun ve bu dosyayı yeniden kaydedin. Herhangi bir rahatsızlık verdiysem üzgünüm. + + + + lmms::PeakControllerEffectControls + + + Base value + Temel değer + + + + Modulation amount + Modülasyon miktarı + + + + Attack + Saldırı + + + + Release + Yayınla + + + + Treshold + Eşik + + + + Mute output + Çıkış sessiz + + + + Absolute value + Mutlak değer + + + + Amount multiplicator + Miktar çarpanı + + + + lmms::Plugin + + + Plugin not found + Eklenti bulunamadı + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + "%1" eklentisi bulunamadı veya yüklenemedi! +Nedeni: "%2" + + + + Error while loading plugin + Eklenti yüklenirken hata + + + + Failed to load plugin "%1"! + "%1" eklentisi yüklenemedi! + + + + lmms::ReverbSCControls + + + Input gain + Giriş kazancı + + + + Size + Boy + + + + Color + Renk + + + + Output gain + Çıkış kazancı + + + + lmms::SaControls + + + Pause + Duraklat + + + + Reference freeze + Referans dondurma + + + + Waterfall + Şelale + + + + Averaging + Ortalama + + + + Stereo + Stereo + + + + Peak hold + Tepe tutma + + + + Logarithmic frequency + Logaritmik frekans + + + + Logarithmic amplitude + Logaritmik genlik + + + + Frequency range + Frekans aralığı + + + + Amplitude range + Genlik aralığı + + + + FFT block size + FFT blok boyutu + + + + FFT window type + FFT pencere türü + + + + Peak envelope resolution + En yüksek zarf çözünürlüğü + + + + Spectrum display resolution + Spektrum ekran çözünürlüğü + + + + Peak decay multiplier + Tepe bozunma çarpanı + + + + Averaging weight + Ortalama ağırlık + + + + Waterfall history size + Şelale geçmişi boyutu + + + + Waterfall gamma correction + Şelale gama düzeltmesi + + + + FFT window overlap + FFT penceresi çakışması + + + + FFT zero padding + FFT sıfır dolgusu + + + + + Full (auto) + Tam (otomatik) + + + + + + Audible + Sesli + + + + Bass + Bas + + + + Mids + Ortalar + + + + High + Yüksek + + + + Extended + Genişletilmiş + + + + Loud + Yüksek + + + + Silent + Sessiz + + + + (High time res.) + (Yüksek zaman çözünürlüğü) + + + + (High freq. res.) + (Yüksek frekans çözünürlüğü) + + + + Rectangular (Off) + Dikdörtgen (Kapalı) + + + + + Blackman-Harris (Default) + Blackman-Harris (Varsayılan) + + + + Hamming + Hamming + + + + Hanning + Hanning + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + Ses Düzeyi + + + + Panning + Kaydırma + + + + Mixer channel + FX kanalı + + + + + Sample track + Örnek parça + + + + lmms::Scale + + + empty + boş + + + + lmms::Sf2Instrument + + + Bank + Yuva + + + + Patch + Yama + + + + Gain + Kazanç + + + + Reverb + Yankı + + + + Reverb room size + Yankı odası boyutu + + + + Reverb damping + Yankı sönümleme + + + + Reverb width + Yankı genişliği + + + + Reverb level + Yankı seviyesi + + + + Chorus + Koro + + + + Chorus voices + Koro sesleri + + + + Chorus level + Koro seviyesi + + + + Chorus speed + Koro hızı + + + + Chorus depth + Koro derinliği + + + + A soundfont %1 could not be loaded. + %1 ses yazı tipi yüklenemedi. + + + + lmms::SfxrInstrument + + + Wave + Dalga + + + + lmms::SidInstrument + + + Cutoff frequency + Kesme frekansı + + + + Resonance + Çınlama + + + + Filter type + Filtre tipi + + + + Voice 3 off + Ses 3 kapalı + + + + Volume + Ses Düzeyi + + + + Chip model + Yonga modeli + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + Tempo + + + + Master volume + Ana ses + + + + Master pitch + Ana sahne + + + + Aborting project load + Proje yüklemesi iptal ediliyor + + + + Project file contains local paths to plugins, which could be used to run malicious code. + Proje dosyası, kötü amaçlı kod çalıştırmak için kullanılabilecek eklentilere giden yerel yolları içerir. + + + + Can't load project: Project file contains local paths to plugins. + Proje yüklenemiyor: Proje dosyası, eklentilere giden yerel yolları içerir. + + + + LMMS Error report + LMMS Hata raporu + + + + (repeated %1 times) + (%1 kez tekrarlandı) + + + + The following errors occurred while loading: + Yükleme sırasında aşağıdaki hatalar oluştu: + + + + lmms::StereoEnhancerControls + + + Width + Genişlik + + + + lmms::StereoMatrixControls + + + Left to Left + Soldan Sola + + + + Left to Right + Soldan sağa + + + + Right to Left + Sağdan sola + + + + Right to Right + Sağa Doğru + + + + lmms::Track + + + Mute + Sustur + + + + Solo + Tek + + + + lmms::TrackContainer + + + Couldn't import file + Dosya içe aktarılamadı + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + %1 dosyasını içe aktarmak için bir filtre bulunamadı. +Bu dosyayı başka bir yazılım kullanarak LMMS tarafından desteklenen bir biçime dönüştürmelisiniz. + + + + Couldn't open file + Dosya açılamadı + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + %1 dosyası okumak için açılamadı. +Lütfen dosyayı ve dosyayı içeren dizini okuma iznine sahip olduğunuzdan emin olun ve tekrar deneyin! + + + + Loading project... + Proje yükleniyor... + + + + + Cancel + Çıkış + + + + + Please wait... + Lütfen bekleyin... + + + + Loading cancelled + Yükleme iptal edildi + + + + Project loading was cancelled. + Proje yüklemesi iptal edildi. + + + + Loading Track %1 (%2/Total %3) + %1 Parça Yükleniyor (%2/Toplam %3) + + + + Importing MIDI-file... + MIDI dosyası içe aktarılıyor... + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + Kalıcılık miktarını göster + + + + Logarithmic scale + Logaritmik ölçek + + + + High quality + Yüksek kalite + + + + lmms::VestigeInstrument + + + Loading plugin + Eklenti yükleniyor + + + + Please wait while loading the VST plugin... + VST eklentisini yüklerken lütfen bekleyin... + + + + lmms::Vibed + + + String %1 volume + Dize %1 hacmi + + + + String %1 stiffness + Dize %1 sertliği + + + + Pick %1 position + %1 pozisyon seçin + + + + Pickup %1 position + Alım %1 pozisyon + + + + String %1 panning + %1 dize kaydırma + + + + String %1 detune + %1 dize detune + + + + String %1 fuzziness + Dize %1 belirsizliği + + + + String %1 length + Dize %1 uzunluğu + + + + Impulse %1 + Dürtü %1 + + + + String %1 + Dize %1 + + + + lmms::VoiceObject + + + Voice %1 pulse width + Ses %1 darbe genişliği + + + + Voice %1 attack + Ses %1 saldırısı + + + + Voice %1 decay + Ses %1 zayıflaması + + + + Voice %1 sustain + Ses %1 sürdür + + + + Voice %1 release + Ses %1 sürümü + + + + Voice %1 coarse detuning + Ses %1 kaba ince ayar + + + + Voice %1 wave shape + Ses %1 dalga şekli + + + + Voice %1 sync + Ses %1 senkronizasyonu + + + + Voice %1 ring modulate + Ses %1 zil sesi modülasyonu + + + + Voice %1 filtered + Ses %1 filtrelendi + + + + Voice %1 test + Ses %1 testi + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + %1 VST eklentisi yüklenemedi. + + + + Open Preset + Ön Ayarı Aç + + + + + VST Plugin Preset (*.fxp *.fxb) + VST Eklenti Ön Ayarı (*.fxp *.fxb) + + + + : default + : öntanımlı + + + + Save Preset + Önayarı Kaydet + + + + .fxp + .fxp + + + + .FXP + .FXP + + + + .FXB + .FXB + + + + .fxb + .fxb + + + + Loading plugin + Eklenti yükleniyor + + + + Please wait while loading VST plugin... + VST eklentisi yüklenirken lütfen bekleyin... + + + + lmms::WatsynInstrument + + + Volume A1 + Düzey A1 + + + + Volume A2 + Düzey A2 + + + + Volume B1 + Düzey B1 + + + + Volume B2 + Düzey B2 + + + + Panning A1 + Kaydırma A1 + + + + Panning A2 + Kaydırma A2 + + + + Panning B1 + Kaydırma B1 + + + + Panning B2 + Kaydırma B2 + + + + Freq. multiplier A1 + Frekans. çarpan A1 + + + + Freq. multiplier A2 + Frekans. çarpan A2 + + + + Freq. multiplier B1 + Frekans. çarpan B1 + + + + Freq. multiplier B2 + Frekans. çarpan B2 + + + + Left detune A1 + Sol detune A1 + + + + Left detune A2 + Sol detune A2 + + + + Left detune B1 + Sol detune B1 + + + + Left detune B2 + Sol detune B2 + + + + Right detune A1 + Sağ detune A1 + + + + Right detune A2 + Sağ detune A2 + + + + Right detune B1 + Sağ detune B1 + + + + Right detune B2 + Sağ detune B2 + + + + A-B Mix + A-B Karışımı + + + + A-B Mix envelope amount + A-B Karışık zarf miktarı + + + + A-B Mix envelope attack + A-B Karışık zarf saldırısı + + + + A-B Mix envelope hold + A-B Karışık zarf tutma + + + + A-B Mix envelope decay + A-B Karışım zarf bozunması + + + + A1-B2 Crosstalk + A1-B2 Çapraz Karışma + + + + A2-A1 modulation + A2-A1 modülasyonu + + + + B2-B1 modulation + B2-B1 modülasyonu + + + + Selected graph + Seçili grafik + + + + lmms::WaveShaperControls + + + Input gain + Giriş kazancı + + + + Output gain + Çıkış kazancı + + + + lmms::Xpressive + + + Selected graph + Seçili grafik + + + + A1 + A1 + + + + A2 + A2 + + + + A3 + A3 + + + + W1 smoothing + W1 yumuşatma + + + + W2 smoothing + W2 yumuşatma + + + + W3 smoothing + W3 yumuşatma + + + + Panning 1 + Kaydırma 1 + + + + Panning 2 + Kaydırma 2 + + + + Rel trans + Rel trans + + + + lmms::ZynAddSubFxInstrument + + + Portamento + Kaydırma + + + + Filter frequency + Frekans filtresi + + + + Filter resonance + Rezonans filtresi + + + + Bandwidth + Bant genişliği + + + + FM gain + FM kazancı + + + + Resonance center frequency + Rezonans merkez frekansı + + + + Resonance bandwidth + Rezonans bant genişliği + + + + Forward MIDI control change events + MIDI kontrol değişikliği olaylarını iletme + + + + lmms::graphModel + + + Graph + Grafik + + + + lmms::gui::AmplifierControlDialog + + + VOL + SES + + + + Volume: + Ses Düzeyi: + + + + PAN + PAN + + + + Panning: + Kaydırma: + + + + LEFT + SOL + + + + Left gain: + Sol kazanç: + + + + RIGHT + SAĞ + + + + Right gain: + Sağ kazanç: + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + Örnek açın + + + + Reverse sample + Ters örnek + + + + Disable loop + Döngüyü kapat + + + + Enable loop + Döngüyü aç + + + + Enable ping-pong loop + Ping-pong döngüsünü etkinleştir + + + + Continue sample playback across notes + Örneği notalar arasında oynatmaya devam et + + + + Amplify: + Güçlendirin: + + + + Start point: + Başlangıç noktası: + + + + End point: + Bitiş noktası: + + + + Loopback point: + Geri döngü noktası: + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + Örnek uzunluğu: + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + Ayarkayıt Düzenleyici'de aç + + + + Clear + Temizle + + + + Reset name + İsmini sıfırla + + + + Change name + İsmini değiştir + + + + Set/clear record + Kayıdı başlat/durdur + + + + Flip Vertically (Visible) + Dikey Yönde Çevir (Görünür) + + + + Flip Horizontally (Visible) + Yatay Yönde Çevir (Görünür) + + + + %1 Connections + %1 Bağlantı + + + + Disconnect "%1" + Şunun bağlantısını kes: "%1" + + + + Model is already connected to this clip. + Model zaten bu desene bağlanmış. + + + + lmms::gui::AutomationEditor + + + Edit Value + Değeri Düzenleyin + + + + New outValue + Yeni çıkış değeri + + + + New inValue + Yeni giriş Değeri + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + Seçili bölümü oynat/durdur (Boşluk Tuşu) + + + + Stop playing of current clip (Space) + Seçili modeli oynatmayı durdur (Boşluk Tuşu) + + + + Edit actions + İşlemleri düzenle + + + + Draw mode (Shift+D) + Çizim modu (Shift+D) + + + + Erase mode (Shift+E) + Silgi modu (Shift+E) + + + + Draw outValues mode (Shift+C) + Değerleri çiz modu (Shift+C) + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + Dikey çevir + + + + Flip horizontally + Yatay çevir + + + + Interpolation controls + Enterpolasyon kontrolleri + + + + Discrete progression + Kesikli ilerleme + + + + Linear progression + Doğrusal ilerleme + + + + Cubic Hermite progression + Kübik Hermite ilerleme + + + + Tension value for spline + Sapma için gerilim değeri + + + + Tension: + Gerginlik: + + + + Zoom controls + Yakınlaştırma kontrolleri + + + + Horizontal zooming + Yatay yakınlaştırma + + + + Vertical zooming + Dikey yakınlaştırma + + + + Quantization controls + Niceleme kontrolleri + + + + Quantization + Niceleme + + + + Clear ghost notes + + + + + + Automation Editor - no clip + Ayarkayıt Düzenleyici - oluşturulmuş bölüm yok + + + + + Automation Editor - %1 + Ayarkayıt Düzenleyici - %1 + + + + Model is already connected to this clip. + Model zaten bu desene bağlanmış. + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + FREK + + + + Frequency: + Frekans: + + + + GAIN + GAIN + + + + Gain: + Kazanç: + + + + RATIO + ORAN + + + + Ratio: + Oran: + + + + lmms::gui::BitInvaderView + + + Sample length + Örnek uzunluğu + + + + Draw your own waveform here by dragging your mouse on this graph. + Farenizi bu grafiğin üzerine sürükleyerek buraya kendi dalga formunuzu çizin. + + + + + Sine wave + Sinüs dalgası + + + + + Triangle wave + Üçgen dalga + + + + + Saw wave + Testere dalga + + + + + Square wave + Kare dalgası + + + + + White noise + Beyaz gürültü + + + + + User-defined wave + Kullanıcı tanımlı dalga + + + + + Smooth waveform + Düzgün dalga formu + + + + Interpolation + Aradeğerleme + + + + Normalize + Normalleştir + + + + lmms::gui::BitcrushControlDialog + + + IN + İÇİNDE + + + + OUT + OUT + + + + + GAIN + GAIN + + + + Input gain: + Giriş kazancı: + + + + NOISE + PARAZİT + + + + Input noise: + Giriş gürültüsü: + + + + Output gain: + Çıkış kazancı: + + + + CLIP + KIRP + + + + Output clip: + Çıktı klibi: + + + + Rate enabled + Oran etkinleştirildi + + + + Enable sample-rate crushing + Örnek hızında ezmeyi etkinleştirin + + + + Depth enabled + Derinlik etkinleştirildi + + + + Enable bit-depth crushing + Bit derinliğinde ezmeyi etkinleştirin + + + + FREQ + FREK + + + + Sample rate: + Örnekleme oranı: + + + + STEREO + STEREO + + + + Stereo difference: + Stereo farklılığı: + + + + QUANT + MİKTAR + + + + Levels: + Düzey: + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + Görselli Arayüzü Göster + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + Carla'nın grafiksel kullanıcı arayüzünü (GUI) göstermek veya gizlemek için buraya tıklayın. + + + + Params + Parametreler + + + + Available from Carla version 2.1 and up. + Carla sürüm 2.1 ve üzeri sürümlerde mevcuttur. + + + + lmms::gui::CarlaParamsView + + + Search.. + Ara.. + + + + Clear filter text + Filtre metnini temizle + + + + Only show knobs with a connection. + Yalnızca bağlantılı düğmeleri gösterin. + + + + - Parameters + - Parametreler + + + + lmms::gui::ClipView + + + Current position + Şu anki pozisyon + + + + Current length + Mevcut uzunluk + + + + + %1:%2 (%3:%4 to %5:%6) + %1:%2 (%3:%4 to %5:%6) + + + + Press <%1> and drag to make a copy. + Bir kopya oluşturmak için <%1> tuşuna basın ve sürükleyin. + + + + Press <%1> for free resizing. + Serbest yeniden boyutlandırma için <%1> seçeneğine basın. + + + + Hint + İpucu + + + + Delete (middle mousebutton) + Sil (orta klik) + + + + Delete selection (middle mousebutton) + Seçimi sil (orta fare düğmesi) + + + + Cut + Kes + + + + Cut selection + Seçimi Kes + + + + Merge Selection + Seçimi Birleştir + + + + Copy + Kopya + + + + Copy selection + Seçimi Kopyala + + + + Paste + Yapıştır + + + + Mute/unmute (<%1> + middle click) + Sesi kapat/sesi aç (<%1> + orta tıklama) + + + + Mute/unmute selection (<%1> + middle click) + Seçimin sesini kapat/aç (<%1> + orta tıklama) + + + + Clip color + Klip rengi + + + + Change + Değiştir + + + + Reset + Sıfırla + + + + Pick random + Rastgele seç + + + + lmms::gui::CompressorControlDialog + + + Threshold: + Eşik: + + + + Volume at which the compression begins to take place + Sıkıştırmanın gerçekleşmeye başladığı düzey + + + + Ratio: + Oran: + + + + How far the compressor must turn the volume down after crossing the threshold + Eşiği geçtikten sonra kompresörün hacmi ne kadar azaltması gerekir + + + + Attack: + Saldırı: + + + + Speed at which the compressor starts to compress the audio + Kompresörün sesi sıkıştırmaya başladığı hız + + + + Release: + Yayınla: + + + + Speed at which the compressor ceases to compress the audio + Kompresörün sesi sıkıştırmayı bıraktığı hız + + + + Knee: + Diz: + + + + Smooth out the gain reduction curve around the threshold + Eşiğin etrafındaki kazanç azaltma eğrisini düzeltin + + + + Range: + Menzil: + + + + Maximum gain reduction + Maksimum kazanç azaltma + + + + Lookahead Length: + Önden Bakış Uzunluğu: + + + + How long the compressor has to react to the sidechain signal ahead of time + Kompresörün yan zincir sinyaline vaktinden önce ne kadar süre tepki vermesi gerekir + + + + Hold: + Ambar: + + + + Delay between attack and release stages + Saldırı ve serbest bırakma aşamaları arasındaki gecikme + + + + RMS Size: + RMS Boyutu: + + + + Size of the RMS buffer + RMS arabelleğinin boyutu + + + + Input Balance: + Giriş Dengesi: + + + + Bias the input audio to the left/right or mid/side + Giriş sesini sola / sağa veya ortaya / yana çevirin + + + + Output Balance: + Çıktı Dengesi: + + + + Bias the output audio to the left/right or mid/side + Çıkış sesini sola / sağa veya ortaya / tarafa çevirin + + + + Stereo Balance: + Çift kanal Dengesi: + + + + Bias the sidechain signal to the left/right or mid/side + Yan zincir sinyalini sola / sağa veya ortaya / yana çevirin + + + + Stereo Link Blend: + Çift kanal Bağlantı Karışımı: + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + Bağlantısız / maksimum / ortalama / minimum çift kanal bağlantı modları arasında uyum sağlayın + + + + Tilt Gain: + Eğim Kazancı: + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + Yan zincir sinyalini düşük veya yüksek frekanslara yönlendirin. -6 db alçak geçiş, 6 db yüksek geçiştir. + + + + Tilt Frequency: + Eğim Frekansı: + + + + Center frequency of sidechain tilt filter + Yan zincir eğim filtresinin merkez frekansı + + + + Mix: + Karıştır: + + + + Balance between wet and dry signals + Islak ve kuru sinyaller arasında denge + + + + Auto Attack: + Otomatik Saldırı: + + + + Automatically control attack value depending on crest factor + Crest faktörüne bağlı olarak saldırı değerini otomatik olarak kontrol edin + + + + Auto Release: + Otomatik Yayın: + + + + Automatically control release value depending on crest factor + Crest faktörüne bağlı olarak serbest bırakma değerini otomatik olarak kontrol edin + + + + Output gain + Çıkış kazancı + + + + + Gain + Kazanç + + + + Output volume + Çıkış Düzeyi + + + + Input gain + Giriş kazancı + + + + Input volume + Giriş Düzeyi + + + + Root Mean Square + Kök kare ortalama + + + + Use RMS of the input + Girişin RMS'sini kullanın + + + + Peak + Zirve + + + + Use absolute value of the input + Girişin mutlak değerini kullan + + + + Left/Right + Sol/Sağ + + + + Compress left and right audio + Sol ve sağ sesi sıkıştır + + + + Mid/Side + Orta/Yan + + + + Compress mid and side audio + Orta ve yan sesi sıkıştır + + + + Compressor + Sıkıştırıcı + + + + Compress the audio + Sesi sıkıştır + + + + Limiter + Sınırlayıcı + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + Oranı sonsuza ayarla (ses seviyesini sınırlaması garanti edilmez) + + + + Unlinked + Bağlantısız + + + + Compress each channel separately + Her kanalı ayrı ayrı sıkıştırın + + + + Maximum + En Çok + + + + Compress based on the loudest channel + En gürültülü kanala göre sıkıştır + + + + Average + Ortalama + + + + Compress based on the averaged channel volume + Ortalama kanal hacmine göre sıkıştır + + + + Minimum + En Az + + + + Compress based on the quietest channel + En sessiz kanala göre sıkıştırın + + + + Blend + Harman + + + + Blend between stereo linking modes + Stereo bağlantı modları arasında uyum sağlayın + + + + Auto Makeup Gain + Otomatik Makyaj Kazancı + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + Eşik, diz ve oran ayarlarına bağlı olarak makyaj kazancını otomatik olarak değiştirin + + + + + Soft Clip + Yumuşak Kırpılma + + + + Play the delta signal + Delta sinyalini çal + + + + Use the compressor's output as the sidechain input + Yan zincir girişi olarak kompresörün çıktısını kullanın + + + + Lookahead Enabled + İleri Bakış Etkinleştirildi + + + + Enable Lookahead, which introduces 20 milliseconds of latency + 20 milisaniyelik gecikme süresi sağlayan Lookahead'i etkinleştirin + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + Bağlantı Ayarları + + + + MIDI CONTROLLER + MIDI KONTROLÖR + + + + Input channel + Giriş kanalı + + + + CHANNEL + KANAL + + + + Input controller + Giriş kontrolörü + + + + CONTROLLER + KONTROLÖR + + + + + Auto Detect + Oto-Tespit + + + + MIDI-devices to receive MIDI-events from + MIDI olaylarını almak için MIDI cihazları + + + + USER CONTROLLER + KULLANICI KONTROLÖRÜ + + + + MAPPING FUNCTION + EŞLEŞTİRME FONKSİYONU + + + + OK + TAMAM + + + + Cancel + Çıkış + + + + LMMS + LMMS + + + + Cycle Detected. + Döngü Algılandı. + + + + lmms::gui::ControllerRackView + + + Controller Rack + Denetleyici Rafı + + + + Add + Ekle + + + + Confirm Delete + Silmeyi Onayla + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + Silmeyi onaylıyor musunuz? Bu denetleyiciyle ilişkili mevcut bağlantılar var. Geri almanın bir yolu yok. + + + + lmms::gui::ControllerView + + + Controls + Kontroller + + + + Rename controller + Denetleyiciyi yeniden adlandır + + + + Enter the new name for this controller + Bu denetleyicinin yeni adını girin + + + + LFO + LFO + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + Bu denetleyiciyi &kaldırın + + + + Re&name this controller + Bu denetleyiciyi yeniden ad&landırın + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + Bant geçişi 1/2: + + + + Band 2/3 crossover: + Bant geçişi 2/3: + + + + Band 3/4 crossover: + Bant geçişi 3/4: + + + + Band 1 gain + Band kazancı 1 + + + + Band 1 gain: + Band kazancı 1: + + + + Band 2 gain + Band kazancı 2 + + + + Band 2 gain: + Band kazancı 2: + + + + Band 3 gain + Band kazancı 3 + + + + Band 3 gain: + Band kazancı 3: + + + + Band 4 gain + Band kazancı 4 + + + + Band 4 gain: + Band kazancı 4: + + + + Band 1 mute + Band 1 sesini kapatma + + + + Mute band 1 + Bant 1'in sesini kapat + + + + Band 2 mute + Band 2 sesini kapatma + + + + Mute band 2 + Band 2'yi sessize al + + + + Band 3 mute + Band 3 sesini kapatma + + + + Mute band 3 + Bant 3'ü sessize al + + + + Band 4 mute + Band 4 sesini kapatma + + + + Mute band 4 + Bant 4'ü sessize al + + + + lmms::gui::DelayControlsDialog + + + DELAY + GECİKME + + + + Delay time + Gecikme süresi + + + + FDBK + FDBK + + + + Feedback amount + Geri bildirim miktarı + + + + RATE + ORAN + + + + LFO frequency + LFO frekansı + + + + AMNT + AMNT + + + + LFO amount + LFO miktarı + + + + Out gain + Çıkış kazancı + + + + Gain + Kazanç + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + MİKTAR + + + + Number of all-pass filters + all-pass filtree numarası + + + + FREQ + FREKANS + + + + Frequency: + Frekans: + + + + RESO + REZONANS + + + + Resonance: + Rezonans: + + + + FEED + GERİ BİLDİRİM + + + + Feedback: + Geri bildirim: + + + + DC Offset Removal + DC Ofset Kaldırma + + + + Remove DC Offset + DC Ofsetini Kaldır + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + FREK + + + + + Cutoff frequency + Kesme frekansı + + + + + RESO + RESO + + + + + Resonance + Çınlama + + + + + GAIN + GAIN + + + + + Gain + Kazanç + + + + MIX + KARIŞIM + + + + Mix + Karıştır + + + + Filter 1 enabled + Filtre 1 etkinleştirildi + + + + Filter 2 enabled + Filtre 2 etkinleştirildi + + + + Enable/disable filter 1 + Filtre 1'i etkinleştir / devre dışı bırak + + + + Enable/disable filter 2 + Filtre 2'yi etkinleştir / devre dışı bırak + + + + lmms::gui::DynProcControlDialog + + + INPUT + GİRDİ + + + + Input gain: + Giriş kazancı: + + + + OUTPUT + ÇIKTI + + + + Output gain: + Çıkış kazancı: + + + + ATTACK + SALDIRI + + + + Peak attack time: + Tepe saldırı süresi: + + + + RELEASE + YAYINLAMA + + + + Peak release time: + En yüksek yayın süresi: + + + + + Reset wavegraph + Dalga grafiğini sıfırla + + + + + Smooth wavegraph + Pürüzsüz dalga grafiği + + + + + Increase wavegraph amplitude by 1 dB + Dalga grafiğinin genliğini 1 dB artırın + + + + + Decrease wavegraph amplitude by 1 dB + Dalga grafiğinin genliğini 1 dB azaltın + + + + Stereo mode: maximum + Stereo modu: maksimum + + + + Process based on the maximum of both stereo channels + Her iki stereo kanalın maksimumuna dayalı işlem + + + + Stereo mode: average + Stereo modu: ortalama + + + + Process based on the average of both stereo channels + Her iki stereo kanalın ortalamasına dayalı işlem + + + + Stereo mode: unlinked + Stereo mod: bağlantısız + + + + Process each stereo channel independently + Her bir stereo kanalı bağımsız olarak işleyin + + + + lmms::gui::Editor + + + Transport controls + Aktarım kontrolleri + + + + Play (Space) + Oynat (Boşluk) + + + + Stop (Space) + Durdur ( Boşluk) + + + + Record + Kayıt + + + + Record while playing + Çalarken kayıt + + + + Toggle Step Recording + Adım Kaydı Değiştir + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + ETKİ ZİNCİRİ + + + + Add effect + Efekt ekleyin + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + İsme göre + + + + Type + Tür + + + + All + + + + + Search + + + + + Description + Açıklama + + + + Author + Yazar + + + + lmms::gui::EffectView + + + On/Off + Aç/Kapat + + + + W/D + I/K + + + + Wet Level: + Islak düzey: + + + + DECAY + BOZULMA + + + + Time: + Zaman: + + + + GATE + PORTAL + + + + Gate: + Portal: + + + + Controls + Kontroller + + + + Move &up + Y&ukarı taşı + + + + Move &down + &Aşağı taşı + + + + &Remove this plugin + Bu eklentiyi &kaldır + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + AMT + + + + + Modulation amount: + Modülasyon miktarı: + + + + + DEL + SİL + + + + + Pre-delay: + Ön gecikme: + + + + + ATT + ATT + + + + + Attack: + Saldırı: + + + + HOLD + TUT + + + + Hold: + Ambar: + + + + DEC + DEC + + + + Decay: + Bozunma: + + + + SUST + SUST + + + + Sustain: + Sürdürmek: + + + + REL + REL + + + + Release: + Yayınla: + + + + SPD + SPD + + + + Frequency: + Frekans: + + + + FREQ x 100 + FREQ x 100 + + + + Multiply LFO frequency by 100 + LFO frekansını 100 ile çarpın + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + Bu LFO ile kontrol zarfı miktarı + + + + Hint + İpucu + + + + Drag and drop a sample into this window. + Bu pencereye bir örnek sürükleyip bırakın. + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + HP + + + + Low-shelf + Düşük raf + + + + Peak 1 + Tepe 1 + + + + Peak 2 + Tepe 2 + + + + Peak 3 + Tepe 3 + + + + Peak 4 + Tepe 4 + + + + High-shelf + Yüksek raf + + + + LP + LP + + + + Input gain + Giriş kazancı + + + + + + Gain + Kazanç + + + + Output gain + Çıkış kazancı + + + + Bandwidth: + Bant genişliği: + + + + Octave + Octave + + + + Resonance: + + + + + Frequency: + Frekans: + + + + LP group + LP grubu + + + + HP group + HP grubu + + + + lmms::gui::EqHandle + + + Reso: + Reso: + + + + BW: + BW: + + + + + Freq: + Freq: + + + + lmms::gui::ExportProjectDialog + + + Could not open file + Dosya açılamadı + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + %1 dosyası yazmak için açılamadı. +Lütfen dosyaya ve dosyayı içeren dizine yazma izniniz olduğundan emin olun ve tekrar deneyin! + + + + Export project to %1 + %1 projesini dışa aktar + + + + ( Fastest - biggest ) + (En hızlı - en büyük) + + + + ( Slowest - smallest ) + (En yavaş - en küçük) + + + + Error + Sorun + + + + Error while determining file-encoder device. Please try to choose a different output format. + Dosya kodlayıcı cihazı belirlenirken hata oluştu. Lütfen farklı bir çıktı biçimi seçmeyi deneyin. + + + + Rendering: %1% + Oluşturuluyor: %1% + + + + lmms::gui::Fader + + + Set value + Değeri ayarla + + + + Please enter a new value between %1 and %2: + Lütfen %1 ile %2 arasında yeni bir değer girin: + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + Tarayıcı + + + + Search + Ara + + + + Refresh list + Listeyi yenile + + + + User content + Kullanıcı içeriği + + + + Factory content + Fabrika içeriği + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + Aktif alet izine gönder + + + + Open containing folder + Bulunduğu dizini aç + + + + Song Editor + Şarkı Düzenleyici + + + + Pattern Editor + Kalıp Düzenleyici + + + + Send to new AudioFileProcessor instance + Yeni Ses Dosyası İşlemcisi örneğine gönder + + + + Send to new instrument track + Yeni enstrüman kanalına gönder + + + + (%2Enter) + (%2Enter) + + + + Send to new sample track (Shift + Enter) + Yeni örnek kanala gönder (Shift + Enter) + + + + Loading sample + Örnek yükleniyor + + + + Please wait, loading sample for preview... + Lütfen bekleyin, önizleme için örnek yükleniyor... + + + + Error + Sorun + + + + %1 does not appear to be a valid %2 file + %1 geçerli bir %2 dosyası gibi görünmüyor + + + + --- Factory files --- + --- Fabrika dosyaları --- + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + GECİKME + + + + Delay time: + Gecikme süresi: + + + + RATE + ORAN + + + + Period: + Periyod: + + + + AMNT + AMNT + + + + Amount: + Miktar: + + + + PHASE + Evre + + + + Phase: + Evre: + + + + FDBK + FDBK + + + + Feedback amount: + Geri bildirim miktarı: + + + + NOISE + PARAZİT + + + + White noise amount: + Beyaz gürültü miktarı: + + + + Invert + Tersine çevir + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + Tarama zamanı: + + + + Sweep time + Tarama zamanı + + + + Sweep rate shift amount: + Tarama oranı kaydırma miktarı: + + + + Sweep rate shift amount + Tarama oranı kaydırma miktarı + + + + + Wave pattern duty cycle: + Dalga deseni görev döngüsü: + + + + + Wave pattern duty cycle + Dalga deseni görev döngüsü + + + + Square channel 1 volume: + Kare kanal 1 düzeyi: + + + + Square channel 1 volume + Kare kanal 1 düzeyi + + + + + + Length of each step in sweep: + Taramadaki her adımın uzunluğu: + + + + + + Length of each step in sweep + Taramadaki her adımın uzunluğu + + + + Square channel 2 volume: + Kare kanal 2 düzeyi: + + + + Square channel 2 volume + Kare kanal 2 düzeyi + + + + Wave pattern channel volume: + Dalga deseni kanal düzeyi: + + + + Wave pattern channel volume + Dalga deseni kanal düzeyi + + + + Noise channel volume: + Gürültü kanalı düzeyi: + + + + Noise channel volume + Gürültü kanalı düzeyi + + + + SO1 volume (Right): + SO2 düzeyi (Sağ): + + + + SO1 volume (Right) + SO2 düzeyi (Sağ) + + + + SO2 volume (Left): + SO2 düzeyi (Sol): + + + + SO2 volume (Left) + SO2 düzeyi (Sol) + + + + Treble: + Tiz: + + + + Treble + Tiz + + + + Bass: + Bas: + + + + Bass + Bas + + + + Sweep direction + Tarama yönü + + + + + + + + Volume sweep direction + Düzey tarama yönü + + + + Shift register width + Vardiya kaydı genişliği + + + + Channel 1 to SO1 (Right) + Kanal 1'den SO1'e (Sağ) + + + + Channel 2 to SO1 (Right) + Kanal 2'den SO1'e (Sağ) + + + + Channel 3 to SO1 (Right) + Kanal 3'den SO1'e (Sağ) + + + + Channel 4 to SO1 (Right) + Kanal 4'den SO1'e (Sağ) + + + + Channel 1 to SO2 (Left) + Kanal 1'den SO2'ye (Sol) + + + + Channel 2 to SO2 (Left) + Kanal 2'den SO2'ye (Sol) + + + + Channel 3 to SO2 (Left) + Kanal 3'den SO2'ye (Sol) + + + + Channel 4 to SO2 (Left) + Kanal 4'den SO2'ye (Sol) + + + + Wave pattern graph + Dalga deseni grafiği + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + GIG dosyasını açın + + + + Choose patch + Yama seçin + + + + Gain: + Kazanç: + + + + GIG Files (*.gig) + GIG Dosyaları (*.gig) + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + Çalışma dizini + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + %1 LMMS çalışma dizini yok. Şimdi oluşturulsun mu? Dizini daha sonra Düzenle -> Ayarlar üzerinden değiştirebilirsiniz. + + + + Preparing UI + Arayüz hazırlanıyor + + + + Preparing song editor + Şarkı düzenleyicinin hazırlanıyor + + + + Preparing mixer + Karıştırıcı hazırlanıyor + + + + Preparing controller rack + Denetleyici rafını hazırlanıyor + + + + Preparing project notes + Proje notlarının hazırlanıyor + + + + Preparing microtuner + Mikro ayarlayıcı hazırlanıyor + + + + Preparing pattern editor + Kalıp düzenleyici hazırlanıyor + + + + Preparing piano roll + Piyano rulosunun hazırlanıyor + + + + Preparing automation editor + Otomasyon düzenleyicinin hazırlanıyor + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + ARPEJ + + + + RANGE + ARALIK + + + + Arpeggio range: + Arpej aralığı: + + + + octave(s) + octave(s) + + + + REP + REP + + + + Note repeats: + Nota tekrarları: + + + + time(s) + zamanlar) + + + + CYCLE + DÖNGÜ + + + + Cycle notes: + Döngü notaları: + + + + note(s) + nota(lar) + + + + SKIP + ATLA + + + + Skip rate: + Atlama oranı: + + + + + + % + % + + + + MISS + KAÇIRMA + + + + Miss rate: + Kaçırma oranı: + + + + TIME + ZAMAN + + + + Arpeggio time: + Arpej zamanı: + + + + ms + ms + + + + GATE + PORTAL + + + + Arpeggio gate: + Arpej kapısı: + + + + Chord: + Akord: + + + + Direction: + Yön: + + + + Mode: + Kip: + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + İSTİFLEME + + + + Chord: + Akord: + + + + RANGE + ARALIK + + + + Chord range: + Akord aralığı: + + + + octave(s) + octave(s) + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + MIDI GİRİŞİNİ ETKİNLEŞTİR + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + KANAL + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + VELOC + + + + ENABLE MIDI OUTPUT + MIDI ÇIKIŞINI ETKİNLEŞTİR + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + PROG + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + NOTA + + + + MIDI devices to receive MIDI events from + MIDI olaylarının alınacağı MIDI cihazları + + + + MIDI devices to send MIDI events to + MIDI olaylarının gönderileceği MIDI cihazları + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + HEDEF + + + + FILTER + FİLTRE + + + + FREQ + FREK + + + + Cutoff frequency: + Kesim frekansı: + + + + Hz + Hz + + + + Q/RESO + Q/RESO + + + + Q/Resonance: + Q/Rezonans: + + + + Envelopes, LFOs and filters are not supported by the current instrument. + Zarflar, LFO'lar ve filtreler mevcut cihaz tarafından desteklenmemektedir. + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + Ses Düzeyi + + + + Volume: + Ses Düzeyi: + + + + VOL + SES + + + + Panning + Kaydırma + + + + Panning: + Kaydırma: + + + + PAN + PAN + + + + MIDI + MIDI + + + + Input + Giriş + + + + Output + Çıkış + + + + Open/Close MIDI CC Rack + MIDI CC Rafını Aç / Kapat + + + + %1: %2 + %1: %2 + + + + lmms::gui::InstrumentTrackWindow + + + Volume + Ses Düzeyi + + + + Volume: + Ses Düzeyi: + + + + VOL + SES + + + + Panning + Kaydırma + + + + Panning: + Kaydırma: + + + + PAN + PAN + + + + Pitch + Saha + + + + Pitch: + Hatve (Aralık): + + + + cents + sent + + + + PITCH + PERDE + + + + Pitch range (semitones) + Perde aralığı (yarım tonlar) + + + + RANGE + ARALIK + + + + Mixer channel + FX kanalı + + + + CHANNEL + KANAL + + + + Save current instrument track settings in a preset file + Mevcut enstrüman parça ayarlarını önceden ayarlanmış bir dosyaya kaydedin + + + + SAVE + KAYDET + + + + Envelope, filter & LFO + Zarf, filtre ve LFO + + + + Chord stacking & arpeggio + Akor istifleme & arpej + + + + Effects + Efektler + + + + MIDI + MIDI + + + + Tuning and transposition + + + + + Save preset + Ön ayarı kaydet + + + + XML preset file (*.xpf) + XML hazır ayar dosyası (*.xpf) + + + + Plugin + Eklenti + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + Başlangıç frekansı: + + + + End frequency: + Bitiş frekansı: + + + + Frequency slope: + Frekans eğimi: + + + + Gain: + Kazanç: + + + + Envelope length: + Zarf uzunluğu: + + + + Envelope slope: + Zarf eğimi: + + + + Click: + Tıkla: + + + + Noise: + Gürültü: + + + + Start distortion: + Bozulmayı başlat: + + + + End distortion: + Bozulmayı bitir: + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + Mevcut Efektler + + + + + Unavailable Effects + Kullanılamayan Etkiler + + + + + Instruments + Enstrümanlar + + + + + Analysis Tools + Analiz Araçları + + + + + Don't know + Bilmiyorum + + + + Type: + Tür: + + + + lmms::gui::LadspaControlDialog + + + Link Channels + Kanalları Bağla + + + + Channel + Kanallar + + + + lmms::gui::LadspaControlView + + + Link channels + Kanalları bağla + + + + Value: + Değer: + + + + lmms::gui::LadspaDescription + + + Plugins + Eklentiler + + + + Description + Açıklama + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + Bağlantı Noktaları + + + + Name + İsme göre + + + + Rate + Oran + + + + Direction + Yön + + + + Type + Tür + + + + Min < Default < Max + Min <Varsayılan <Maks + + + + Logarithmic + Logaritmik + + + + SR Dependent + SR Bağımlı + + + + Audio + Ses + + + + Control + Kontrol + + + + Input + Giriş + + + + Output + Çıkış + + + + Toggled + Geçişli + + + + Integer + Tamsayı + + + + Float + Şamandıra + + + + + Yes + Evet + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + Kesim Frekansı: + + + + Resonance: + Rezonans: + + + + Env Mod: + Env Mod: + + + + Decay: + Bozunma: + + + + 303-es-que, 24dB/octave, 3 pole filter + 303-es-que, 24dB/octave, 3 kutuplu filtre + + + + Slide Decay: + Bozulma Kaydırma: + + + + DIST: + MESAFE: + + + + Saw wave + Testere dalga + + + + Click here for a saw-wave. + Testere dalgası için buraya tıklayın. + + + + Triangle wave + Üçgen dalga + + + + Click here for a triangle-wave. + Üçgen dalga için burayı tıklayın. + + + + Square wave + Kare dalgası + + + + Click here for a square-wave. + Kare dalga için burayı tıklayın. + + + + Rounded square wave + Yuvarlak kare dalga + + + + Click here for a square-wave with a rounded end. + Yuvarlak uçlu bir kare dalga için burayı tıklayın. + + + + Moog wave + Moog dalgası + + + + Click here for a moog-like wave. + Moog benzeri bir dalga için burayı tıklayın. + + + + Sine wave + Sinüs dalgası + + + + Click for a sine-wave. + Sinüs dalgası için tıklayın. + + + + + White noise wave + Beyaz gürültü dalgası + + + + Click here for an exponential wave. + Üstel dalga için burayı tıklayın. + + + + Click here for white-noise. + Beyaz gürültü için buraya tıklayın. + + + + Bandlimited saw wave + Bant sınırlı testere dalgası + + + + Click here for bandlimited saw wave. + Bantlı testere dalgası için buraya tıklayın. + + + + Bandlimited square wave + Bant sınırlı kare dalga + + + + Click here for bandlimited square wave. + Band sınırlı kare dalga için buraya tıklayın. + + + + Bandlimited triangle wave + Bant sınırlı üçgen dalga + + + + Click here for bandlimited triangle wave. + Bant sınırlı üçgen dalga için buraya tıklayın. + + + + Bandlimited moog saw wave + Band sınırlı moog testere dalgası + + + + Click here for bandlimited moog saw wave. + Bant sınırlı moog testere dalgası için buraya tıklayın. + + + + lmms::gui::LcdFloatSpinBox + + + Set value + Değeri ayarla + + + + Please enter a new value between %1 and %2: + Lütfen %1 ile %2 arasında yeni bir değer girin: + + + + lmms::gui::LcdSpinBox + + + Set value + Değeri ayarla + + + + Please enter a new value between %1 and %2: + Lütfen %1 ile %2 arasında yeni bir değer girin: + + + + lmms::gui::LeftRightNav + + + + + Previous + Önceki + + + + + + Next + Sonraki + + + + Previous (%1) + Önceki (%1) + + + + Next (%1) + Sonraki (%1) + + + + lmms::gui::LfoControllerDialog + + + LFO + LFO + + + + BASE + TEMEL + + + + Base: + Temel: + + + + FREQ + FREK + + + + LFO frequency: + LFO frekansı: + + + + AMNT + AMNT + + + + Modulation amount: + Modülasyon miktarı: + + + + PHS + PHS + + + + Phase offset: + Faz uzaklığı: + + + + degrees + derece + + + + Sine wave + Sinüs dalgası + + + + Triangle wave + Üçgen dalga + + + + Saw wave + Testere dalga + + + + Square wave + Kare dalgası + + + + Moog saw wave + Moog testere dalgası + + + + Exponential wave + Üstel dalga + + + + White noise + Beyaz gürültü + + + + User-defined shape. +Double click to pick a file. + Kullanıcı tanımlı şekil. +Bir dosya seçmek için çift tıklayın. + + + + Multiply modulation frequency by 1 + Geçiş frekansını 1 ile çarpın + + + + Multiply modulation frequency by 100 + Geçiş frekansını 100 ile çarpın + + + + Divide modulation frequency by 100 + Modülasyon frekansını 100'e bölün + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + Yapılandırma dosyası + + + + Error while parsing configuration file at line %1:%2: %3 + %1:%2: %3 satırındaki yapılandırma dosyası ayrıştırılırken hata oluştu + + + + Could not open file + Dosya açılamadı + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + %1 dosyası yazmak için açılamadı. +Lütfen dosyaya ve dosyayı içeren dizine yazma izniniz olduğundan emin olun ve tekrar deneyin! + + + + Project recovery + Proje kurtarma + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + Mevcut bir kurtarma dosyası var. Görünüşe göre son oturum düzgün şekilde sona ermemiş veya başka bir LMMS örneği zaten çalışıyor. Bu oturumun projesini kurtarmak istiyor musunuz? + + + + + Recover + Kurtar + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + Dosyayı kurtarın. Lütfen bunu yaptığınızda birden fazla LMMS örneği çalıştırmayın. + + + + + Discard + Iskarta + + + + Launch a default session and delete the restored files. This is not reversible. + Varsayılan bir oturum başlatın ve geri yüklenen dosyaları silin. Bu geri alınamaz. + + + + Version %1 + Sürüm %1 + + + + Preparing plugin browser + Eklenti tarayıcısı hazırlanıyor + + + + Preparing file browsers + Dosya tarayıcıları hazırlanıyor + + + + My Projects + Projelerim + + + + My Samples + Örneklerim + + + + My Presets + Ön ayarlarım + + + + My Home + Ana sayfam + + + + Root Directory + + + + + Volumes + Düzeyler + + + + My Computer + Bilgisayarım + + + + Loading background picture + Arka plan resmi yükleniyor + + + + &File + &DOSYA + + + + &New + &Yeni + + + + &Open... + &Aç... + + + + &Save + &Kaydet + + + + Save &As... + &Farklı kaydet... + + + + Save as New &Version + Yeni &Sürüm Olarak Kaydet + + + + Save as default template + Varsayılan şablon olarak kaydet + + + + Import... + İçe Aktar... + + + + E&xport... + D&ışa aktar... + + + + E&xport Tracks... + Parçaları D&ışa aktar... + + + + Export &MIDI... + &MIDI Dışa Aktar... + + + + &Quit + &Çıkış + + + + &Edit + &Düzen + + + + Undo + Geri Al + + + + Redo + İleri Al + + + + Scales and keymaps + + + + + Settings + Ayarlar + + + + &View + Gö&rünüm + + + + &Tools + &Araçlar + + + + &Help + &Yardım + + + + Online Help + Çevrimiçi Yardım + + + + Help + Yardım + + + + About + Hakkında + + + + Create new project + Yeni proje oluştur + + + + Create new project from template + Şablondan yeni proje oluştur + + + + Open existing project + Mevcut projeyi aç + + + + Recently opened projects + Yakın zamanda açılan projeler + + + + Save current project + Mevcut projeyi kaydet + + + + Export current project + Mevcut projeyi dışa aktar + + + + Metronome + Metronom + + + + + Song Editor + Şarkı Düzenleyici + + + + + Pattern Editor + Kalıp Düzenleyici + + + + + Piano Roll + Piyano Rulosu + + + + + Automation Editor + Otomasyon Düzenleyicisi + + + + + Mixer + FX-Karıştırıcısı + + + + Show/hide controller rack + Denetleyici rafını göster / gizle + + + + Show/hide project notes + Proje notlarını göster / gizle + + + + Untitled + Başlıksız + + + + Recover session. Please save your work! + Oturumu kurtarın. Lütfen çalışmanızı kaydedin! + + + + LMMS %1 + LMMS %1 + + + + Recovered project not saved + Kurtarılan proje kaydedilmedi + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + Bu proje önceki oturumdan kurtarıldı. Şu anda kaydedilmedi ve kaydetmezseniz kaybolacak. Şimdi kaydetmek ister misin? + + + + Project not saved + Proje kaydedilmedi + + + + The current project was modified since last saving. Do you want to save it now? + Mevcut proje, son kayıttan bu yana değiştirildi. Şimdi kaydetmek ister misin? + + + + Open Project + Projeyi Aç + + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + + Save Project + Projeyi Kaydet + + + + LMMS Project + LMMS Projesi + + + + LMMS Project Template + LMMS Proje Şablonu + + + + Save project template + Proje şablonunu kaydet + + + + Overwrite default template? + Varsayılan şablonun üzerine yazılsın mı? + + + + This will overwrite your current default template. + Bu, mevcut varsayılan şablonunuzun üzerine yazacaktır. + + + + Help not available + Yardım mevcut değil + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + Şu anda LMMS'de yardım bulunmamaktadır. +LMMS ile ilgili belgeler için lütfen http://lmms.sf.net/wiki adresini ziyaret edin. + + + + Controller Rack + Denetleyici Rafı + + + + Project Notes + Proje Notları + + + + Fullscreen + Tam ekran + + + + Volume as dBFS + DBFS olarak düzey + + + + Smooth scroll + Düzgün kaydırma + + + + Enable note labels in piano roll + Piyano rulosunda not etiketlerini etkinleştirin + + + + MIDI File (*.mid) + MIDI Dosyası (*.mid) + + + + + untitled + başlıksız + + + + + Select file for project-export... + Proje dışa aktarımı için dosya seçin... + + + + Select directory for writing exported tracks... + Dışa aktarılan parkurları yazmak için dizin seçin... + + + + Save project + Projeyi kaydet + + + + Project saved + Proje kaydedildi + + + + The project %1 is now saved. + %1 projesi şimdi kaydedildi. + + + + Project NOT saved. + Proje kaydedilmedi. + + + + The project %1 was not saved! + %1 projesi kaydedilmedi! + + + + Import file + Dosyayı içe aktar + + + + MIDI sequences + MIDI dizileri + + + + Hydrogen projects + Hidrojen projeleri + + + + All file types + Tüm dosya türleri + + + + lmms::gui::MalletsInstrumentView + + + Instrument + Enstrüman + + + + Spread + Etrafa Saç + + + + Spread: + Yayılmış: + + + + Random + + + + + Random: + + + + + Missing files + Eksik Dosyalar + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + Stk kurulumunuz eksik görünüyor. Lütfen tam Stk paketinin kurulu olduğundan emin olun! + + + + Hardness + Sertlik + + + + Hardness: + Sertlik: + + + + Position + Konum + + + + Position: + Konum: + + + + Vibrato gain + Titreşim kazancı + + + + Vibrato gain: + Titreşim kazancı: + + + + Vibrato frequency + Titreşim frekansı + + + + Vibrato frequency: + Titreşim frekansı: + + + + Stick mix + Çubuk karıştırıcı + + + + Stick mix: + Çubuk karıştırıcı: + + + + Modulator + Modülatör + + + + Modulator: + Modülatör: + + + + Crossfade + Çapraz geçiş + + + + Crossfade: + Çapraz geçiş: + + + + LFO speed + LFO hızı + + + + LFO speed: + LFO hızı: + + + + LFO depth + LFO derinliği + + + + LFO depth: + LFO derinliği: + + + + ADSR + ADSR + + + + ADSR: + ADSR: + + + + Pressure + Basınç + + + + Pressure: + Basınç: + + + + Speed + Hız + + + + Speed: + Hız: + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + - VST parametre kontrolü + + + + VST sync + VST senkronizasyonu + + + + + Automated + Otomatik + + + + Close + Kapat + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + - VST eklenti kontrolü + + + + VST Sync + VST Senkronizasyonu + + + + + Automated + Otomatik + + + + Close + Kapat + + + + lmms::gui::MeterDialog + + + + Meter Numerator + Sayaç Payı + + + + Meter numerator + Sayaç payı + + + + + Meter Denominator + Metre Paydası + + + + Meter denominator + Metre paydası + + + + TIME SIG + TIME SIG + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + İlk tuş + + + + + Last key + Son tuş + + + + + Middle key + Orta tuş + + + + + Base key + Temel tuş + + + + + + Base note frequency + Temel nota frekansı + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + Ölçek açıklaması. "!" İle başlayamaz ve yeni satır karakteri içeremez. + + + + + Load + Yükle + + + + + Save + Kaydet + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + Aralıkları ayrı satırlara girin. Ondalık nokta içeren sayılar sent olarak kabul edilir. +Diğer girdiler tamsayı oranları olarak değerlendirilir ve 'a/b' veya 'a' biçiminde olmalıdır. +Birlik (0.0 sent veya oran 1/1) her zaman gizli bir ilk değer olarak bulunur; manuel olarak girmeyin. + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + Tuş haritası açıklaması. "!" İle başlayamaz ve yeni satır karakteri içeremez. + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + Anahtar eşlemelerini ayrı satırlara girin. Her satır bir MIDI anahtarına bir ölçek derecesi atar, +orta tuşla başlayıp sırayla devam eder. +Kalıp, açık anahtar eşleme aralığının dışındaki anahtarlar için tekrarlanır. +Birden fazla anahtar aynı ölçek derecesine eşlenebilir. +Anahtarı devre dışı bırakmak / eşlenmemiş olarak bırakmak istiyorsanız 'x' girin. + + + + FIRST + İLK + + + + First MIDI key that will be mapped + Eşlenecek ilk MIDI anahtarı + + + + LAST + SON + + + + Last MIDI key that will be mapped + Eşlenecek son MIDI anahtarı + + + + MIDDLE + ORTA + + + + First line in the keymap refers to this MIDI key + Tuş haritasındaki ilk satır bu MIDI anahtarına atıfta bulunur + + + + BASE N. + TEMEL N. + + + + Base note frequency will be assigned to this MIDI key + Temel nota frekansı bu MIDI anahtarına atanacaktır + + + + BASE NOTE FREQ + TEMEL NOTA FREKANS + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + Ölçek ayrıştırma hatası + + + + Scale name cannot start with an exclamation mark + Ölçek adı bir ünlem işaretiyle başlayamaz + + + + Scale name cannot contain a new-line character + Ölçek adı yeni satır karakteri içeremez + + + + Interval defined in cents cannot be converted to a number + Sent olarak tanımlanan aralık bir sayıya dönüştürülemez + + + + Numerator of an interval defined as a ratio cannot be converted to a number + Oran olarak tanımlanan bir aralığın payı sayıya dönüştürülemez + + + + Denominator of an interval defined as a ratio cannot be converted to a number + Oran olarak tanımlanan bir aralığın paydası sayıya dönüştürülemez + + + + Interval defined as a ratio cannot be negative + Oran olarak tanımlanan aralık negatif olamaz + + + + Keymap parsing error + Tuş haritası ayrıştırma hatası + + + + Keymap name cannot start with an exclamation mark + Tuş haritası adı ünlem işaretiyle başlayamaz + + + + Keymap name cannot contain a new-line character + Tuş haritası adı yeni satır karakteri içeremez + + + + Scale degree cannot be converted to a whole number + Ölçek derecesi tam sayıya dönüştürülemez + + + + Scale degree cannot be negative + Ölçek derecesi negatif olamaz + + + + Invalid keymap + Geçersiz tuş haritası + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + Temel anahtar herhangi bir ölçek derecesine eşlenmez. Herhangi bir nota referans frekansı atamanın bir yolu olmadığından ses üretilmeyecektir. + + + + Open scale + Ölçek açın + + + + + Scala scale definition (*.scl) + Ölçek ölçeği tanımı (*.scl) + + + + Scale load failure + Ölçek yükleme hatası + + + + + Unable to open selected file. + Seçili dosya açılamıyor. + + + + Open keymap + Tuş haritasını aç + + + + + Scala keymap definition (*.kbm) + Tuş haritası ölçek tanımı (*.kbm) + + + + Keymap load failure + Tuş haritası yükleme hatası + + + + Save scale + Ölçeği kaydet + + + + Scale save failure + Ölçek kaydetme hatası + + + + + Unable to open selected file for writing. + Seçili dosya yazmak için açılamıyor. + + + + Save keymap + Tuş haritasını kaydet + + + + Keymap save failure + Tuş haritası kaydetme hatası + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + MIDI CC Rack - %1 + + + + MIDI CC Knobs: + MIDI CC Düğmeleri: + + + + CC %1 + CC %1 + + + + lmms::gui::MidiClipView + + + + Transpose + Devrik + + + + Semitones to transpose by: + Aktarılacak yarım tonlar: + + + + Open in piano-roll + Piyano rulosunda aç + + + + Set as ghost in piano-roll + Piyano rulosunda hayalet olarak ayarla + + + + Set as ghost in automation editor + + + + + Clear all notes + Tüm notaları temizle + + + + Reset name + İsmini sıfırla + + + + Change name + İsmini değiştir + + + + Add steps + Uzat + + + + Remove steps + Kısalt + + + + Clone Steps + Klon Adımları + + + + lmms::gui::MidiSetupWidget + + + Device + Aygıt + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + FX-Karıştırıcısı + + + + lmms::gui::MonstroView + + + Operators view + Operatörler görünümü + + + + Matrix view + Matris görünümü + + + + + + Volume + Ses Düzeyi + + + + + + Panning + Kaydırma + + + + + + Coarse detune + Kaba detune + + + + + + semitones + yarım tonlar + + + + + Fine tune left + Sola ince ayar + + + + + + + cents + sent + + + + + Fine tune right + Sağa ince ayar + + + + + + Stereo phase offset + Stereo faz kayması + + + + + + + + deg + deg + + + + Pulse width + Darbe genişliği + + + + Send sync on pulse rise + Nabız yükseldiğinde senkronizasyon gönder + + + + Send sync on pulse fall + Nabız düşüşünde senkronizasyon gönder + + + + Hard sync oscillator 2 + Sabit senkron osilatör 2 + + + + Reverse sync oscillator 2 + Ters senkron osilatör 2 + + + + Sub-osc mix + Alt osc karışımı + + + + Hard sync oscillator 3 + Sabit senkron osilatör 3 + + + + Reverse sync oscillator 3 + Ters senkron osilatör 3 + + + + + + + Attack + Saldırı + + + + + Rate + Oran + + + + + Phase + Evre + + + + + Pre-delay + Ön gecikme + + + + + Hold + Tut + + + + + Decay + Bozunma + + + + + Sustain + Sürdürmek + + + + + Release + Yayınla + + + + + Slope + Eğim + + + + Mix osc 2 with osc 3 + Osc 2'yi osc 3 ile karıştır + + + + Modulate amplitude of osc 3 by osc 2 + OSC 3'ün genliğini osc 2 ile modüle edin + + + + Modulate frequency of osc 3 by osc 2 + OSC 3'ün frekansını osc 2 ile modüle edin + + + + Modulate phase of osc 3 by osc 2 + OSC 3'ün fazını OSC 2 ile modüle edin + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + Modülasyon miktarı + + + + lmms::gui::MultitapEchoControlDialog + + + Length + Süre + + + + Step length: + Adım uzunluğu: + + + + Dry + Kuru + + + + Dry gain: + Kuru kazanç: + + + + Stages + Aşamalar + + + + Low-pass stages: + Düşük geçiş aşamaları: + + + + Swap inputs + Girişleri değiştir + + + + Swap left and right input channels for reflections + Yansımalar için sol ve sağ giriş kanallarını değiştirin + + + + lmms::gui::NesInstrumentView + + + + + + Volume + Ses Düzeyi + + + + + + Coarse detune + Kaba detune + + + + + + Envelope length + Zarf uzunluğu + + + + Enable channel 1 + 1. kanalı etkinleştir + + + + Enable envelope 1 + Zarf 1'i etkinleştir + + + + Enable envelope 1 loop + Zarf 1 döngüsünü etkinleştir + + + + Enable sweep 1 + Tarama 1`i etkinleştir + + + + + Sweep amount + Tarama miktarı + + + + + Sweep rate + Tarama oranı + + + + + 12.5% Duty cycle + % 12,5 Görev döngüsü + + + + + 25% Duty cycle + % 25 Görev döngüsü + + + + + 50% Duty cycle + % 50 Görev döngüsü + + + + + 75% Duty cycle + % 75 Görev döngüsü + + + + Enable channel 2 + 2. kanalı etkinleştir + + + + Enable envelope 2 + Zarf 2'yi etkinleştir + + + + Enable envelope 2 loop + Zarf 2 döngüsünü etkinleştir + + + + Enable sweep 2 + Tarama 2 yi etkinleştir + + + + Enable channel 3 + 3. kanalı etkinleştir + + + + Noise Frequency + Gürültü Frekansı + + + + Frequency sweep + Frekans taraması + + + + Enable channel 4 + 4. kanalı etkinleştir + + + + Enable envelope 4 + Zarf 4'ü etkinleştir + + + + Enable envelope 4 loop + Zarf 4 döngüsünü etkinleştir + + + + Quantize noise frequency when using note frequency + Nota frekansını kullanırken gürültü frekansını nicelendirin + + + + Use note frequency for noise + Gürültü için nota frekansını kullanın + + + + Noise mode + Gürültü modu + + + + Master volume + Ana ses + + + + Vibrato + Titreşim + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + Saldırı + + + + + Decay + Bozunma + + + + + Release + Yayınla + + + + + Frequency multiplier + Frekans çarpanı + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + Çarpıtma: + + + + Volume: + Ses Düzeyi: + + + + Randomise + Rastgele + + + + + Osc %1 waveform: + Osc %1 dalga biçimi: + + + + Osc %1 volume: + Osc %1 düzeyi: + + + + Osc %1 panning: + Osc %1 kaydırma: + + + + Osc %1 stereo detuning + Osc %1 stereo perdeleme + + + + cents + sent + + + + Osc %1 harmonic: + Osc %1 harmonik: + + + + lmms::gui::Oscilloscope + + + Oscilloscope + Oscilloscope + + + + Click to enable + Etkinleştirmek için tıklayın + + + + lmms::gui::PatmanView + + + Open patch + Yama aç + + + + Loop + Döngü + + + + Loop mode + Döngü modu + + + + Tune + Ayarla + + + + Tune mode + Ayar modu + + + + No file selected + Dosya seçilmedi + + + + Open patch file + Yama dosyasını aç + + + + Patch-Files (*.pat) + Yama Dosyaları (*.pat) + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + Kalıp Düzenleyicide Aç + + + + Reset name + İsmini sıfırla + + + + Change name + İsmini değiştir + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + Kalıp Düzenleyici + + + + Play/pause current pattern (Space) + Geçerli kalıbı oynat/duraklat (Boşluk) + + + + Stop playback of current pattern (Space) + Geçerli kalıbın oynatılmasını durdur (Boşluk) + + + + Pattern selector + Kalıp seçici + + + + Track and step actions + Eylemleri izleyin ve adımlayın + + + + New pattern + Yeni kalıp + + + + Clone pattern + Kalıbı klonla + + + + Add sample-track + Örnek parça ekle + + + + Add automation-track + Ayarkayıt parçası ekle + + + + Remove steps + Kısalt + + + + Add steps + Uzat + + + + Clone Steps + Klon Adımları + + + + lmms::gui::PeakControllerDialog + + + PEAK + ZİRVE + + + + LFO Controller + LFO Denetleyicisi + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + TEMEL + + + + Base: + Temel: + + + + AMNT + AMNT + + + + Modulation amount: + Modülasyon miktarı: + + + + MULT + ÇOK + + + + Amount multiplicator: + Miktar çarpanı: + + + + ATCK + SALDIRI + + + + Attack: + Saldırı: + + + + DCAY + BOZUNMA + + + + Release: + Yayınla: + + + + TRSH + EŞİK + + + + Treshold: + Eşik: + + + + Mute output + Çıkış sessiz + + + + Absolute value + Mutlak değer + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + Nota Hızı + + + + Note Panning + Nota Kaydırma + + + + Mark/unmark current semitone + Geçerli yarım tonu işaretle / işareti kaldır + + + + Mark/unmark all corresponding octave semitones + İlgili tüm oktav yarı tonlarını işaretle / işareti kaldır + + + + Mark current scale + Mevcut ölçeği işaretle + + + + Mark current chord + Geçerli akoru işaretle + + + + Unmark all + Hepsinin işaretini kaldır + + + + Select all notes on this key + Bu anahtardaki tüm notaları seçin + + + + Note lock + Nota kilidi + + + + Last note + Son nota + + + + No key + Anahtar yok + + + + No scale + Ölçek yok + + + + No chord + Akord yok + + + + Nudge + Dürtme + + + + Snap + Yapış + + + + Velocity: %1% + Hız: %1% + + + + Panning: %1% left + Kaydırma: %1% sola + + + + Panning: %1% right + Kaydırma: %1% sağa + + + + Panning: center + Kaydırma: merkez + + + + Glue notes failed + Yapışkan notaları başarısız oldu + + + + Please select notes to glue first. + Lütfen önce yapıştırılacak notaları seçin. + + + + Please open a clip by double-clicking on it! + Lütfen üzerine çift tıklayarak bir desen açın! + + + + + Please enter a new value between %1 and %2: + Lütfen %1 ile %2 arasında yeni bir değer girin: + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + Seçili bölümü oynat/durdur (Boşluk Tuşu) + + + + Record notes from MIDI-device/channel-piano + MIDI aygıtında/kanal piyanodan notaları kaydedin + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + Şarkı veya kalıp parçasını çalarken MIDI cihazından/kanal piyanosundan notlar kaydedin + + + + Record notes from MIDI-device/channel-piano, one step at the time + MIDI aygıtından/kanal piyanodan notaları bir seferde bir adım kaydedin + + + + Stop playing of current clip (Space) + Seçili modeli oynatmayı durdur (Boşluk Tuşu) + + + + Edit actions + İşlemleri düzenle + + + + Draw mode (Shift+D) + Çizim modu (Shift+D) + + + + Erase mode (Shift+E) + Silgi modu (Shift+E) + + + + Select mode (Shift+S) + Modu seçin (Shift + S) + + + + Pitch Bend mode (Shift+T) + Pitch Bend modu (Shift+T) + + + + Quantize + Niceleme + + + + Quantize positions + Niceleme pozisyonları + + + + Quantize lengths + Niceleme uzunlukları + + + + File actions + Dosya işlemleri + + + + Import clip + Deseni içe aktar + + + + + Export clip + Deseni dışa aktar + + + + Copy paste controls + Kopyala yapıştır kontrolleri + + + + Cut (%1+X) + Kes (%1+X) + + + + Copy (%1+C) + Kopyala (%1+C) + + + + Paste (%1+V) + Yapıştır (%1+V) + + + + Timeline controls + Zaman çizelgesi kontrolleri + + + + Glue + Yapıştırıcı + + + + Knife + Bıçak + + + + Fill + Dolgu + + + + Cut overlaps + Örtüşmeleri kes + + + + Min length as last + Son olarak en düşük uzunluk + + + + Max length as last + Son olarak en yüksek uzunluk + + + + Zoom and note controls + Yakınlaştırma ve nota kontrolleri + + + + Horizontal zooming + Yatay yakınlaştırma + + + + Vertical zooming + Dikey yakınlaştırma + + + + Quantization + Niceleme + + + + Note length + Nota uzunluğu + + + + Key + Anahtar + + + + Scale + Ölçek + + + + Chord + Kiriş + + + + Snap mode + Anlık çekim modu + + + + Clear ghost notes + Hayalet notaları temizle + + + + + Piano-Roll - %1 + Piyano Rulosu -%1 + + + + + Piano-Roll - no clip + Piyano Rulosu - desen yok + + + + + XML clip file (*.xpt *.xptz) + XML desen dosyası (*.xpt *.xptz) + + + + Export clip success + Deseni dışa aktarma başarılı + + + + Clip saved to %1 + Desen %1'e kaydedildi + + + + Import clip. + Deseni içe aktar. + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + Bir kalıp almak üzeresiniz, bu mevcut kalıbınızın üzerine yazılacaktır. Devam etmek istiyor musun? + + + + Open clip + Desen aç + + + + Import clip success + Desen başarılı şekilde içe aktarıldı + + + + Imported clip %1! + %1 deseni içe aktarıldı! + + + + lmms::gui::PianoView + + + Base note + Temel nota + + + + First note + İlk nota + + + + Last note + Son nota + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + Enstrüman Eklentileri + + + + Instrument browser + Enstrüman tarayıcısı + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + Yeni enstrüman parçasına gönder + + + + lmms::gui::ProjectNotes + + + Project Notes + Proje Notları + + + + Enter project notes here + Buraya proje notlarını girin + + + + Edit Actions + İşlemleri Düzenle + + + + &Undo + Geri &Al + + + + %1+Z + %1+Z + + + + &Redo + &Yinele + + + + %1+Y + %1+Y + + + + &Copy + &Kopyala + + + + %1+C + %1+C + + + + Cu&t + Ke&s + + + + %1+X + %1+X + + + + &Paste + &Yapıştır + + + + %1+V + %1+V + + + + Format Actions + Eylemleri Biçimlendir + + + + &Bold + &Kalın + + + + %1+B + %1+B + + + + &Italic + &İtalik + + + + %1+I + %1+I + + + + &Underline + &Altını çizgili + + + + %1+U + %1+U + + + + &Left + &Sol + + + + %1+L + %1+L + + + + C&enter + M&erkez + + + + %1+E + %1+E + + + + &Right + S&ağ + + + + %1+R + %1+R + + + + &Justify + &Yasla + + + + %1+J + %1+J + + + + &Color... + &Renk... + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + &Yeni Açılan Projeler + + + + lmms::gui::RenameDialog + + + Rename... + Yeniden adlandır... + + + + lmms::gui::ReverbSCControlDialog + + + Input + Giriş + + + + Input gain: + Giriş kazancı: + + + + Size + Boy + + + + Size: + Büyüklük: + + + + Color + Renk + + + + Color: + Renk: + + + + Output + Çıkış + + + + Output gain: + Çıkış kazancı: + + + + lmms::gui::SaControlsDialog + + + Pause + Duraklat + + + + Pause data acquisition + Veri edinmeyi duraklatın + + + + Reference freeze + Referans dondurma + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + Pik tutma modunda akım girişini referans olarak dondurun / düşüşü devre dışı bırakın. + + + + Waterfall + Şelale + + + + Display real-time spectrogram + Gerçek zamanlı spektrogramı göster + + + + Averaging + Ortalama + + + + Enable exponential moving average + Üstel hareketli ortalamayı etkinleştir + + + + Stereo + Stereo + + + + Display stereo channels separately + Stereo kanalları ayrı olarak görüntüleyin + + + + Peak hold + Tepe tutma + + + + Display envelope of peak values + Tepe değerlerin zarfını görüntüle + + + + Logarithmic frequency + Logaritmik frekans + + + + Switch between logarithmic and linear frequency scale + Logaritmik ve doğrusal frekans ölçeği arasında geçiş yapın + + + + + Frequency range + Frekans aralığı + + + + Logarithmic amplitude + Logaritmik genlik + + + + Switch between logarithmic and linear amplitude scale + Logaritmik ve doğrusal genlik ölçeği arasında geçiş yapın + + + + + Amplitude range + Genlik aralığı + + + + + FFT block size + FFT blok boyutu + + + + + FFT window type + FFT pencere türü + + + + Envelope res. + Zarf çözümü. + + + + Increase envelope resolution for better details, decrease for better GUI performance. + Daha iyi ayrıntılar için zarf çözünürlüğünü artırın, daha iyi Arayüz performansı için azaltın. + + + + Maximum number of envelope points drawn per pixel: + Piksel başına çizilen azami zarf noktası sayısı: + + + + Spectrum res. + Spectrum res. + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + Daha iyi ayrıntılar için spektrum çözünürlüğünü artırın, daha iyi Arayüz performansı için azaltın. + + + + Maximum number of spectrum points drawn per pixel: + Piksel başına çizilen azami spektrum noktası sayısı: + + + + Falloff factor + Düşüş faktörü + + + + Decrease to make peaks fall faster. + Zirvelerin daha hızlı düşmesi için azaltın. + + + + Multiply buffered value by + Arabelleğe alınan değeri şununla çarp + + + + Averaging weight + Ortalama ağırlık + + + + Decrease to make averaging slower and smoother. + Ortalama almayı daha yavaş ve pürüzsüz hale getirmek için azaltın. + + + + New sample contributes + Yeni örnek katkıda bulunur + + + + Waterfall height + Şelale yüksekliği + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + Daha yavaş kaydırmak için artırın, hızlı geçişleri daha iyi görmek için azaltın. Uyarı: orta CPU kullanımı. + + + + Number of lines to keep: + Saklanacak satır sayısı: + + + + Waterfall gamma + Şelale gama + + + + Decrease to see very weak signals, increase to get better contrast. + Çok zayıf sinyalleri görmeyi azaltın, daha iyi kontrast elde etmek için artırın. + + + + Gamma value: + Gama değeri: + + + + Window overlap + Pencere örtüşmesi + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + FFT pencere kenarlarının yakınına gelen eksik hızlı geçişleri önlemek için artırın. Uyarı: yüksek CPU kullanımı. + + + + Number of times each sample is processed: + Her örneğin işlenme sayısı: + + + + Zero padding + Sıfır dolgu + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + Daha pürüzsüz görünen spektrum elde etmek için artırın. Uyarı: yüksek CPU kullanımı. + + + + Processing buffer is + İşleme tamponu + + + + steps larger than input block + giriş bloğundan daha büyük adımlar + + + + Advanced settings + Gelişmiş ayarlar + + + + Access advanced settings + Gelişmiş ayarlara erişin + + + + lmms::gui::SampleClipView + + + Double-click to open sample + Örneği açmak için çift tıklayın + + + + Reverse sample + Ters örnek + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + Parça ses düzeyi + + + + Channel volume: + Kanal ses düzeyi: + + + + VOL + SES + + + + Panning + Kaydırma + + + + Panning: + Kaydırma: + + + + PAN + PAN + + + + %1: %2 + %1: %2 + + + + lmms::gui::SampleTrackWindow + + + Sample volume + Örnek düzey + + + + Volume: + Ses Düzeyi: + + + + VOL + SES + + + + Panning + Kaydırma + + + + Panning: + Kaydırma: + + + + PAN + PAN + + + + Mixer channel + FX kanalı + + + + CHANNEL + KANAL + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + MIDI bağlantılarını atın + + + + Save As Project Bundle (with resources) + Proje Paketi Olarak Kaydet (kaynaklarla) + + + + lmms::gui::SetupDialog + + + Settings + Ayarlar + + + + + General + Genel + + + + Graphical user interface (GUI) + Grafik kullanıcı arayüzü (GUI) + + + + Display volume as dBFS + Ses seviyesini dBFS olarak görüntüle + + + + Enable tooltips + Araç ipuçlarını etkinleştirin + + + + Enable master oscilloscope by default + Ana osiloskopu varsayılan olarak etkinleştirin + + + + Enable all note labels in piano roll + Piyano rulosundaki tüm nota etiketlerini etkinleştirin + + + + Enable compact track buttons + Kompakt parça düğmelerini etkinleştirin + + + + Enable one instrument-track-window mode + Bir enstrüman izleme penceresi modunu etkinleştirin + + + + Show sidebar on the right-hand side + Sağ tarafta kenar çubuğunu göster + + + + Let sample previews continue when mouse is released + Fare bırakıldığında örnek önizlemelerin devam etmesine izin verin + + + + Mute automation tracks during solo + Solo sırasında otomasyon izlerini sessize alma + + + + Show warning when deleting tracks + Parçaları silerken uyarı göster + + + + Show warning when deleting a mixer channel that is in use + Kullanımda olan bir mikser kanalını silerken uyarı göster + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + Projeler + + + + Compress project files by default + Proje dosyalarını varsayılan olarak sıkıştır + + + + Create a backup file when saving a project + Bir projeyi kaydederken bir yedek dosya oluşturun + + + + Reopen last project on startup + Başlangıçta son projeyi yeniden aç + + + + Language + Dil + + + + + Performance + Başarım + + + + Autosave + Otomatik kaydet + + + + Enable autosave + Otomatik kaydetmeyi etkinleştir + + + + Allow autosave while playing + Oynatırken otomatik kaydetmeye izin ver + + + + User interface (UI) effects vs. performance + Kullanıcı arayüzü (UI) efektleri ile performans karşılaştırması + + + + Smooth scroll in song editor + Şarkı düzenleyicide yumuşak kaydırma + + + + Display playback cursor in AudioFileProcessor + Ses Dosyası İşlemcisindeki oynatma imlecini görüntüle + + + + Plugins + Eklentiler + + + + VST plugins embedding: + Gömülü VST eklentileri: + + + + No embedding + Yerleştirme yok + + + + Embed using Qt API + Qt API kullanarak yerleştirin + + + + Embed using native Win32 API + Yerel Win32 API kullanarak yerleştirme + + + + Embed using XEmbed protocol + XEmbed protokolünü kullanarak gömün + + + + Keep plugin windows on top when not embedded + Gömülü değilken eklenti pencerelerini üstte tutun + + + + Keep effects running even without input + Efektlerin girdi olmasa bile çalışmaya devam etmesini sağlayın + + + + + Audio + Ses + + + + Audio interface + Ses arayüzü + + + + Buffer size + Arabellek boyutu + + + + Reset to default value + Varsayılan değere sıfırla + + + + + MIDI + MIDI + + + + MIDI interface + MIDI arayüzü + + + + Automatically assign MIDI controller to selected track + MIDI denetleyicisini seçilen parçaya otomatik olarak atayın + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + Yollar + + + + LMMS working directory + LMMS çalışma dizini + + + + VST plugins directory + VST eklentileri dizini + + + + LADSPA plugins directories + LADSPA eklenti dizinleri + + + + SF2 directory + SF2 dizini + + + + Default SF2 + Varsayılan SF2 + + + + GIG directory + GIG dizini + + + + Theme directory + Tema dizini + + + + Background artwork + Arka plan resmi + + + + Some changes require restarting. + Bazı değişiklikler yeniden başlatmayı gerektirir. + + + + OK + TAMAM + + + + Cancel + Çıkış + + + + minutes + dakika + + + + minute + dakika + + + + Disabled + Devre dışı + + + + Autosave interval: %1 + Otomatik kaydetme aralığı: %1 + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + Çerçeveler: %1 +Gecikme: %2 ms + + + + Choose the LMMS working directory + LMMS çalışma dizinini seçin + + + + Choose your VST plugins directory + VST eklentileri dizininizi seçin + + + + Choose your LADSPA plugins directory + LADSPA eklentileri dizininizi seçin + + + + Choose your SF2 directory + SF2 dizininizi seçin + + + + Choose your default SF2 + Varsayılan SF2'nizi seçin + + + + Choose your GIG directory + GIG dizininizi seçin + + + + Choose your theme directory + Tema dizininizi seçin + + + + Choose your background picture + Arka plan resminizi seçin + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + Ses Yazı Tipi dosyasını aç + + + + Choose patch + Yama seçin + + + + Gain: + Kazanç: + + + + Apply reverb (if supported) + Yankı uygula (destekleniyorsa) + + + + Room size: + Oda boyutu: + + + + Damping: + Sönümleme: + + + + Width: + En: + + + + + Level: + Düzey: + + + + Apply chorus (if supported) + Koro uygula (destekleniyorsa) + + + + Voices: + Sesler: + + + + Speed: + Hız: + + + + Depth: + Derinlik: + + + + SoundFont Files (*.sf2 *.sf3) + Ses Yazı Tipi Dosyaları (*.sf2 *.sf3) + + + + lmms::gui::SidInstrumentView + + + Volume: + Ses Düzeyi: + + + + Resonance: + Rezonans: + + + + + Cutoff frequency: + Kesim frekansı: + + + + High-pass filter + Yüksek geçişli filtre + + + + Band-pass filter + Bant geçişli filtre + + + + Low-pass filter + Düşük geçişli filtre + + + + Voice 3 off + Ses 3 kapalı + + + + MOS6581 SID + MOS6581 SID + + + + MOS8580 SID + MOS8580 SID + + + + + Attack: + Saldırı: + + + + + Decay: + Bozunma: + + + + Sustain: + Sürdürmek: + + + + + Release: + Yayınla: + + + + Pulse Width: + Darbe genişliği: + + + + Coarse: + Kaba: + + + + Pulse wave + Nabız dalgası + + + + Triangle wave + Üçgen dalga + + + + Saw wave + Testere dalga + + + + Noise + Gürültü + + + + Sync + Eşitle + + + + Ring modulation + Halka modülasyonu + + + + Filtered + Filtrelenmiş + + + + Test + Dene + + + + Pulse width: + Darbe genişliği: + + + + lmms::gui::SideBarWidget + + + Close + Kapat + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + Dosya açılamadı + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + %1 dosyası açılamadı. Muhtemelen bu dosyayı okuma izniniz yok. + Lütfen dosya için en azından okuma izninizin olduğundan emin olun ve tekrar deneyin. + + + + Operation denied + İşlem reddedildi + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + Bu ada sahip bir paket klasörü zaten seçili yolda bulunuyor. Proje paketinin üzerine yazılamaz. Lütfen farklı bir isim seçin. + + + + + + Error + Sorun + + + + Couldn't create bundle folder. + Paket klasörü oluşturulamadı. + + + + Couldn't create resources folder. + Kaynaklar klasörü oluşturulamadı. + + + + Failed to copy resources. + Kaynaklar kopyalanamadı. + + + + + Could not write file + Dosya yazılamadı + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + Dosyada hata + + + + The file %1 seems to contain errors and therefore can't be loaded. + Görünüşe göre %1 dosyası hatalar içeriyor ve bu nedenle yüklenemiyor. + + + + template + şablon + + + + project + proje + + + + Version difference + Sürüm farkı + + + + This %1 was created with LMMS %2 + Bu %1, %2 LMMS ile oluşturuldu + + + + Zoom + Yakınlaştır + + + + Tempo + Tempo + + + + TEMPO + TEMPO + + + + Tempo in BPM + BPM'de Tempo + + + + + + Master volume + Ana ses + + + + + + Global transposition + Genel aktarma + + + + 1/%1 Bar + 1/%1 Çubuk + + + + %1 Bars + %1 Çubuklar + + + + Value: %1% + Değer: %1% + + + + Value: %1 keys + Değer: %1 anahtar + + + + lmms::gui::SongEditorWindow + + + Song-Editor + Şarkı-Düzenleyici + + + + Play song (Space) + Şarkıyı başlat (Space) + + + + Record samples from Audio-device + Ses cihazından örnekleri kaydedin + + + + Record samples from Audio-device while playing song or pattern track + Şarkı veya kalıp parçası çalarken Ses cihazından örnekler kaydedin + + + + Stop song (Space) + Şarkıyı durdur (Space) + + + + Track actions + Parça eylemleri + + + + Add pattern-track + Kalıp-parça ekle + + + + Add sample-track + Örnek parça ekle + + + + Add automation-track + Ayarkayıt parçası ekle + + + + Edit actions + İşlemleri düzenle + + + + Draw mode + Çizim kipi + + + + Knife mode (split sample clips) + Bıçak modu (örnek klipleri ayır) + + + + Edit mode (select and move) + Düzenleme modu (seç ve taşı) + + + + Timeline controls + Zaman çizelgesi kontrolleri + + + + Bar insert controls + Çubuk ekleme kontrolleri + + + + Insert bar + Çubuk ekle + + + + Remove bar + Çubuğu kaldır + + + + Zoom controls + Yakınlaştırma kontrolleri + + + + + Zoom + Yakınlaştır + + + + Snap controls + Yapış denetimleri + + + + + Clip snapping size + Klip yapışma boyutu + + + + Toggle proportional snap on/off + Orantılı tutturmayı aç/kapat + + + + Base snapping size + Taban yapışma boyutu + + + + lmms::gui::StepRecorderWidget + + + Hint + İpucu + + + + Move recording curser using <Left/Right> arrows + <Sol/Sağ> oklarını kullanarak kayıt imlecini hareket ettirin + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + GENİŞLİK + + + + Width: + En: + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + Soldan Sola Düzey: + + + + Left to Right Vol: + Soldan Sağa Düzey: + + + + Right to Left Vol: + Sağdan Sola Düzey: + + + + Right to Right Vol: + Sağdan Sağa Düzey: + + + + lmms::gui::SubWindow + + + Close + Kapat + + + + Maximize + Büyütme + + + + Restore + Onar + + + + lmms::gui::TapTempoView + + + 0 + 0 + + + + + Precision + Kesinlik + + + + Display in high precision + Yüksek hassasiyette görüntüleme + + + + 0.0 ms + 0.0 ms + + + + Mute metronome + Metronomun sesini kapat + + + + Mute + Sustur + + + + BPM in milliseconds + Milisaniye cinsinden BPM + + + + 0 ms + 0 ms + + + + Frequency of BPM + BPM'nin sıklığı + + + + 0.0000 hz + 0.0000 hz + + + + Reset + Sıfırla + + + + Reset counter and sidebar information + Sayaç ve kenar çubuğu bilgilerini sıfırlayın + + + + Sync + Eşitle + + + + Sync with project tempo + Proje temposuyla senkronize edin + + + + %1 ms + %1 ms + + + + %1 hz + %1 hz + + + + lmms::gui::TemplatesMenu + + + New from template + Şablondan yeni + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + Tempo Senkronizasyonu + + + + No Sync + Senkronizasyon yok + + + + Eight beats + Sekiz vuruş + + + + Whole note + Tam nota + + + + Half note + Yarım nota + + + + Quarter note + Çeyrek nota + + + + 8th note + 8'lik nota + + + + 16th note + 16'lık nota + + + + 32nd note + 32'lik nota + + + + Custom... + Özel... + + + + Custom + Özel + + + + Synced to Eight Beats + Sekiz Vuruşla Senkronize Edildi + + + + Synced to Whole Note + Tüm Nota Senkronize Edildi + + + + Synced to Half Note + Yarım Nota Senkronize Edildi + + + + Synced to Quarter Note + Çeyrek Nota Senkronize Edildi + + + + Synced to 8th Note + 8. Nota senkronize edildi + + + + Synced to 16th Note + 16. Nota senkronize edildi + + + + Synced to 32nd Note + 32. Nota senkronize edildi + + + + lmms::gui::TimeDisplayWidget + + + Time units + Zaman birimleri + + + + MIN + DAK + + + + SEC + SAN + + + + MSEC + MSEC + + + + BAR + ÇUBUK + + + + BEAT + VURUŞ + + + + TICK + TIK + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + Otomatik kaydırma + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + Döngü noktaları + + + + After stopping go back to beginning + Durduktan sonra başa dön + + + + After stopping go back to position at which playing was started + Durduktan sonra oyunun başladığı konuma geri dönün + + + + After stopping keep position + Durduktan sonra pozisyonunuzu koruyun + + + + Hint + İpucu + + + + Press <%1> to disable magnetic loop points. + Manyetik döngü noktalarını devre dışı bırakmak için <%1> tuşuna basın. + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + Yapıştır + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + Yeni bir sürükle ve bırak eylemine başlamak için tutamağa tıklarken <%1> tuşuna basın. + + + + Actions + Eylemler + + + + + Mute + Sustur + + + + + 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 Karıştırıcı Kanalına Ata + + + + Turn all recording on + Tüm kaydı aç + + + + Turn all recording off + Tüm kayıtları kapat + + + + Track color + Parça rengi + + + + Change + Değiştir + + + + Reset + Sıfırla + + + + Pick random + Rastgele seç + + + + Reset clip colors + Klip renklerini sıfırla + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + Osilatör 1'in fazını osilatör 2 ile modüle edin + + + + Modulate amplitude of oscillator 1 by oscillator 2 + Osilatör 1'in genliğini osilatör 2 ile modüle edin + + + + Mix output of oscillators 1 & 2 + Osilatör 1 ve 2'nin Karışım çıkışı + + + + Synchronize oscillator 1 with oscillator 2 + Osilatör 1'i osilatör 2 ile senkronize edin + + + + Modulate frequency of oscillator 1 by oscillator 2 + Osilatör 1'in frekansını osilatör 2 ile modüle edin + + + + Modulate phase of oscillator 2 by oscillator 3 + Osilatör 2'nin fazını osilatör 3 ile modüle edin + + + + Modulate amplitude of oscillator 2 by oscillator 3 + Osilatör 2'nin genliğini osilatör 3 ile modüle edin + + + + Mix output of oscillators 2 & 3 + Osilatör 2 ve 3'ün Karışım çıkışı + + + + Synchronize oscillator 2 with oscillator 3 + Osilatör 2'yi osilatör 3 ile senkronize edin + + + + Modulate frequency of oscillator 2 by oscillator 3 + Osilatör 2'nin frekansını osilatör 3 ile modüle edin + + + + Osc %1 volume: + Osc %1 düzeyi: + + + + Osc %1 panning: + Osc %1 kaydırma: + + + + Osc %1 coarse detuning: + Osc %1 kaba ince ayar: + + + + semitones + yarım tonlar + + + + Osc %1 fine detuning left: + Osc %1 ince ayar sol: + + + + + cents + sent + + + + Osc %1 fine detuning right: + Osc %1 ince ayar sağ: + + + + Osc %1 phase-offset: + Osc %1 faz kayması: + + + + + degrees + derece + + + + Osc %1 stereo phase-detuning: + Osc %1 stereo faz ayarlama: + + + + Sine wave + Sinüs dalgası + + + + Triangle wave + Üçgen dalga + + + + Saw wave + Testere dalga + + + + Square wave + Kare dalgası + + + + Moog-like saw wave + Moog benzeri testere dalgası + + + + Exponential wave + Üstel dalga + + + + White noise + Beyaz gürültü + + + + User-defined wave + Kullanıcı tanımlı dalga + + + + Use alias-free wavetable oscillators. + Takma ad içermeyen dalga tablosu osilatörleri kullanın. + + + + lmms::gui::VecControlsDialog + + + HQ + YK + + + + Double the resolution and simulate continuous analog-like trace. + Çözünürlüğü ikiye katlayın ve sürekli analog benzeri izi simüle edin. + + + + 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 + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + Sürüm numarasını artır + + + + Decrement version number + Sürüm numarasını azaltın + + + + Save Options + Seçenekleri Kaydet + + + + already exists. Do you want to replace it? + zaten var. Değiştirmek istiyor musun? + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + VST eklentisini aç + + + + Control VST plugin from LMMS host + LMMS ana bilgisayarından VST eklentisini kontrol edin + + + + Open VST plugin preset + VST eklenti ön ayarını aç + + + + Previous (-) + Önceki (-) + + + + Save preset + Ön ayarı kaydet + + + + Next (+) + Sonraki (+) + + + + Show/hide GUI + Kullanıcı arabirimini göster/gizle + + + + Turn off all notes + Tüm notaları kapat + + + + DLL-files (*.dll) + DLL-dosyaları (*.dll) + + + + EXE-files (*.exe) + EXE-dosyaları (*.exe) + + + + SO-files (*.so) + SO-dosyaları (*.so) + + + + No VST plugin loaded + Yüklü VST eklentisi yok + + + + Preset + Hazır Ayar + + + + by + tarafından + + + + - VST plugin control + - VST eklenti kontrolü + + + + lmms::gui::VibedView + + + Enable waveform + Dalga biçimini etkinleştir + + + + + Smooth waveform + Düzgün dalga formu + + + + + Normalize waveform + Dalga formunu normalleştir + + + + + Sine wave + Sinüs dalgası + + + + + Triangle wave + Üçgen dalga + + + + + Saw wave + Testere dalga + + + + + Square wave + Kare dalgası + + + + + White noise + Beyaz gürültü + + + + + User-defined wave + Kullanıcı tanımlı dalga + + + + String volume: + Dize hacmi: + + + + String stiffness: + Dize sertliği: + + + + Pick position: + Pozisyon seçin: + + + + Pickup position: + Alış konumu: + + + + String panning: + Dize kaydırma: + + + + String detune: + Dize detayı: + + + + String fuzziness: + Dize belirsizliği: + + + + String length: + Dize uzunluğu: + + + + Impulse Editor + Dürtü Düzenleyici + + + + Impulse + Dürtü + + + + Enable/disable string + Dizeyi etkinleştir / devre dışı bırak + + + + Octave + Octave + + + + String + Dize + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + Göster/gizle + + + + Control VST plugin from LMMS host + LMMS ana bilgisayarından VST eklentisini kontrol edin + + + + Open VST plugin preset + VST eklenti ön ayarını aç + + + + Previous (-) + Önceki (-) + + + + Next (+) + Sonraki (+) + + + + Save preset + Ön ayarı kaydet + + + + + Effect by: + Efektler: + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + lmms::gui::WatsynView + + + + + + Volume + Ses Düzeyi + + + + + + + Panning + Kaydırma + + + + + + + Freq. multiplier + Frekans. çarpanı + + + + + + + Left detune + Sol detune + + + + + + + + + + + cents + sent + + + + + + + Right detune + Sağ detune + + + + A-B Mix + A-B Karışımı + + + + Mix envelope amount + Zarf miktarını karıştır + + + + Mix envelope attack + Zarf saldırısını karıştır + + + + Mix envelope hold + Zarf tutmayı karıştır + + + + Mix envelope decay + Zarf bozunmasını karıştır + + + + Crosstalk + Cızırtı + + + + Select oscillator A1 + Osilatör A1'i seçin + + + + Select oscillator A2 + Osilatör A2`yi seçin + + + + Select oscillator B1 + Osilatör B1'i seçin + + + + Select oscillator B2 + Osilatör B2'yi seçin + + + + Mix output of A2 to A1 + A2'den A1'e Karışım çıkışı + + + + Modulate amplitude of A1 by output of A2 + A1'in genliğini A2 çıkışı ile modüle edin + + + + Ring modulate A1 and A2 + Halka modüle A1 ve A2 + + + + Modulate phase of A1 by output of A2 + A1'in fazını A2 çıkışı ile modüle edin + + + + Mix output of B2 to B1 + B2'den B1'e Karıştırma çıkışı + + + + Modulate amplitude of B1 by output of B2 + B2 çıkışı ile B1 genliğini modüle edin + + + + Ring modulate B1 and B2 + Halka modülasyonu B1 ve B2 + + + + Modulate phase of B1 by output of B2 + B2 çıkışı ile B1 fazını modüle edin + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + Farenizi bu grafiğin üzerine sürükleyerek buraya kendi dalga formunuzu çizin. + + + + Load waveform + Dalga formu yükle + + + + Load a waveform from a sample file + Örnek bir dosyadan bir dalga formu yükleyin + + + + Phase left + Aşama sola + + + + Shift phase by -15 degrees + Aşamayı -15 derece kaydır + + + + Phase right + Aşama sağa + + + + Shift phase by +15 degrees + Aşamayı +15 derece kaydır + + + + + Normalize + Normalleştir + + + + + Invert + Tersine çevir + + + + + Smooth + Pürüzsüz + + + + + Sine wave + Sinüs dalgası + + + + + + Triangle wave + Üçgen dalga + + + + Saw wave + Testere dalga + + + + + Square wave + Kare dalgası + + + + lmms::gui::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 + + + + lmms::gui::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 + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + Kaydırma: + + + + PORT + KAYDIRMA + + + + Filter frequency: + Frekans filtresi: + + + + FREQ + FREK + + + + Filter resonance: + Rezonans filtresi: + + + + RES + RF + + + + Bandwidth: + Bant genişliği: + + + + BW + BG + + + + FM gain: + FM kazancı: + + + + FM GAIN + FM KAZANÇ + + + + Resonance center frequency: + Rezonans merkez frekansı: + + + + RES CF + Rez MF + + + + Resonance bandwidth: + Rezonans bant genişliği: + + + + RES BW + REZ BG + + + + Forward MIDI control changes + MIDI kontrol değişikliklerini ilet + + + + Show GUI + Görselli Arayüzü Göster + + + \ No newline at end of file diff --git a/data/locale/uk.ts b/data/locale/uk.ts index c088f401c..015980135 100644 --- a/data/locale/uk.ts +++ b/data/locale/uk.ts @@ -1,13028 +1,18754 @@ - + 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 Ліцензія - AmplifierControlDialog + AboutJuceDialog - - VOL - ГУЧН + + About JUCE + - - Volume: - Гучність: + + <b>About JUCE</b> + - - PAN - БАЛ + + This program uses JUCE version 3.x.x. + - - Panning: - Баланс: + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + - - LEFT - ЛІВЕ - - - - Left gain: - Ліве підсилення: - - - - RIGHT - ПРАВЕ - - - - Right gain: - Праве підсилення: + + This program uses JUCE version + - AmplifierControls + AudioDeviceSetupWidget - - Volume - Гучність - - - - Panning - Баланс - - - - Left gain - Ліве підсилення - - - - Right gain - Праве підсилення + + [System Default] + - AudioAlsaSetupWidget + CarlaAboutW - - DEVICE - ПРИСТРІЙ + + About Carla + - - CHANNELS - КАНАЛИ + + 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) + - AudioFileProcessorView + CarlaHostW - - Open other sample - Відкрити інший запис + + MainWindow + - - 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. - Натисніть тут, щоб відкрити інший звуковий файл. У новому вікні діалогу ви зможете вибрати потрібний файл. Такі налаштування, як режим повтору, точки початку/кінця, підсилення та інші не скинуться, тому звучання може відрізнятися від оригіналу. + + Rack + - - Reverse sample - Реверс запису + + Patchbay + - - If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Якщо включити цю кнопку, весь запис піде у зворотний бік, це зручно для крутих ефектів, наприклад зворотного гуркоту. + + Logs + - - Disable loop - Відключити повторення + + Loading... + - - This button disables looping. The sample plays only once from start to end. - Ця кнопка відключає повтор. Запис програється тільки один раз від початку до кінця. + + Save + - - - Enable loop - Включити повторення + + Clear + - - This button enables forwards-looping. The sample loops between the end point and the loop point. - Ця кнопка включає передній повтор. Запис повторюється між кінцевою точкою і точкою повтору. + + Ctrl+L + - - This button enables ping-pong-looping. The sample loops backwards and forwards between the end point and the loop point. - Ця кнопка включає пінг-понг петлю. Запис повторюється назад і вперед між кінцевою точкою і точкою повтору. + + Auto-Scroll + - - Continue sample playback across notes - Продовжити відтворення запису по нотах + + Buffer Size: + - - 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 Гц) + + Sample Rate: + - - Amplify: - Підсилення: + + ? Xruns + - - 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% вихідний звук не змінюється, в іншому випадку - він буде ослаблений або підсилений. (Зверніть увагу, що вихідний запис при цьому залишиться недоторканим.) + + DSP Load: %p% + - - Startpoint: - Початок: + + &File + &Файл - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - Цим регулятором можна встановити мітку з якої АудіоФайлПроцессор повинен почати відтворення запису. + + &Engine + - - Endpoint: - Кінець: + + &Plugin + - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. - Цей регулятор встановлює мітку в якій АудіоФайлПроцессор повинен перестати програвати запис. + + Macros (all plugins) + - - Loopback point: - Точка повернення з повтору: + + &Canvas + - - With this knob you can set the point where the loop starts. - Цей регулятор ставить мітку початку повторення. + + Zoom + - - - AudioFileProcessorWaveView - - Sample length: - Довжина запису: + + &Settings + - - - AudioJack - - JACK client restarted - JACK-клієнт перезапущений - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS не був підключений до JACK з якоїсь причини, тому LMMS підключення до JACK було перезапущено. Вам доведеться заново вручну створити з'єднання. - - - - JACK server down - JACK-сервер не доступний - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - Можливо JACK-сервер був вимкнений і запуск нового процесу не вдався, тому LMMS не може продовжити роботу. Вам слід зберегти проект і перезапустити JACK і LMMS. - - - - CLIENT-NAME - ІМ'Я КЛІЄНТА - - - - CHANNELS - КАНАЛИ - - - - AudioOss::setupWidget - - - DEVICE - ПРИСТРІЙ - - - - CHANNELS - КАНАЛИ - - - - AudioPortAudio::setupWidget - - - BACKEND - УПРАВЛІННЯ - - - - DEVICE - ПРИСТРІЙ - - - - AudioPulseAudio::setupWidget - - - DEVICE - ПРИСТРІЙ - - - - CHANNELS - КАНАЛИ - - - - AudioSdl::setupWidget - - - DEVICE - ПРИСТРІЙ - - - - AudioSndio::setupWidget - - - DEVICE - ПРИСТРІЙ - - - - CHANNELS - КАНАЛИ - - - - AudioSoundIo::setupWidget - - - BACKEND - УПРАВЛІННЯ - - - - DEVICE - ПРИСТРІЙ - - - - AutomatableModel - - - &Reset (%1%2) - &R Скинути (%1%2) - - - - &Copy value (%1%2) - &C Копіювати значення (%1%2) - - - - &Paste value (%1%2) - &P Вставити значення (%1%2) - - - - Edit song-global automation - Змінити глоабльную автоматизацію композиції - - - - Remove song-global automation - Прибрати глобальну автоматизацію композиції - - - - Remove all linked controls - Прибрати все приєднане управління - - - - Connected to %1 - Приєднано до %1 - - - - Connected to controller - Приєднано до контролера - - - - Edit connection... - Налаштувати з'єднання... - - - - Remove connection - Видалити з'єднання - - - - Connect to controller... - З'єднати з контролером ... - - - - AutomationEditor - - - Please open an automation pattern with the context menu of a control! - Відкрийте редатор автоматизації через контекстне меню регулятора! - - - - Values copied - Значення скопійовані - - - - All selected values were copied to the clipboard. - Всі вибрані значення скопійовані до буферу обміну. - - - - AutomationEditorWindow - - - Play/pause current pattern (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. - Натисніть тут, якщо ви хочете зупинити відтворення поточної мелодії. - - - - Edit actions - Зміна - - - - 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. - - - - 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 - Управління масштабом - - - - 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 - %1 - Редактор автоматизації - %1 - - - - Model is already connected to this pattern. - Модель вже підключена до цього шаблону. - - - - AutomationPattern - - - Drag a control while pressing <%1> - Тягніть контроль утримуючи <%1> - - - - AutomationPatternView - - - 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. - Модель вже підключена до цього шаблону. - - - - AutomationTrack - - - Automation track - Доріжка автоматизації - - - - BBEditor - - - 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 sample-track - Додати доріжку запису - - - - Add automation-track - Додати доріжку автоматизації - - - - Remove steps - Видалити такти - - - - Add steps - Додати такти - - - - Clone Steps - Клонувати такти - - - - BBTCOView - - - Open in Beat+Bassline-Editor - Відкрити в редакторі ритму і басу - - - - Reset name - Скинути назву - - - - Change name - Перейменувати - - - - Change color - Змінити колір - - - - Reset color to default - Відновити колір за замовчуванням - - - - BBTrack - - - Beat/Bassline %1 - Ритм/Бас лінія %1 - - - - Clone of %1 - Копія %1 - - - - BassBoosterControlDialog - - - FREQ - ЧАСТ - - - - Frequency: - Частота: - - - - GAIN - ПІДС - - - - Gain: - Підсилення: - - - - RATIO - ВІДН - - - - Ratio: - Відношення: - - - - BassBoosterControls - - - Frequency - Частота - - - - Gain - Підсилення - - - - Ratio - Відношення - - - - BitcrushControlDialog - - - IN - ВХД - - - - OUT - ВИХ - - - - - GAIN - ПІДС - - - - Input Gain: - Вхідне підсилення: - - - - NOISE - ШУМ - - - - Input Noise: - Вхідний шум: - - - - Output Gain: - Вихідне підсилення: - - - - CLIP - ЗРІЗ - - - - Output Clip: - Вихідне відсічення: - - - - Rate Enabled - Частоту вибірки увімкнено - - - - Enable samplerate-crushing - Включити дроблення частоти дискретизації - - - - Depth Enabled - Глибина включена - - - - Enable bitdepth-crushing - Включити ​​дроблення глибини кольору - - - - FREQ - ЧАСТ - - - - Sample rate: - Частота дискретизації: - - - - STEREO - СТЕРЕО - - - - Stereo difference: - Стерео різниця: - - - - QUANT - КВАНТ - - - - Levels: - Рівні: - - - - CaptionMenu - - + &Help &H Довідка - - Help (not available) - Допомога (не доступно) + + Tool Bar + - - - CarlaInstrumentView - - Show GUI - Показати інтерфейс + + Disk + - - Click here to show or hide the graphical user interface (GUI) of Carla. - Натисніть сюди щоб сховати чи показати графічний інтерфейс Carla. + + + Home + - - - Controller - - Controller %1 - Контролер %1 + + Transport + - - - ControllerConnectionDialog - - Connection Settings - Параметры соединения + + Playback Controls + - - MIDI CONTROLLER - MIDI-КОНТРОЛЕР + + Time Information + - - Input channel - Канал введення + + Frame: + - - CHANNEL - КАНАЛ + + 000'000'000 + - - Input controller - Контролер введення - - - - CONTROLLER - КОНТРОЛЕР - - - - - Auto Detect - Автовизначення - - - - MIDI-devices to receive MIDI-events from - Пристрої MiDi для прийому подій - - - - USER CONTROLLER - КОРИСТ. КОНТРОЛЕР - - - - MAPPING FUNCTION - ПЕРЕВИЗНАЧЕННЯ - - - - OK - ОК - - - - Cancel - Відміна - - - - LMMS - ЛММС - - - - Cycle Detected. - Виявлено цикл. - - - - ControllerRackView - - - Controller Rack - Стійка контролерів - - - - Add - Додати - - - - Confirm Delete - Підтвердити видалення - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - Чи підтверджуєте видалення? Є можливі зв'язки з цим контролером, потім їх не можна буде повернути.. - - - - ControllerView - - - Controls - Управління - - - - 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 Перейменувати цей контролер - - - - CrossoverEQControlDialog - - - Band 1/2 Crossover: - Смуга 1/2 кросовер: - - - - Band 2/3 Crossover: - Смуга 2/3 кросовер: - - - - Band 3/4 Crossover: - Смуга 3/4 кросовер: - - - - 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 - Смуга 2 відключена - - - - Mute Band 2 - Відключити смугу 2 - - - - Band 3 Mute - Смуга 3 відключена - - - - Mute Band 3 - Відключити смугу 3 - - - - Band 4 Mute - Смуга 4 відключена - - - - Mute Band 4 - Відключити смугу 4 - - - - DelayControls - - - Delay Samples - Затримка семплів - - - - Feedback - Повернення - - - - Lfo Frequency - Частота LFO - - - - Lfo Amount - Величина LFO - - - - Output gain - Вихідне підсилення - - - - DelayControlsDialog - - - DELAY - ЗАТРИМ - - - - Delay Time - Час затримки - - - - FDBK - FDBK - - - - Feedback Amount - Величина повернення - - - - RATE - ЧАСТ - - - - Lfo - LFO - - - - AMNT - ГЛИБ - - - - Lfo Amt - Вел LFO - - - - Out Gain - Вих підсилення - - - - Gain - Підсилення - - - - DualFilterControlDialog - - - - FREQ - ЧАСТ - - - - - Cutoff frequency - Зріз частоти - - - - - RESO - РЕЗО - - - - - Resonance - Резонанс - - - - - GAIN - ПІДС - - - - - Gain - Підсилення - - - - MIX - МІКС - - - - Mix - Мікс - - - - Filter 1 enabled - Фільтр 1 включено - - - - Filter 2 enabled - Фільтр 2 включено - - - - Click to enable/disable Filter 1 - Натиснути для включення/виключення Фільтру 1 - - - - Click to enable/disable Filter 2 - Натиснути для включення/виключення Фільтру 2 - - - - DualFilterControls - - - Filter 1 enabled - Фільтр 1 включено - - - - Filter 1 type - Тип фільтру - - - - Cutoff 1 frequency - Зріз 1 частоти - - - - Q/Resonance 1 - Кіл./Резонансу 1 - - - - Gain 1 - Підсилення 1 - - - - Mix - Мікс - - - - Filter 2 enabled - Фільтр 2 включено - - - - Filter 2 type - Тип фільтру 2 - - - - Cutoff 2 frequency - Зріз 2 частоти - - - - Q/Resonance 2 - Кіл./Резонансу 2 - - - - Gain 2 - Підсилення 2 - - - - - LowPass - Низ.ЧФ - - - - - HiPass - Вис.ЧФ - - - - - BandPass csg - Серед.ЧФ csg - - - - - BandPass czpg - Серед.ЧФ czpg - - - - - Notch - Смуго-загороджуючий - - - - - Allpass - Всі проходять - - - - - Moog - Муг - - - - - 2x LowPass - 2х Низ.ЧФ - - - - - RC LowPass 12dB - RC Низ.ЧФ 12дБ - - - - - RC BandPass 12dB - RC Серед.ЧФ 12 дБ - - - - - RC HighPass 12dB - RC Вис.ЧФ 12дБ - - - - - RC LowPass 24dB - RC Низ.ЧФ 24дБ - - - - - RC BandPass 24dB - RC Серед.ЧФ 24дБ - - - - - RC HighPass 24dB - RC Вис.ЧФ 24дБ - - - - - Vocal Formant Filter - Фільтр Вокальної форманти - - - - - 2x Moog - 2x Муг - - - - - SV LowPass - SV Низ.ЧФ - - - - - SV BandPass - SV Серед.ЧФ - - - - - SV HighPass - SV Вис.ЧФ - - - - - SV Notch - SV Смуго-заг - - - - - Fast Formant - Швидка форманта - - - - - Tripole - Тріполі - - - - Editor - - - Transport controls - Управління засобами сполучення - - - - Play (Space) - Грати (Пробіл) - - - - Stop (Space) - Зупинити (Пробіл) - - - - Record - Запис - - - - Record while playing - Запис під час програвання - - - - Effect - - - Effect enabled - Ефект включений - - - - Wet/Dry mix - Насиченість - - - - Gate - Шлюз - - - - Decay - Згасання - - - - EffectChain - - - Effects enabled - Ефекти включені - - - - EffectRackView - - - EFFECTS CHAIN - МЕРЕЖА ЕФЕКТІВ - - - - Add effect - Додати ефект - - - - EffectSelectDialog - - - Add effect - Додати ефект - - - - - 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 - - - - + 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) ефектах. + + 00:00:00 + - - GATE - ШЛЮЗ + + BBT: + - - Gate: - Шлюз: + + 000|00|0000 + - - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - GATE (Шлюз) визначає рівень сигналу, який буде вважатися "тишею" при визначенні зупинки оброблення сигналів. + + Settings + Параметри - - Controls - Управління + + BPM + - - 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) встановлює "задану довжину часу" Чим менше значення, тим менші вимоги до ЦП, тому краще ставити це число низьким для більшості ефектів. однак це може викликати обрізку звуку при використанні ефектів з тривалими періодами тиші, типу затримки. - -Регулятор шлюзу служить для вказівки порогу сигналу для авто-відключення ефекту, відлік для "заданої довжини часу" почнеться як тільки опрацьований сигнал впаде нижче зазначеного цим регулятором рівня. - -Кнопка "Управління" відкриває вікно зміни параметрів ефекту. - -Контекстне меню, яке викликається клацанням правою кнопкою миші, дозволяє змінювати порядок проходження фільтрів або видаляти їх разом з іншими. + + Use JACK Transport + - - Move &up - &u Перемістити вище + + Use Ableton Link + - - Move &down - &d Перемістити нижче + + &New + &N Новий - - &Remove this plugin - &R Видалити цей плагін + + Ctrl+N + + + + + &Open... + &O Відкрити... + + + + + Open... + + + + + Ctrl+O + + + + + &Save + &S Зберегти + + + + Ctrl+S + + + + + Save &As... + &A Зберегти як... + + + + + Save As... + + + + + Ctrl+Shift+S + + + + + &Quit + &Q Вийти + + + + Ctrl+Q + + + + + &Start + + + + + F5 + + + + + St&op + + + + + F6 + + + + + &Add Plugin... + + + + + Ctrl+A + + + + + &Remove All + + + + + Enable + + + + + Disable + + + + + 0% Wet (Bypass) + + + + + 100% Wet + + + + + 0% Volume (Mute) + + + + + 100% Volume + + + + + Center Balance + + + + + &Play + + + + + Ctrl+Shift+P + + + + + &Stop + + + + + Ctrl+Shift+X + + + + + &Backwards + + + + + Ctrl+Shift+B + + + + + &Forwards + + + + + Ctrl+Shift+F + + + + + &Arrange + + + + + Ctrl+G + + + + + + &Refresh + + + + + Ctrl+R + + + + + Save &Image... + + + + + Auto-Fit + + + + + Zoom In + + + + + Ctrl++ + + + + + Zoom Out + + + + + Ctrl+- + + + + + Zoom 100% + + + + + Ctrl+1 + + + + + Show &Toolbar + + + + + &Configure Carla + + + + + &About + + + + + About &JUCE + + + + + About &Qt + + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + Ctrl+P + + + + + &Connect... + + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + + + + + &Configure driver... + + + + + Panic + + + + + Open custom driver panel... + + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C + - EnvelopeAndLfoParameters + CarlaHostWindow - - Predelay - Затримка + + Export as... + - - Attack - Вступ + + + + + Error + Помилка - - Hold - Утримання + + Failed to load project + - - Decay - Згасання + + Failed to save project + - - Sustain - Витримка + + Quit + Вихід - - Release - Зменшення + + Are you sure you want to quit Carla? + - - Modulation - Модуляція + + Could not connect to Audio backend '%1', possible reasons: +%2 + - - LFO Predelay - Затримка LFO + + Could not connect to Audio backend '%1' + - - LFO Attack - Вступ LFO + + Warning + - - LFO speed - Швидкість LFO - - - - LFO Modulation - Модуляція LFO - - - - LFO Wave Shape - Форма сигналу LFO - - - - Freq x 100 - ЧАСТ x 100 - - - - Modulate Env-Amount - Модулювати обвідну + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + - EnvelopeAndLfoView + CarlaSettingsW - - - DEL - DEL + + Settings + Параметри - - Predelay: - Предзатримка: + + main + - - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Ця ручка визначає затримку обвідної. Чим більша ця величина, тим довший час до старту поточної обвідної. + + canvas + - - - ATT - ATT + + engine + - - Attack: - Вступ: + + osc + - - 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. - Ця ручка встановлює час зростання для поточної обвідної. Чим більше значення, тим довше характеристика (н-д, гучність) зростає до максимуму. Для інструменов нашталт піаніно характерний малий час наростання, а для струнних - великий. + + file-paths + - - HOLD - HOLD + + plugin-paths + - - Hold: - Утримання: + + wine + - - 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. - Ця ручка встановлює тривалість обвідної. Чим більше значення, тим довше обвідна тримається на найвищому рівні. + + experimental + - - DEC - DEC + + Widget + - - Decay: - Згасання: + + + Main + - - 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. - Ця ручка встановлює час згасання для поточної обвідної. Чим більше значення, тим довше обвідна повинна зменшуватися від вступу до рівня витримки. Для інструментів накшталт піаніно слід вибирати невеликі значення. + + + Canvas + - - SUST - SUST + + + Engine + - - Sustain: - Витримка: + + File Paths + - - 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. - Ця ручка встановлює рівень витримки. Чим більша ця величина, тим вище рівень на якому залишається обвідна, перш ніж опуститися до нуля. + + Plugin Paths + - - REL - REL + + Wine + - - Release: - Зменшення: + + + Experimental + - - 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. - Ця ручка встановлює час відпускання для поточної обвідної. Чим більше значення, тим довша характеристика (н-д, гучність) зменшується від рівня витримки до нуля. Для струнних інструментів слід вибирати великі значення. + + <b>Main</b> + - - - AMT - AMT + + Paths + Шляхи - - - Modulation amount: - Глибина модуляції: + + Default project folder: + - - 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. - Ця ручка встановлює глибину модуляції для поточної обвідної. Чим більше значення, тим більшою мірою обрана характеристика (н-д, гучність або частота зрізу) буде залежати від цієї обвідної. + + Interface + - - LFO predelay: - Предзатримка LFO: + + Use "Classic" as default rack skin + - - 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 почне працювати. + + Interface refresh interval: + - - LFO- attack: - Вступ LFO: + + + ms + - - 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 потребує збільшення своєї амплітуди до максимуму. + + Show console output in Logs tab (needs engine restart) + - - SPD - SPD + + Show a confirmation dialog before quitting + - - LFO speed: - Швидкість LFO: + + + Theme + - - 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 Carla "PRO" theme (needs restart) + - - 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. + + Color scheme: + - - Click here for a sine-wave. - Синусоїда. + + Black + - - Click here for a triangle-wave. - Згенерувати трикутний сигнал. + + System + - - Click here for a saw-wave for current. - Згенерувати зигзагоподібний сигнал. + + Enable experimental features + - - Click here for a square-wave. - Згенерувати квадратний сигнал. + + <b>Canvas</b> + - - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Задати свою форму сигналу. Згодом, перетягнути відповідний файл із записом в граф LFO. + + Bezier Lines + - - Click here for random wave. - Натисніть сюди для випадкової хвилі. + + Theme: + - - FREQ x 100 - ЧАСТОТА x 100 + + Size: + Розмір: - - Click here if the frequency of this LFO should be multiplied by 100. - Натисніть, щоб помножити частоту цього LFO на 100. + + 775x600 + - - multiply LFO-frequency by 100 - Помножити частоту LFO на 100 + + 1550x1200 + - - MODULATE ENV-AMOUNT - МОДЕЛЮВ ОБВІДНУ + + 3100x2400 + - - Click here to make the envelope-amount controlled by this LFO. - Натисніть сюди, щоб глибина модуляції обвідної задавалася цим LFO. + + 4650x3600 + - - control envelope-amount by this LFO - Дозволити цьому LFO задавати значення обвідної + + 6200x4800 + - - ms/LFO: - мс/LFO: + + 12400x9600 + - - Hint - Підказка + + Options + - - Drag a sample from somewhere and drop it in this window. - Перетягніть в це вікно який-небудь запис. + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + + + + + Anti-Aliasing + + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + + + + + + Core + + + + + Single Client + + + + + Multiple Clients + + + + + + Continuous Rack + + + + + + Patchbay + + + + + Audio driver: + + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + + + + + Reset Xrun counter after project load + + + + + Plugin UIs + + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + + + + + <b>OSC</b> + + + + + Enable OSC + + + + + Enable TCP port + + + + + + Use specific port: + + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + + + + + Audio + Аудіо + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + + + + + + Remove + + + + + + Change... + + + + + <b>Plugin Paths</b> + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + SF2/3 + + + + + SFZ + + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + + + + + <b>Wine</b> + + + + + Executable + + + + + Path to 'wine' binary: + + + + + Prefix + + + + + Auto-detect Wine prefix based on plugin filename + + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + + + + + High Quality Anti-Aliasing (OpenGL only) + + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + + + + + Force mono plugins as stereo + + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path + - EqControls + Dialog - - Input gain - Вхідне підсилення + + Carla Control - Connect + - - Output gain - Вихідне підсилення + + Remote setup + - - Low shelf gain - Мала ступінь підсилення + + UDP Port: + - - Peak 1 gain - Пік 1 підсилення + + Remote host: + - - Peak 2 gain - Пік 2 підсилення + + TCP Port: + - - Peak 3 gain - Пік 3 підсилення + + Set value + - - Peak 4 gain - Пік 4 підсилення + + TextLabel + - - High Shelf gain - Висока ступінь підсилення - - - - HP res - ВЧ резон - - - - Low Shelf res - Мала ступінь резон - - - - Peak 1 BW - Пік 1 BW - - - - Peak 2 BW - Пік 2 BW - - - - Peak 3 BW - Пік 3 BW - - - - Peak 4 BW - Пік 4 BW - - - - High Shelf res - Висока ступінь резон - - - - LP res - НЧ резон - - - - HP freq - НЧ част - - - - Low Shelf freq - Низька ступінь част - - - - Peak 1 freq - Пік 1 част - - - - Peak 2 freq - Пік 2 част - - - - Peak 3 freq - Пік 3 част - - - - Peak 4 freq - Пік 4 част - - - - High shelf freq - Висока ступінь част - - - - LP freq - НЧ част - - - - HP active - ВЧ активна - - - - Low shelf active - Мала ступінь активна - - - - Peak 1 active - Пік 1 активний - - - - Peak 2 active - Пік 2 активний - - - - Peak 3 active - Пік 3 активний - - - - Peak 4 active - Пік 4 активний - - - - High shelf active - Висока ступінь активна - - - - LP active - НЧ активна - - - - LP 12 - НЧ 12 - - - - LP 24 - НЧ 24 - - - - LP 48 - НЧ 48 - - - - HP 12 - ВЧ 12 - - - - HP 24 - ВЧ 24 - - - - HP 48 - ВЧ 48 - - - - low pass type - Тип низької частоти - - - - high pass type - Тип високої частоти - - - - Analyse IN - Аналізувати ВХІД - - - - Analyse OUT - Аналізувати ВИХІД + + Scale Points + - EqControlsDialog + DriverSettingsW - - HP - ВЧ + + Driver Settings + - - Low Shelf - Мала ступінь + + Device: + - - Peak 1 - Пік 1 + + Buffer size: + - - Peak 2 - Пік 2 + + Sample rate: + Частота дискретизації: - - Peak 3 - Пік 3 + + Triple buffer + - - Peak 4 - Пік 4 + + Show Driver Control Panel + - - High Shelf - Висока ступінь - - - - LP - НЧ - - - - In Gain - Вхід підсилення - - - - - - Gain - Підсилення - - - - Out Gain - Вих підсилення - - - - Bandwidth: - Ширина смуги: - - - - Octave - Октава - - - - Resonance : - Резонанс: - - - - Frequency: - Частота: - - - - lp grp - нч grp - - - - hp grp - вч grp - - - - EqHandle - - - Reso: - Резон: - - - - BW: - ШС: - - - - - Freq: - Част: + + Restart the engine to load the new settings + 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 Експорт між маркерами циклу - - Start - Почати + + Render Looped Section: + - - Cancel - Відміна + + time(s) + - - Could not open file - Не можу відкрити файл + + 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! - Не вдалось відкрити файл %1 для запису. -Перевірте, чи маєте ви права на запис файлу і каталог що його містить і спробуйте знову! + + File format: + Формат файла: - - Export project to %1 - Експорт проекту в %1 + + Sampling rate: + - - Error - Помилка + + 44100 Hz + 44.1 КГц - - Error while determining file-encoder device. Please try to choose a different output format. - Помилка при визначенні кодека файлу. Спробуйте вибрати інший формат виводу. + + 48000 Hz + 48 КГц - - Rendering: %1% - Обробка: %1% + + 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: - (fastest) + + 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 - (default) + + Sinc worst (fastest) - (smallest) - - - - - Expressive - - Selected graph - Обраний графік - - - A1 + + Sinc medium (recommended) - A2 + + Sinc best (slowest) - A3 - + + Start + Почати - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - - - - - Fader - - - - Please enter a new value between %1 and %2: - Введіть нове значення від %1 до %2: - - - - FileBrowser - - - Browser - Оглядач файлів - - - Search - - - - Refresh list - - - - - FileBrowserTreeWidget - - - Send to active instrument-track - З'єднати з активним інструментом-доріжкою - - - - Open in new instrument-track/Song Editor - Відкрити в новій інструментальній доріжці/Музичному редакторі - - - - Open in new instrument-track/B+B Editor - Відкрити в новій інструментальній доріжці/Біт + Бас редакторі - - - - Loading sample - Завантаження запису - - - - Please wait, loading sample for preview... - Будь-ласка почекайте, запис завантажується для перегляду ... - - - - Error - Помилка - - - - does not appear to be a valid - не являється дійсним - - - - file - файл - - - - --- Factory files --- - --- Заводські файли --- - - - - FlangerControls - - - Delay Samples - Затримка семплів - - - - Lfo Frequency - Частота LFO - - - - Seconds - Секунд - - - - Regen - Перегенерувати - - - - Noise - Шум - - - - Invert - Інвертувати - - - - FlangerControlsDialog - - - DELAY - ЗАТРИМ - - - - Delay Time: - Час затримки: - - - - RATE - ЧАСТ - - - - Period: - Період: - - - - AMNT - ГЛИБ - - - - Amount: - Величина: - - - - FDBK - FDBK - - - - Feedback Amount: - Величина повернення: - - - - NOISE - ШУМ - - - - White Noise Amount: - Об'єм білого шуму: - - - - Invert - Інвертувати - - - - 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 - Рухати вліво &L - - - - Move &right - Рухати вправо &R - - - - Rename &channel - Перейменувати канал &C - - - - R&emove channel - Видалити канал &e - - - - Remove &unused channels - Видалити канали які &не використовуються - - - - FxMixer - - - Master - Головний - - - - - - FX %1 - Ефект %1 - - - - Volume - Гучність - - - - Mute - Тиша - - - - Solo - Соло - - - - FxMixerView - - - FX-Mixer - Мікшер Ефектів - - - - FX Fader %1 - Повзунок Ефекту %1 - - - - Mute - Тиша - - - - Mute this FX channel - Тиша на цьому каналі Ефекту - - - - Solo - Соло - - - - Solo FX channel - Соло каналу ЕФ - - - - FxRoute - - - - Amount to send from channel %1 to channel %2 - Величина відправки з каналу %1 на канал %2 - - - - 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 файл - - - - GIG Files (*.gig) - GIG Файли (*.gig) - - - - GuiApplication - - - Working directory - Робочий каталог LMMS - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Робочий каталог LMMS (%1) не існує. Створити його? Пізніше ви зможете змінити його через Правку -> Параметри. - - - - Preparing UI - Підготовка користувацького інтерфейсу - - - - Preparing song editor - Підготовка музичного редактора - - - - Preparing mixer - Підготовка міксера - - - - Preparing controller rack - Підготовка стійки контролерів - - - - Preparing project notes - Підготовка заміток проекту - - - - Preparing beat/bassline editor - Підготовка ритм/бас редактора - - - - Preparing piano roll - Підготовка нотного редактора - - - - Preparing automation editor - Підготовка редактора автоматизації - - - - InstrumentFunctionArpeggio - - - Arpeggio - Арпеджіо - - - - Arpeggio type - Тип арпеджіо - - - - Arpeggio range - Діапазон арпеджіо - - - - Cycle steps - Зациклити такти - - - - Skip rate - Частота пропуску - - - - Miss rate - Частота пропуску - - - - Arpeggio time - Період арпеджіо - - - - Arpeggio gate - Шлюз арпеджіо - - - - Arpeggio direction - Напрямок арпеджіо - - - - Arpeggio mode - Режим арпеджіо - - - - Up - Вгору - - - - Down - Вниз - - - - Up and down - Вгору та вниз - - - - Down and up - Вниз та вгору - - - - Random - Випадково - - - - Free - Вільно - - - - Sort - Сортувати - - - - Sync - Синхронізувати - - - - InstrumentFunctionArpeggioView - - - ARPEGGIO - ARPEGGIO - - - - 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. - Використовуйте цю ручку, щоб встановити діапазон арпеджіо (в октавах). Обраний тип арпеджіо охоплюватиме вказану кількість октав. - - - - 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: - Режим: + + Cancel + Відміна InstrumentFunctionNoteStacking - + octave Октава - - + + Major Мажорний - + Majb5 Majb5 - + minor мінорний - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Гармонійний мінор - + Melodic minor Мелодійний мінор - + Whole tone Цілий тон - + Diminished Понижений - + Major pentatonic Пентатонік major - + Minor pentatonic Пентатонік major - + Jap in sen Япон in sen - + Major bebop Major Бібоп - + Dominant bebop Домінтний бібоп - + Blues Блюз - + Arabic Арабська - + Enigmatic Загадкова - + Neopolitan Неаполітанська - + Neopolitan minor Неаполітанський мінор - + Hungarian minor Угорський мінор - + Dorian Дорійська - + Phrygian Фрігійський - + Lydian Лідійська - + Mixolydian Міксолідійська - + Aeolian Еолійська - + Locrian Локріанська - + Minor Мінор - + Chromatic Хроматична - + Half-Whole Diminished Напів-зниження - + 5 5 - + Phrygian dominant Фрігійська домінанта - + Persian Перська - - - Chords - Акорди - - - - Chord type - Тип акорду - - - - Chord range - Діапазон акорду - - - - InstrumentFunctionNoteStackingView - - - STACKING - Стиковка - - - - Chord: - Акорд: - - - - RANGE - ДІАПАЗОН - - - - Chord range: - Діапазон акорду: - - - - octave(s) - Октав[а/и] - - - - 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 - - - - NOTE - 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% - - - - BASE VELOCITY - БАЗОВА ШВИДКІСТЬ - - - - InstrumentMiscView - - - MASTER PITCH - ОСНОВНА ТОНАЛЬНІСТЬ - - - - Enables the use of Master Pitch - Включає використання основної тональності - InstrumentSoundShaping - + VOLUME VOLUME - + Volume Гучність - + CUTOFF CUTOFF - - + Cutoff frequency Зріз частоти - + RESO RESO - + Resonance Резонанс + + + JackAppDialog - - Envelopes/LFOs - Обвідні/LFO + + Add JACK Application + - - Filter type - Тип фільтру + + Note: Features not implemented yet are greyed out + - - Q/Resonance - Кіл./Резонансу + + Application + - - LowPass - Низ.ЧФ + + Name: + - - HiPass - Вис.ЧФ + + Application: + - - BandPass csg - Серед.ЧФ csg + + From template + - - BandPass czpg - Серед.ЧФ czpg + + Custom + - - Notch - Смуго-загороджуючий + + Template: + - - Allpass - Всі проходять + + Command: + - - Moog - Муг + + Setup + - - 2x LowPass - 2х Низ.ЧФ + + Session Manager: + - - RC LowPass 12dB - RC Низ.ЧФ 12дБ + + None + - - RC BandPass 12dB - RC Серед.ЧФ 12 дБ + + Audio inputs: + - - RC HighPass 12dB - RC Вис.ЧФ 12дБ + + MIDI inputs: + - - RC LowPass 24dB - RC Низ.ЧФ 24дБ + + Audio outputs: + - - RC BandPass 24dB - RC Серед.ЧФ 24дБ + + MIDI outputs: + - - RC HighPass 24dB - RC Вис.ЧФ 24дБ + + Take control of main application window + - - Vocal Formant Filter - Фільтр Вокальної форманти + + Workarounds + - - 2x Moog - 2x Муг + + Wait for external application start (Advanced, for Debug only) + - - SV LowPass - SV Низ.ЧФ + + Capture only the first X11 Window + - - SV BandPass - SV Серед.ЧФ + + Use previous client output buffer as input for the next client + - - SV HighPass - SV Вис.ЧФ + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - - SV Notch - SV Смуго-заг + + Error here + - - Fast Formant - Швидка форманта + + NSM applications cannot use abstract or absolute paths + - - Tripole - Тріполі + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + - InstrumentSoundShapingView + JuceAboutW - - 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: - Срез частот: - - - - 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. - Обвідні, LFO і фільтри не підтримуються цим інструментом. + + This program uses JUCE version %1. + - InstrumentTrack + MidiPatternW - - With this knob you can set the volume of the opened channel. - Регулювання гучності поточного каналу. + + MIDI Pattern + - - - unnamed_track - безіменна_доріжка + + Time Signature: + - - Base note - Опорна нота + + + + 1/4 + - - Volume - Гучність + + 2/4 + - - Panning - Стерео + + 3/4 + - - Pitch - Тональність + + 4/4 + - - Pitch range - Діапазон тональності + + 5/4 + - - FX channel - Канал ЕФ + + 6/4 + - - Master Pitch - Основна тональність + + Measures: + - - - Default preset - Основна предустановка + + + + 1 + - - - InstrumentTrackView - - Volume - Гучність + + 2 + - - Volume: - Гучність: + + 3 + - - VOL - ГУЧН + + 4 + - - Panning - Баланс + + 5 + 5 - - Panning: - Баланс: + + 6 + 6 - - PAN - БАЛ + + 7 + 7 - - MIDI - MIDI + + 8 + - - Input - Вхід + + 9 + 9 - - Output - Вихід + + 10 + - - FX %1: %2 - ЕФ %1: %2 + + 11 + 11 - - - InstrumentTrackWindow - - GENERAL SETTINGS - ОСНОВНІ НАЛАШТУВАННЯ + + 12 + - - Use these controls to view and edit the next/previous track in the song editor. - Використовуйте ці елементи керування для перегляду і редагування наступного/попереднього треку в музичному редакторі. + + 13 + 13 - - Instrument volume - Гучність інструменту + + 14 + - - Volume: - Гучність: + + 15 + - - VOL - ГУЧН + + 16 + - - Panning - Баланс + + Default Length: + - - Panning: - Стереобаланс: + + + 1/16 + - - PAN - БАЛ + + + 1/15 + - - Pitch - Тональність + + + 1/12 + - - Pitch: - Тональність: + + + 1/9 + - - cents - відсотків + + + 1/8 + - - PITCH - ТОН + + + 1/6 + - - Pitch range (semitones) - Діапазон тональності (півтону) + + + 1/3 + - - RANGE - ДІАПАЗОН + + + 1/2 + - - FX channel - Канал ЕФ + + Quantize: + - - 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. - Нитисніть тут, щоб зберегти налаштування поточної інстр. доріжки в файл предустановок. Пізніше можна завантажити цю передустановку подвійним кліком в браузері предустановок. - - - - SAVE - ЗБЕРЕГТИ - - - - Envelope, filter & LFO - Обвідна, фільтр & LFO - - - - Chord stacking & arpeggio - Укладання акордів & арпеджіо - - - - Effects - Ефекти - - - - MIDI settings - Параметри MIDI - - - - Miscellaneous - Різне - - - - Save preset - Зберегти передустановку - - - - XML preset file (*.xpf) - XML файл налаштувань (*.xpf) - - - - Plugin - Модуль - - - - Knob - - - Set linear - Встановити лінійний - - - - Set logarithmic - Встановити логарифмічний - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - Введіть нове значення від -96,0 дБFS до 6,0 дБFS: - - - - Please enter a new value between %1 and %2: - Введіть нове значення від %1 до %2: - - - - LadspaControl - - - Link channels - Зв'язати канали - - - - LadspaControlDialog - - - Link Channels - Зв'язати канали - - - - Channel - Канал - - - - LadspaControlView - - - Link channels - Зв'язати канали - - - - Value: - Значення: - - - - Sorry, no help available. - Вибачте, довідки немає. - - - - LadspaEffect - - - Unknown LADSPA plugin %1 requested. - Запитаний невідомий модуль LADSPA «%1». - - - - LcdSpinBox - - - Please enter a new value between %1 and %2: - Введіть нове значення від %1 до %2: - - - - LeftRightNav - - - - - Previous - Попередній - - - - - - Next - Наступний - - - - Previous (%1) - Попередній (%1) - - - - Next (%1) - Наступний (%1) - - - - LfoController - - - LFO Controller - Контролер LFO - - - - Base value - Основне значення - - - - Oscillator speed - Швидкість хвилі - - - - Oscillator amount - Розмір хвилі - - - - Oscillator phase - Фаза хвилі - - - - Oscillator waveform - Форма хвилі - - - - Frequency Multiplier - Множник частоти - - - - LfoControllerDialog - - - LFO - LFO - - - - LFO Controller - Контролер LFO - - - - 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. - Ця ручка встановлює швидкість 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 - градуси - - - - 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º, хвиля спочатку піде вниз, а не вгору, так само як і для квадратної хвилі. - - - - 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 a moog saw-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. - Натисніть тут для визначення своєї форми. -Подвійне натискання для вибору файлу. - - - - LmmsCore - - - Generating wavetables - Генерування синтезатора звукозаписів - - - - Initializing data structures - Ініціалізація структур даних - - - - Opening audio and midi devices - Відкриття аудіо та міді пристроїв - - - - Launching mixer threads - Запуск потоків міксера - - - - MainWindow - - - Configuration file - Файл налаштувань - - - - Error while parsing configuration file at line %1:%2: %3 - Помилка під час обробки файлу налаштувань в рядку %1:%2:%3 - - - - Could not open file - Не можу відкрити файл - - - - Could not open file %1 for writing. -Please make sure you have write permission to the file and the directory containing the file and try again! - Не вдалось відкрити файл %1 для запису. -Перевірте, чи маєте ви права на запис файлу і каталог що його містить і спробуйте знову! - - - - Project recovery - Відновлення проекту - - - - There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? - Присутній файл відновлення. Схоже, остання сесія не закінчилася належним чином або інший екземпляр LMMS вже запущений. Ви хочете, відновити проект цієї сесії? - - - - - - Recover - Відновлення - - - - Recover the file. Please don't run multiple instances of LMMS when you do this. - Відновлення файлу. Будь ласка, не запускайте кілька копій LMMS під час цієї операції. - - - - - - Discard - Відкинути - - - - Launch a default session and delete the restored files. This is not reversible. - Запуск за замовчуванням з видаленням файла відновлення. Ця дія не відворотня. - - - - Version %1 - Версія %1 - - - - Preparing plugin browser - Підготовка браузера плагінів - - - - Preparing file browsers - Підготовка переглядача файлів - - - - My Projects - Мої проекти - - - - My Samples - Мої записи - - - - My Presets - Мої передустановки - - - - My Home - Моя домашня тека - - - - Root directory - Кореневий каталог - - - - Volumes - Гучності - - - - My Computer - Мій комп'ютер - - - - Loading background artwork - Завантаження фонового зображення - - - + &File &Файл - - &New - &N Новий - - - - New from template - Новий проект по шаблону - - - - &Open... - &O Відкрити... - - - - &Recently Opened Projects - &Нещодавно відкриті проекти - - - - &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 - Скасувати + + &Quit + &Q Вийти - - Redo - Повторити + + Esc + - - Settings - Параметри + + &Insert Mode + - - &View - &V Перегляд + + F + - - &Tools - &T Сервіс + + &Velocity Mode + - - &Help - &H Довідка + + D + - - Online Help - Онлайн Допомога + + Select All + - - 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. - Показати чи сховати музичний редактор. З його допомогою ви можете редагувати композицію і задавати час відтворення кожної доріжки. -Також ви можете вставляти і пересувати записи прямо у списку відтворення. - - - - 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. - Показати чи сховати ритм-бас редактор. Він необхідний для установки ритму, відкриття, додавання і видалення каналів, а також вирізання, копіювання і вставки ритм-бас шаблонів і схожих речей. - - - - 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 - Показати/сховати керування контролерами - - - - 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 - Стійка контролерів - - - - Volume as dBFS - Відображати гучність в децибелах - - - - Smooth scroll - Плавне прокручування - - - - Enable note labels in piano roll - Включити позначення нот у музичному редакторі - - - - MeterDialog - - - - Meter Numerator - Шкала чисел - - - - - Meter Denominator - Шкала поділів - - - - TIME SIG - ПЕРІОД - - - - MeterModel - - - Numerator - Чисельник - - - - Denominator - Знаменник - - - - MidiController - - - MIDI Controller - Контролер MIDI - - - - 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. - Ви не встановили SoundFont за замовчуванням в налаштуваннях (Правка-> Налаштування), тому після імпорту міді файлу звук відтворюватися не буде. -Вам слід завантажити основний MiDi SoundFont, вказати його в налаштуваннях і спробувати знову. - - - - You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. - Ви не увімкнули підтримку програвача SoundFont2 при компіляції LMMS, він використовується для додавання основного звуку в імпортовані Міді файли, тому після імпорту цього міді файлу звуку не буде. - - - - 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 відключений. - - - - MidiPort - - - Input channel - Вхід - - - - Output channel - Вихід - - - - Input controller - Контролер входу - - - - Output controller - Контролер виходу - - - - Fixed input velocity - Постійна швидкість введення - - - - Fixed output velocity - Постійна швидкість виведення - - - - Fixed output note - Постійний вихід нот - - - - Output MIDI program - Програма для виведення MiDi - - - - Base velocity - Базова швидкість - - - - Receive MIDI-events - Приймати події MIDI - - - - Send MIDI-events - Відправляти події MIDI - - - - MidiSetupWidget - - - DEVICE - ПРИСТРІЙ - - - - MonstroInstrument - - - Osc 1 Volume - Гучність осциллятора 1 - - - - Osc 1 Panning - Баланс осциллятора 1 - - - - Osc 1 Coarse detune - Грубе підстроювання осциллятора 1 - - - - Osc 1 Fine detune left - Точне підстроювання лівого каналу осциллятора 1 - - - - Osc 1 Fine detune right - Точне підстроювання правого каналу осциллятора 1 - - - - Osc 1 Stereo phase offset - Зміщення стерео-фази осциллятора 1 - - - - Osc 1 Pulse width - Довжина імпульсу осциллятора 1 - - - - Osc 1 Sync send on rise - Синхронізація підйому осциллятора 1 - - - - Osc 1 Sync send on fall - Синхронізація падіння осциллятора 1 - - - - Osc 2 Volume - Гучність осциллятора 2 - - - - Osc 2 Panning - Баланс осциллятора 2 - - - - Osc 2 Coarse detune - Грубе підстроювання осциллятора 2 - - - - Osc 2 Fine detune left - Точне підстроювання лівого каналу осциллятора 2 - - - - Osc 2 Fine detune right - Точне підстроювання правого каналу осциллятора 2 - - - - Osc 2 Stereo phase offset - Зміщення стерео-фази осциллятора 2 - - - - Osc 2 Waveform - Форма сигналу осциллятора 2 - - - - Osc 2 Sync Hard - Жорстка синхронізація осциллятора 2 - - - - Osc 2 Sync Reverse - Верерс синхронізація осциллятора 2 - - - - Osc 3 Volume - Гучність осциллятора 3 - - - - Osc 3 Panning - Баланс осциллятора 3 - - - - Osc 3 Coarse detune - Грубе підстроювання осциллятора 3 - - - - Osc 3 Stereo phase offset - Зміщення стерео-фази осциллятора 3 - - - - Osc 3 Sub-oscillator mix - Змішення суб-генератора осциллятора 3 - - - - Osc 3 Waveform 1 - Форма 1 сигналу осциллятора 3 - - - - Osc 3 Waveform 2 - Форма 2 сигналу осциллятора 3 - - - - Osc 3 Sync Hard - Жорстка синхронізація осциллятора 3 - - - - Osc 3 Sync Reverse - Верерс синхронізація осциллятора 3 - - - - LFO 1 Waveform - Форма сигналу LFO 1 - - - - LFO 1 Attack - Вступ LFO 1 - - - - LFO 1 Rate - Темп LFO 1 - - - - LFO 1 Phase - Фаза LFO 1 - - - - LFO 2 Waveform - Форма сигналу LFO 2 - - - - LFO 2 Attack - Вступ LFO 2 - - - - LFO 2 Rate - Темп LFO 2 - - - - LFO 2 Phase - Фаза LFO 2 - - - - Env 1 Pre-delay - Затримка обвідної 1 - - - - Env 1 Attack - Вступ обвідної 1 - - - - Env 1 Hold - Утримання обвідної 1 - - - - Env 1 Decay - Згасання обвідної 1 - - - - Env 1 Sustain - Витримка обвідної 1 - - - - Env 1 Release - Зменшення обвідної 1 - - - - Env 1 Slope - Нахил обвідної 1 - - - - Env 2 Pre-delay - Затримка обвідної 2 - - - - Env 2 Attack - Вступ обвідної 2 - - - - Env 2 Hold - Утримання обвідної 2 - - - - Env 2 Decay - Згасання обвідної 2 - - - - Env 2 Sustain - Витримка обвідної 2 - - - - Env 2 Release - Зменшення обвідної 2 - - - - Env 2 Slope - Нахил обвідної 2 - - - - Osc2-3 modulation - Модуляція осцилляторів 2-3 - - - - Selected view - Перегляд обраного - - - - Vol1-Env1 - Гучн1-Обв1 - - - - Vol1-Env2 - Гучн1-Обв2 - - - - Vol1-LFO1 - Гучн1-LFO1 - - - - Vol1-LFO2 - Гучн1-LFO2 - - - - Vol2-Env1 - Гучн2-Обв1 - - - - Vol2-Env2 - Гучн2-Обв2 - - - - Vol2-LFO1 - Гучн2-LFO1 - - - - Vol2-LFO2 - Гучн2-LFO2 - - - - Vol3-Env1 - Гучн3-Обв1 - - - - Vol3-Env2 - Гучн3-Обв2 - - - - Vol3-LFO1 - Гучн3-LFO1 - - - - Vol3-LFO2 - Гучн3-LFO2 - - - - Phs1-Env1 - Фаз1-Обв1 - - - - Phs1-Env2 - Фаз1-Обв2 - - - - Phs1-LFO1 - Фаз1-LFO1 - - - - Phs1-LFO2 - Фаз1-LFO2 - - - - Phs2-Env1 - Фаз2-Обв1 - - - - Phs2-Env2 - Фаз2-Обв2 - - - - Phs2-LFO1 - Фаз2-LFO1 - - - - Phs2-LFO2 - Фаз2-LFO2 - - - - Phs3-Env1 - Фаз3-Обв1 - - - - Phs3-Env2 - Фаз3-Обв2 - - - - Phs3-LFO1 - Фаз3-LFO1 - - - - Phs3-LFO2 - Фаз3-LFO2 - - - - Pit1-Env1 - Тон1-Обв1 - - - - Pit1-Env2 - Тон1-Обв2 - - - - Pit1-LFO1 - Тон1-LFO1 - - - - Pit1-LFO2 - Тон1-LFO2 - - - - Pit2-Env1 - Тон2-Обв1 - - - - Pit2-Env2 - Тон2-Обв2 - - - - Pit2-LFO1 - Тон2-LFO1 - - - - Pit2-LFO2 - Тон2-LFO2 - - - - Pit3-Env1 - Тон3-Обв1 - - - - Pit3-Env2 - Тон3-Обв2 - - - - Pit3-LFO1 - Тон3-LFO1 - - - - Pit3-LFO2 - Тон3-LFO2 - - - - PW1-Env1 - PW1-Обв1 - - - - PW1-Env2 - PW1-Обв2 - - - - PW1-LFO1 - PW1-LFO1 - - - - PW1-LFO2 - PW1-LFO2 - - - - Sub3-Env1 - Sub3-Обв1 - - - - Sub3-Env2 - Sub3-Обв2 - - - - Sub3-LFO1 - Sub3-LFO1 - - - - Sub3-LFO2 - 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. - Матричний вид містить матрицю модуляції. Тут можна визначити модуляційні відношення між різними операторами. Кожен чутний оператор (осциллятори 1-3) мають 3-4 властивості, які можна модулювати будь-якими модуляторами. Використовуючи більше модуляцій збільшується навантаження на процесор. - -Вид ділиться на цілі модуляції, згруповані на цільовий осциллятор. Доступні цілі: гучність, тон, фаза, ширина пульсація і відношення з підлеглим (під-) осциллятором. Відзначимо що деякі цілі визначені тільки для одного осциллятора. - -Кожна ціль модуляції має 4 регулятори, по одному на кожен модулятор. За замовчуванням регулятори встановлені на 0, тобто без модуляції. Включення регуляторів на 1 веде до того, що модулятор впливає на ціль модуляції на стільки на скільки це можливо. Включення його в -1 робить те ж, але зі зворотньою модуляцією. - - - - - - 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 - Жорстка синхронізація осциллятора 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 - - - - Modulate amplitude of Osc3 with Osc2 - Модулювати амплітуду осциллятора 3 сигналом з осц2 - - - - Modulate frequency of Osc3 with Osc2 - Модулювати частоту осциллятора 3 сигналом з осц2 - - - - Modulate phase of Osc3 with Osc2 - Модулювати фазу Осц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 - Глибина модуляції - - - - 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 - Грубе підстроювання 1 каналу - - - - Channel 1 Volume - Гучність 1 каналу - - - - Channel 1 Envelope length - Довжина обвідної 1 каналу - - - - Channel 1 Duty cycle - Робочий цикл 1 каналу - - - - Channel 1 Sweep amount - Кількість розгортки 1 каналу - - - - Channel 1 Sweep rate - Швидкість розгортки 1 каналу - - - - Channel 2 Coarse detune - Грубе підстроювання 2 каналу - - - - Channel 2 Volume - Гучність 2 каналу - - - - Channel 2 Envelope length - Довжина обвідної 2 каналу - - - - Channel 2 Duty cycle - Робочий цикл 2 каналу - - - - Channel 2 Sweep amount - Кількість розгортки 2 каналу - - - - Channel 2 Sweep rate - Швидкість розгортки 2 каналу - - - - Channel 3 Coarse detune - Грубе підстроювання 3 каналу - - - - Channel 3 Volume - Гучність 3 каналу - - - - Channel 4 Volume - Гучність 4 каналу - - - - Channel 4 Envelope length - Довжина обвідної 4 каналу - - - - Channel 4 Noise frequency - Частота шуму 4 каналу - - - - Channel 4 Noise frequency sweep - Частота розгортки шуму 4 каналу - - - - Master volume - Основна гучність - - - - Vibrato - Вібрато - - - - NesInstrumentView - - - - - - Volume - Гучність - - - - - - Coarse detune - Грубе підстроювання - - - - - - Envelope length - Довжина обвідної - - - - Enable channel 1 - Увімкнути канал 1 - - - - Enable envelope 1 - Увімкнути обвідну 1 - - - - Enable envelope 1 loop - Увімкнти повтор обвідної 1 - - - - Enable sweep 1 - Увімкнути розгортку 1 - - - - - Sweep amount - Кількість розгортки - - - - - Sweep rate - Темп розгортки - - - - - 12.5% Duty cycle - 12.5% Робочого циклу - - - - - 25% Duty cycle - 25% Робочого циклу - - - - - 50% Duty cycle - 50% Робочого циклу - - - - - 75% Duty cycle - 75% Робочого циклу - - - - Enable channel 2 - Увімкнути канал 2 - - - - Enable envelope 2 - Увімкнути обвідну 2 - - - - Enable envelope 2 loop - Увімкнти повтор обвідної 2 - - - - Enable sweep 2 - Увімкнути розгортку 2 - - - - Enable channel 3 - Увімкнути канал 3 - - - - Noise Frequency - Частота шуму - - - - Frequency sweep - Частота темпу - - - - Enable channel 4 - Увімкнути канал 4 - - - - Enable envelope 4 - Увімкнути обвідну 4 - - - - Enable envelope 4 loop - Увімкнти повтор обвідної 4 - - - - Quantize noise frequency when using note frequency - Квантування частоту шуму при використанні частоти ноти - - - - Use note frequency for noise - Використовувати частоту ноти для шуму - - - - Noise mode - Форма шуму - - - - Master Volume - Основна гучність - - - - Vibrato - Вібрато - - - - 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 + + A + PatchesDialog + Qsynth: Channel Preset Q-Синтезатор: Канал передустановлено + Bank selector Селектор банку + Bank Банк + Program selector Селектор програм + Patch Патч + Name І'мя + OK ОК + Cancel Скасувати - - 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. - Тут вмикається/вимикається режим повтору, при увімкнені 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 - - - 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 - Видалити такти - - - - Clone Steps - Клонувати такти - - - - PeakController - - - Peak Controller - Контролер вершин - - - - Peak Controller Bug - Контролер вершин з багом - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - Через помилку в старій версії LMMS контролери вершин не можуть правильно підключатися. Будь-ласка переконайтеся, що контролери вершин правильно приєднані і перезбережіть цей файл, вибачте, за заподіяні незручності. - - - - PeakControllerDialog - - - PEAK - ПІК - - - - LFO Controller - Контролер LFO - - - - PeakControllerEffectControlDialog - - - BASE - БАЗА - - - - Base amount: - Базове значення: - - - - AMNT - ГЛИБ - - - - Modulation amount: - Глибина модуляції: - - - - MULT - МНОЖ - - - - Amount Multiplicator: - Величина множника: - - - - ATCK - ВСТУП - - - - Attack: - Вступ: - - - - DCAY - ЗГАС - - - - Release: - Зменшення: - - - - TRSH - TRSH - - - - Treshold: - Поріг: - - - - PeakControllerEffectControls - - - Base value - Опорне значення - - - - Modulation amount - Глибина модуляції - - - - Attack - Вступ - - - - Release - Зменшення - - - - Treshold - Поріг - - - - Mute output - Заглушити вивід - - - - Abs 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 scale - Без підйому - - - - No chord - Прибрати акорди - - - - Velocity: %1% - Гучність %1% - - - - Panning: %1% left - Баланс %1% лівий - - - - Panning: %1% right - Баланс %1% правий - - - - Panning: center - Баланс: по середині - - - - Please open a pattern by double-clicking on it! - Відкрийте шаблон за допомогою подвійного клацання мишею! - - - - - Please enter a new value between %1 and %2: - Введіть нове значення від %1 до %2: - - - - PianoRollWindow - - - Play/pause current pattern (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) - Зупинити програвання поточної мелодії (Пробіл) - - - - 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 - Квантовать - - - - Copy paste controls - Управління копіюванням та вставкою - - - - Cut selected notes (%1+X) - Перемістити виділені ноти до буферу (%1+X) - - - - Copy selected notes (%1+C) - Копіювати виділені ноти до буферу (%1+X) - - - - 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. - При натиснені цієї кнопки ноти з буферу будуть вставлені в перший видимий такт. - - - - Timeline controls - Управління хронологією - - - - 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. - Цим контролюється масштаб осі. Це може бути корисно для спеціальних завдань. Для звичайного редагування, масштаб слід встановлювати за найменшою нотою. - - - - 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" позначає квантування і контролює розмір нотної сітки і контрольні точки тяжіння. З меншою величиною квантування, можна малювати короткі ноти в редаторі нот і більш точно контролювати точки в редакторі Автоматизації. - - - - 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! - Функція безпосередньо пов'язана з контекстним меню на віртуальній клавіатурі зліва в нотному редакторі. Після того, як обраний масштаб у випадаючому меню, можна натиснути правою кнопкою у віртуальній клавіатурі і вибрати "Mark Current Scale" (Відзначити поточний масштаб). LMMS підсвітить всі ноти які лежать в обраному масштабі для обраної клавіші! - - - - 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 потім зможе намалювати або підсвітити. У цьому меню можна знайти найбільш популярні акорди. Після того, як ви вибрали акорд, натисніть в будь-якому місці, щоб поставити його, а правим кліком по віртуальній клавіатурі відкривається контекстне меню і підсвічування акорду. Для повернення в режим однієї ноти потрібно вибрати "Без акорду" в цьому випадаючому меню. - - - - - Piano-Roll - %1 - Нотний редактор - %1 - - - - - Piano-Roll - no pattern - Нотний редактор - без шаблону - - - - PianoView - - - Base note - Опорна нота - - - - Plugin - - - Plugin not found - Модуль не знайдено - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - Модуль «%1» відсутній чи не може бути завантажений! -Причина: «%2» - - - - Error while loading plugin - Помилка завантаження модуля - - - - Failed to load plugin "%1"! - Не вдалося завантажити модуль «%1»! - - PluginBrowser - - Instrument Plugins - Модулі інструментів - - - - Instrument browser - Огляд інструментів - - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Ви можете переносити потрібні вам інструменти з цієї панелі в музичний, ритм-бас редактор або в існуючу доріжку інструменту. - - - - PluginFactory - - - Plugin not found. - Модуль не знайдено. - - - - LMMS plugin %1 does not have a plugin descriptor named %2! - LMMS плагін %1 не має опису плагіна з ім'ям %2! - - - - ProjectNotes - - - Project Notes - Примітки проекту - - - - Enter project notes here - Напишіть примітки до проекту тут - - - - Edit Actions - Зміна - - - - &Undo - &U Скасувати - - - - %1+Z - %1+Z - - - - &Redo - &R Повторити - - - - %1+Y - %1+Y - - - - &Copy - &C Копіювати - - - - %1+C - %1+C - - - - Cu&t - &t Вирізати - - - - %1+X - %1+X - - - - &Paste - &P Вставити - - - - %1+V - %1+V - - - - Format Actions - Форматування - - - - &Bold - Напів&жирний - - - - %1+B - %1+B - - - - &Italic - &Курсив - - - - %1+I - %1+I - - - - &Underline - &Підкреслити - - - - %1+U - %1+U - - - - &Left - По &лівому краю - - - - %1+L - %1+L - - - - C&enter - По &центрі - - - - %1+E - %1+E - - - - &Right - По &правому краю - - - - %1+R - %1+R - - - - &Justify - По &ширині - - - - %1+J - %1+J - - - - &Color... - &C Колір... - - - - ProjectRenderer - - - WAV-File (*.wav) - Файл WAV (*.wav) - - - - Compressed OGG-File (*.ogg) - Стиснутий файл OGG (*.ogg) - - - FLAC-File (*.flac) - - - - - Compressed MP3-File (*.mp3) - Стиснутий MP3-файл (* .mp3) - - - - QWidget - - - - - Name: - І'мя: - - - - - Maker: - Розробник: - - - - - Copyright: - Авторське право: - - - - - Requires Real Time: - Потрібна обробка в реальному часі: - - - - - - - - - Yes - Так - - - - - - - - - No - Ні - - - - - Real Time Capable: - Робота в реальному часі: - - - - - In Place Broken: - Замість зламаного: - - - - - Channels In: - Канали в: - - - - - Channels Out: - Канали з: - - - - File: %1 - Файл: %1 - - - - File: - Файл: - - - - RenameDialog - - - Rename... - Перейменувати ... - - - - ReverbSCControlDialog - - - Input - Ввід - - - - Input Gain: - Вхідне підсилення: - - - - Size - Розмір - - - - Size: - Розмір: - - - - Color - Колір - - - - Color: - Колір: - - - - Output - Вивід - - - - Output Gain: - Вихідне підсилення: - - - - ReverbSCControls - - - Input Gain - Вхідне підсилення - - - - Size - Розмір - - - - Color - Колір - - - - Output Gain - Вихідне підсилення - - - - 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 - - - double-click to select sample - Виберіть запис подвійним натисненням миші - - - - Delete (middle mousebutton) - Видалити (середня кнопка мишки) - - - - Cut - Вирізати - - - - Copy - Копіювати - - - - Paste - Вставити - - - - Mute/unmute (<%1> + middle click) - Заглушити/включити (<%1> + середня кнопка миші) - - - - SampleTrack - - - Volume - Гучність - - - - Panning - Баланс - - - - - Sample track - Доріжка запису - - - - 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 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 - ВСТАНОВИТИ УПРАВЛІННЯ - - - - No embedding - Не встановлено - - - - Embed using Qt API - Встановлення використовуючи Qt API - - - - Embed using native Win32 API - Встановлення використовуючи рідний Win32 API - - - - Embed using XEmbed protocol - Встановлення використовуючи протокол XEmbed - - - - LANGUAGE - МОВА - - - - - Paths - Шляхи - - - - Directories - Каталоги - - - - LMMS working directory - Робочий каталог LMMS - - - - Themes directory - Каталог тем - - - - Background artwork - Фонове зображення - - - - 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 - Увімкнути автоматичне збереження - - - - 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 - - - - 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 - Вимкнено - - - - Auto-save interval: %1 - Інтервал автоматичного збереження: %1 - - - - 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. -Не забудьте також зберегти проект вручну. Ви можете вимкнути автозбереження, інколи деяким старим системи тяжко в таком режимі. - - - - 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 та інші. У нижній частині вікна налаштування можна задати специфічні параметри обраного інтерфейсу. - - - - Song - - - Tempo - Темп - - - - Master volume - Основна гучність - - - - Master pitch - Основна тональність - - - - 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 - Зберегти проект - - - - MIDI File (*.mid) - MIDI-файл (* mid) - - - - The following errors occured 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, ймовірно, немає дозволу на його читання. -Будь-ласка переконайтеся, що є принаймні права на читання цього файлу і спробуйте ще раз. - - - - 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 для запису, можливо, немає дозволу на запис в цей файл, будь-ласка упевніться, що є доступ до цього файлу і спробуйте знову. - - - - 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 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). На кожен такт приходить чотири удари, так що темп в ударах в хвилину фактично вказує, скільки чвертей такту програється за хвилину (або, що те ж, кількість тактів, що програються за чотири хвилини). - - - - High quality mode - Висока якість - - - - - Master volume - Основна гучність - - - - master volume - основна гучність - - - - - Master pitch - Основна тональність - - - - 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 - Записати семпл з аудіо-пристрої під час відтворення в музичному чи ритм/бас редакторі - - - - 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 - Режим малювання - - - - Edit mode (select and move) - Правка (виділення/переміщення) - - - - Timeline controls - Управління хронологією - - - - Zoom controls - Управління масштабом - - - - SpectrumAnalyzerControlDialog - - - Linear spectrum - Лінійний спектр - - - - Linear Y axis - Лінійна вісь ординат - - - - SpectrumAnalyzerControls - - - Linear spectrum - Лінійний спектр - - - - Linear Y axis - Лінійна вісь ординат - - - - Channel mode - Режим каналу - - - - SubWindow - - - Close - Закрити - - - - Maximize - Розгорнути - - - - Restore - Відновити - - - - TabWidget - - - - Settings for %1 - Налаштування для %1 - - - - TempoSyncKnob - - - - Tempo Sync - Синхронізація темпу - - - - No Sync - Синхронізації немає - - - - Eight beats - Вісім ударів (дві ноти) - - - - Whole note - Ціла нота - - - - Half note - Півнота - - - - Quarter note - Чверть ноти - - - - 8th note - Восьма ноти - - - - 16th note - 1/16 ноти - - - - 32nd note - 1/32 ноти - - - - Custom... - Своя... - - - - Custom - Своя - - - - Synced to Eight Beats - Синхро по 8 ударам - - - - Synced to Whole Note - Синхро по цілій ноті - - - - Synced to Half Note - Синхро по половині ноти - - - - Synced to Quarter Note - Синхро по чверті ноти - - - - Synced to 8th Note - Синхро по 1/8 ноти - - - - Synced to 16th Note - Синхро по 1/16 ноти - - - - Synced to 32nd Note - Синхро по 1/32 ноти - - - - TimeDisplayWidget - - - click to change time units - натисніть для зміни одиниць часу - - - - MIN - ХВ - - - - SEC - С - - - - MSEC - МС - - - - BAR - БАР - - - - BEAT - БІТ - - - - TICK - ТІК - - - - 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. - Натисніть <%1>, щоб прибрати прилипання точок циклу. - - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - Зажміть <Shift> щоб змістити початок точок циклу; Натисніть <%1>, щоб прибрати прилипання точок циклу. - - - - Track - - - Mute - Тиша - - - - Solo - Соло - - - - TrackContainer - - - Couldn't import file - Не можу імпортувати файл - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - Не можу знайти фільтр для імпорту файла %1. -Для підключення цього файлу перетворіть його в формат, підтримуваний LMMS. - - - - Couldn't open file - Не можу відкрити файл - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - Не можу відкрити файл %1 для запису. -Перевірте, чи володієте ви правами на запис в обраний файл і каталог що його містить і спробуйте знову! - - - - Loading project... - Завантаження проекту ... - - - - - Cancel - Скасувати - - - - - Please wait... - Зачекайте будь-ласка ... - - - - Loading cancelled - Завантаження скасовано - - - - Project loading was cancelled. - Завантаження проекту скасовано. - - - - Loading Track %1 (%2/Total %3) - Завантаження треку %1 (%2/з %3) - - - - Importing MIDI-file... - Імпортую файл MIDI... - - - - TrackContentObject - - - Mute - Тиша - - - - TrackContentObjectView - - - 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) - - - - Delete (middle mousebutton) - Видалити (середня кнопка мишки) - - - - Cut - Вирізати - - - - Copy - Копіювати - - - - Paste - Вставити - - - - Mute/unmute (<%1> + middle click) - Заглушити/включити (<%1> + середня кнопка миші) - - - - TrackOperationsWidget - - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - Затисніть <%1> і натискайте мишку під час руху, щоб почати нову перезбірку. - - - - Actions for this track - Дії для цієї доріжки - - - - Mute - Тиша - - - - - Solo - Соло - - - - Mute this track - Відключити доріжку - - - - Clone this track - Клонувати доріжку - - - - Remove this track - Видалити доріжку - - - - Clear this track - Очистити цю доріжку - - - - FX %1: %2 - ЕФ %1: %2 - - - - Assign to new FX Channel - Призначити до нового каналу ефекту - - - - Turn all recording on - Включити все на запис - - - - Turn all recording off - Вимкнути всі записи - - - - TripleOscillatorView - - - Use phase modulation for modulating oscillator 1 with oscillator 2 - Модулювати фазу осциллятора 2 сигналом з 1 - - - - Use amplitude modulation for modulating oscillator 1 with oscillator 2 - Модулювати амплітуду осциллятора 2 сигналом з 1 - - - - Mix output of oscillator 1 & 2 - Змішати виходи 1 і 2 осцилляторів - - - - Synchronize oscillator 1 with oscillator 2 - Синхронізувати 1 осциллятор по 2 - - - - Use frequency modulation for modulating oscillator 1 with oscillator 2 - Модулювати частоту осциллятора 2 сигналом з 1 - - - - Use phase modulation for modulating oscillator 2 with oscillator 3 - Модулювати фазу осциллятора 3 сигналом з 2 - - - - Use amplitude modulation for modulating oscillator 2 with oscillator 3 - Модулювати амплітуду осциллятора 3 сигналом з 2 - - - - Mix output of oscillator 2 & 3 - Поєднати виходи осцилляторів 2 і 3 - - - - Synchronize oscillator 2 with oscillator 3 - Синхронізувати осциллятор 2 і 3 - - - - Use frequency modulation for modulating oscillator 2 with oscillator 3 - Модулювати частоту осциллятора 3 сигналом з 2 - - - - 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 між каналами, тобто різницю фаз між лівим і правим каналами. Це зручно для створення розширення стереоефектів. - - - - 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 - Зменшуючийся номер версії - - - - already exists. Do you want to replace it? - вже існує. Замінити його? - - - - 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. - Відкрити інший модуль VST. Після натискання на кнопку з'явиться стандартний діалог вибору файлу, де ви зможете вибрати потрібний модуль. - - - - 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 плагіна - - - - 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 не завантажений - - - - 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 - Управління VST плагіном через LMMS хост - - - - 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 плагіна. - - - - 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 /> - - - - 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 плагін ... - - - - WatsynInstrument - - - Volume A1 - Гучність A1 - - - - Volume A2 - Гучність A2 - - - - Volume B1 - Гучність B1 - - - - Volume B2 - Гучність B2 - - - - Panning A1 - Баланс A1 - - - - Panning A2 - Баланс A2 - - - - Panning B1 - Баланс B1 - - - - Panning B2 - Баланс B2 - - - - Freq. multiplier A1 - Множник частоти A1 - - - - Freq. multiplier A2 - Множник частоти A2 - - - - Freq. multiplier B1 - Множник частоти B1 - - - - Freq. multiplier B2 - Множник частоти B2 - - - - Left detune A1 - Ліве підстроювання A1 - - - - Left detune A2 - Ліве підстроювання A2 - - - - Left detune B1 - Ліве підстроювання B1 - - - - Left detune B2 - Ліве підстроювання B2 - - - - Right detune A1 - Праве підстроювання A1 - - - - Right detune A2 - Праве підстроювання A2 - - - - Right detune B1 - Праве підстроювання B1 - - - - Right detune B2 - Праве підстроювання B2 - - - - A-B Mix - A-B Мікс - - - - A-B Mix envelope amount - A-B Мікс кіл. обвідної - - - - A-B Mix envelope attack - A-B Мікс атаки обвідної - - - - A-B Mix envelope hold - A-B Мікс утримання обвідної - - - - A-B Mix envelope decay - A-B Мікс згасання обвідної - - - - A1-B2 Crosstalk - Перехресні перешкоди A1-B2 - - - - A2-A1 modulation - Модуляція A2-A1 - - - - B2-B1 modulation - Модуляція B2-B1 - - - - Selected graph - Обраний графік - - - - WatsynView - - - - - - Volume - Гучність - - - - - - - Panning - Баланс - - - - - - - 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 - - - - Ring-modulate A1 and A2 - Кільцева модуляція А1 і А2 - - - - Modulate phase of A1 with output of A2 - Модулювати фазу А1 виходом з А2 - - - - Mix output of B2 to B1 - Змішати виходи В2 до В1 - - - - Modulate amplitude of B1 with output of B2 - Модулювати амплітуду В1 виходом з В2 - - - - Ring-modulate B1 and B2 - Кільцева модуляція В1 і В2 - - - - Modulate phase of B1 with output of B2 - Модулювати фазу В1 виходом з В2 - - - - - - - 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 - Натисніть, щоб змістити фазу на -15 градусів - - - - Phase right - Фаза праворуч - - - - Click to 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 - Згенерувати трикутний сигнал - - - - Click for saw wave - Згенерувати зигзагоподібний сигнал - - - - Square wave - Квадратна хвиля - - - - Click for square wave - Згенерувати квадратний сигнал - - - - ZynAddSubFxInstrument - - - Portamento - Портаменто - - - - Filter Frequency - Фільтр Частот - - - - Filter Resonance - Фільтр резонансу - - - - Bandwidth - Ширина смуги - - - - FM Gain - Підсил FM - - - - Resonance Center Frequency - Частоти центру резонансу - - - - Resonance Bandwidth - Ширина смуги резонансу - - - - Forward MIDI Control Change Events - Переслати зміну подій MIDI управління - - - - ZynAddSubFxView - - - Portamento: - Портаменто: - - - - PORT - PORT - - - - Filter Frequency: - Фільтр частот: - - - - FREQ - FREQ - - - - Filter Resonance: - Фільтр резонансу: - - - - RES - RES - - - - Bandwidth: - Смуга пропускання: - - - - BW - BW - - - - FM Gain: - Підсилення частоти модуляції (FM): - - - - FM GAIN - FM 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 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 - - - Start frequency - Початкова частота - - - - End frequency - Кінцева частота - - - - Length - Довжина - - - - Distortion Start - Початкове спотворення - - - - Distortion End - Кінцеве спотворення - - - - 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: - Шум: - - - - 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. - У цьому вікні показана інформація про всі модулі LADSPA, які виявила LMMS. Вони розділені на п'ять категорій, залежно від назв і типів портів. - -Доступні ефекти - це ті, які можуть бути використані в LMMS. Щоб ефект LADSPA міг бути використаний, він повинен, по-перше, бути власне ефектом, т. б. мати як вхідні так і вихідні канали. LMMS в якості вхідного каналу сприймає аудіопорти, що містять у назві "in", а вихідні вгадує по підстрочці "out". Для використання в LMMS число вхідних каналів має збігатися з числом вихідних, і ефект повинен мати можливість використання в реальному часі. - -Недоступні ефекти - це модулі LADSPA, розпізнані як ефекти, однак або з незбіжною кількістю вхідних/вихідних каналів, або не призначені для використання в реальному часі. - -Інструменти - це модулі, у яких є тільки вихідні канали. - -Аналізатори - це модулі, що володіють лише вхідними каналами. - -Невідомі - модулі, у яких не було виявлено ні вхідних, ні вихідних каналів. - -Подвійне клацання лівою кнопкою миші по модулю дасть інформацію по його портах. - - - - Type: - Тип: - - - - ladspaDescription - - - Plugins - Модулі - - - - Description - Опис - - - - ladspaPortDialog - - - Ports - Порти - - - - Name - І'мя - - - - Rate - Частота вибірки - - - - Direction - Напрямок - - - - Type - Тип - - - - Min < Default < Max - Менше < Стандарт <Більше - - - - Logarithmic - Логарифмічний - - - - SR Dependent - Залежність від SR - - - - Audio - Аудіо - - - - Control - Управління - - - - Input - Ввід - - - - Output - Вивід - - - - Toggled - Увімкнено - - - - Integer - Ціле - - - - Float - Дробове - - - - - Yes - Так - - - - lb302Synth - - - VCF Cutoff Frequency - Частота зрізу VCF - - - - VCF Resonance - Посилення VCF - - - - VCF Envelope Mod - Модуляція обвідної VCF - - - - VCF Envelope Decay - Спад обвідної VCF - - - - Distortion - Спотворення - - - - Waveform - Форма хвилі - - - - Slide Decay - Зміщення згасання - - - - Slide - Зміщення - - - - Accent - Акцент - - - - Dead - Глухо - - - - 24dB/oct Filter - 24дБ/окт фільтр - - - - lb302SynthView - - - Cutoff Freq: - Частота зрізу: - - - - Resonance: - Резонанс: - - - - Env Mod: - Мод Обвідної: - - - - Decay: - Згасання: - - - - 303-es-que, 24dB/octave, 3 pole filter - 303-ій, 24дБ/октаву, 3-польний фільтр - - - - Slide Decay: - Зміщення згасання: - - - - DIST: - СПОТ: - - - - Saw wave - Зигзаг - - - - Click here for a saw-wave. - Згенерувати зигзаг. - - - - Triangle wave - Трикутна хвиля - - - - Click here for a triangle-wave. - Згенерувати трикутний сигнал. - - - - Square wave - Квадрат - - - - Click here for a square-wave. - Згенерувати квадратний сигнал. - - - - Rounded square wave - Хвиля округленого квадрату - - - - Click here for a square-wave with a rounded end. - Створити квадратну хвилю закруглену в кінці. - - - - Moog wave - Муг хвиля - - - - Click here for a moog-like wave. - Згенерувати хвилю схожу на муг. - - - - Sine wave - Синусоїда - - - - Click for a sine-wave. - Генерувати гармонійний (синусоїдальний) сигнал. - - - - - White noise wave - Білий шум - - - - Click here for an exponential wave. - Генерувати експонентний сигнал. - - - - Click here for white-noise. - Згенерувати білий шум. - - - - Bandlimited saw wave - Зигзаг хвиля з обмеженою смугою - - - - Click here for bandlimited saw wave. - Натисніть тут для пилкоподібної хвилі з обмеженою смугою. - - - - Bandlimited square wave - Квадратна хвиля з обмеженою смугою - - - - Click here for bandlimited square wave. - Натисніть тут для квадратної хвилі з обмеженою смугою. - - - - Bandlimited triangle wave - Трикутна хвиля з обмеженою смугою - - - - Click here for bandlimited triangle wave. - Натисніть тут для трикутної хвилі з обмеженою смугою. - - - - Bandlimited moog saw wave - Муг-зигзаг хвиля з обмеженою смугою - - - - Click here for bandlimited moog saw wave. - Натисніть тут для муг-зигзаг хвилі з обмеженою смугою. - - - - malletsInstrument - - - Hardness - Жорсткість - - - - Position - Положення - - - - Vibrato Gain - Посилення вібрато - - - - Vibrato Freq - Частота вібрато - - - - Stick Mix - Зведення рученят - - - - Modulator - Модулятор - - - - Crossfade - Перехід - - - - LFO Speed - Швидкість LFO - - - - LFO Depth - Глибина LFO - - - - ADSR - ADSR - - - - Pressure - Тиск - - - - Motion - Рух - - - - Speed - Швидкість - - - - Bowed - Нахил - - - - Spread - Розкид - - - - Marimba - Марімба - - - - Vibraphone - Віброфон - - - - Agogo - Дискотека - - - - Wood1 - Дерево1 - - - - Reso - Ресо - - - - Wood2 - Дерево2 - - - - Beats - Удари - - - - Two Fixed - Два фіксованих - - - - Clump - Важка хода - - - - Tubular Bells - Трубні дзвони - - - - Uniform Bar - Рівномірні смуги - - - - Tuned Bar - Підстроєні смуги - - - - Glass - Скло - - - - Tibetan Bowl - Тибетські кулі - - - - malletsInstrumentView - - - Instrument - Інструмент - - - - Spread - Розкид - - - - Spread: - Розкид: - - - - Missing files - Відсутні файли - - - - Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Схоже, що встановлені не всі пакети Stk. Вам слід це перевірити! - - - - Hardness - Жорсткість - - - - Hardness: - Жорсткість: - - - - Position - Положення - - - - Position: - Положення: - - - - 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 - - - - ADSR: - ADSR: - - - - Pressure - Тиск - - - - Pressure: - Тиск: - - - - Speed - Швидкість - - - - Speed: - Швидкість: - - - - manageVSTEffectView - - - - VST parameter 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 effect knob-controller window. - Закрити вікно управління регуляторами VST плагіна. - - - - 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 - ОП 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 - - - 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 - - - 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 - - + 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 Рідний фланжер плагін - - 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 (ТМ) - + + 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 в проект ЛММС + + + + 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. - - Graphical spectrum analyzer plugin - Плагін графічного аналізу спектру + + 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 - Mathematical expression parser + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat - 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. - soundfont %1 не вдається завантажити. + + Audio: + + + + + Fixed-Size Buffer + + + + + Force Stereo (needs reload) + + + + + MIDI: + + + + + Map Program Changes + + + + + Send Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + + + + + Save State + + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + Тип: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + - sf2InstrumentView + PluginFactory - - Open other SoundFont file - Відкрити інший файл SoundFront + + Plugin not found. + Модуль не знайдено. - - 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) + + LMMS plugin %1 does not have a plugin descriptor named %2! + LMMS плагін %1 не має опису плагіна з ім'ям %2! - sfxrInstrument + PluginListDialog - - Wave Form - Форма хвилі + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + - sidInstrument + PluginParameter - - Cutoff - Зріз + + Form + - - Resonance - Підсилення + + Parameter Name + - - Filter type - Тип фільтру + + TextLabel + - - Voice 3 off - Голос 3 відкл - - - - Volume - Гучність - - - - Chip model - Модель чіпа + + ... + - sidInstrumentView + PluginRefreshDialog - - Volume: - Гучність: + + Plugin Refresh + - - Resonance: - Підсилення: + + Search for: + - - - Cutoff frequency: - Частота зрізу: + + All plugins, ignoring cache + - - High-Pass filter - Вис.ЧФ + + Updated plugins only + - - Band-Pass filter - Серед.ЧФ + + Check previously invalid plugins + - - Low-Pass filter - Низ.ЧФ + + Press 'Scan' to begin the search + - - Voice3 Off - Голос 3 відкл + + Scan + - - MOS6581 SID - MOS6581 SID + + >> Skip + - - MOS8580 SID - MOS8580 SID - - - - - Attack: - Вступ: - - - - Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - Тривалість вступу визначає, наскільки швидко гучність %1-го голосу зростає від нуля до максимального значення. - - - - - 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-й осциллятор видає нульовий сигнал (поки прапорець не зніметься). + + Close + - stereoEnhancerControlDialog + PluginWidget - - WIDE - ШИРШЕ + + + + + + Frame + - - Width: - Ширина: + + Enable + + + + + On/Off + Увімк/Вимк + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + - stereoEnhancerControls + ProjectRenderer - - Width - Ширина + + WAV (*.wav) + + + + + FLAC (*.flac) + + + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + - stereoMatrixControlDialog + QGroupBox - - Left to Left Vol: - Від лівого на лівий: - - - - Left to Right Vol: - Від лівого на правий: - - - - Right to Left Vol: - Від правого на лівий: - - - - Right to Right Vol: - Від правого на правий: + + + Settings for %1 + - stereoMatrixControls + QObject - - Left to Left - Від лівого на лівий + + Reload Plugin + - - Left to Right - Від лівого на правий + + Show GUI + Показати інтерфейс - - Right to Left - Від правого на лівий + + Help + Довідка - - Right to Right - Від правого на правий + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + - vestigeInstrument + QWidget - - Loading plugin - Завантаження модуля + + + Name: + І'мя: - - Please wait while loading VST-plugin... - Будь ласка зачекайте поки завантажеться модуль VST... + + Maker: + Розробник: + + + + Copyright: + Авторське право: + + + + Requires Real Time: + Потрібна обробка в реальному часі: + + + + + + Yes + Так + + + + + + No + Ні + + + + Real Time Capable: + Робота в реальному часі: + + + + In Place Broken: + Замість зламаного: + + + + Channels In: + Канали в: + + + + Channels Out: + Канали з: + + + + File: %1 + Файл: %1 + + + + File: + Файл: - vibed + XYControllerW - - String %1 volume - Гучність %1-й струни + + XY Controller + - - String %1 stiffness - Жорсткість %1-й струни + + X Controls: + - - Pick %1 position - Лад %1 + + Y Controls: + - - Pickup %1 position - Положення %1-го звукознімача - - - - Pan %1 - Бал %1 - - - - Detune %1 - Підстроювання %1 - - - - Fuzziness %1 - Нечіткість %1 - - - - Length %1 - Довжина %1 - - - - Impulse %1 - Імпульс %1 - - - - Octave %1 - Октава %1 - - - - vibedView - - - 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' встановлює місце струни, звідки буде зніматися звук. Чим нижче значення, тим ближче це місце буде до мосту. - - - - 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. - Перемикач "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. - Натисніть, щоб увімкнути/вимкнути сигнал. - - - - 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 - Білий шум - - - - Use white-noise for current oscillator. - Генерувати білий шум. - - - - User defined wave - Користувацька - - - - Use a user-defined waveform for current oscillator. - Задати форму сигналу. - - - + Smooth - Згладити + - - Click here to smooth waveform. - Клацніть щоб згладити форму сигналу. + + &Settings + - + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + + + + + lmms::AudioFileProcessor + + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + Normalize - Нормалізувати - - - - Click here to normalize waveform. - Натисніть, щоб нормалізувати сигнал. + - voiceObject + lmms::BitcrushControls - - Voice %1 pulse width - Голос %1 довжина сигналу - - - - Voice %1 attack - Вступ %1-го голосу - - - - Voice %1 decay - Згасання %1-го голосу - - - - Voice %1 sustain - Витримка для %1-го голосу - - - - Voice %1 release - Зменшення %1-го голосу - - - - Voice %1 coarse detuning - Підналаштування %1-голосу (грубо) - - - - Voice %1 wave shape - Форма сигналу для %1-го голосу - - - - Voice %1 sync - Синхронізація %1-го голосу - - - - Voice %1 ring modulate - Голос %1 кільцевий модулятор - - - - Voice %1 filtered - Фільтрований %1-й голос - - - - Voice %1 test - Голос %1 тест - - - - waveShaperControlDialog - - - INPUT - ВХІД - - - - Input gain: - Вхідне підсилення: - - - - OUTPUT - ВИХІД - - - - Output gain: - Вихідне підсилення: - - - - Reset waveform - Скидання сигналу - - - - Click here to reset the wavegraph back to default - Натисніть тут, щоб скинути граф хвилі назад за замовчуванням - - - - Smooth waveform - Згладжений сигнал - - - - Click here to apply smoothing to wavegraph - Натисніть тут, щоб застосувати згладжування графа хвилі - - - - 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дБ - - - - waveShaperControls - - + Input gain - Вхідне підсилення + - + + Input noise + + + + Output gain - Вихідне підсилення + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + - + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + + + + + Output gain + + + + + Attack time + + + + + Release time + + + + + Stereo mode + + + + + lmms::Effect + + + Effect enabled + + + + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + + + + + First note + + + + + Last note + + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + + + + + Instrument browser + + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + + Project Notes + + + + + Enter project notes here + + + + + Edit Actions + + + + + &Undo + + + + + %1+Z + + + + + &Redo + + + + + %1+Y + + + + + &Copy + + + + + %1+C + + + + + Cu&t + + + + + %1+X + + + + + &Paste + + + + + %1+V + + + + + Format Actions + + + + + &Bold + + + + + %1+B + + + + + &Italic + + + + + %1+I + + + + + &Underline + + + + + %1+U + + + + + &Left + + + + + %1+L + + + + + C&enter + + + + + %1+E + + + + + &Right + + + + + %1+R + + + + + &Justify + + + + + %1+J + + + + + &Color... + + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + + + + + lmms::gui::RenameDialog + + + Rename... + + + + + lmms::gui::ReverbSCControlDialog + + + Input + + + + + Input gain: + + + + + Size + + + + + Size: + + + + + Color + + + + + Color: + + + + + Output + + + + + Output gain: + + + + + lmms::gui::SaControlsDialog + + + Pause + + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + + + + + Reverse sample + + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + + + + + Track volume + + + + + Channel volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + %1: %2 + + + + + lmms::gui::SampleTrackWindow + + + Sample volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Mixer channel + + + + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + + Display volume as dBFS + + + + + Enable tooltips + + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + + + + + LMMS working directory + + + + + VST plugins directory + + + + + LADSPA plugins directories + + + + + SF2 directory + + + + + Default SF2 + + + + + GIG directory + + + + + Theme directory + + + + + Background artwork + + + + + Some changes require restarting. + + + + + OK + + + + + Cancel + + + + + minutes + + + + + minute + + + + + Disabled + + + + + Autosave interval: %1 + + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + + + + + Choose patch + + + + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + + + + + lmms::gui::SidInstrumentView + + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + + Could not open file + + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + + + + + + + Global transposition + + + + + 1/%1 Bar + + + + + %1 Bars + + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + + + + + Play song (Space) + + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + + + + + Track actions + + + + + Add pattern-track + + + + + Add sample-track + + + + + Add automation-track + + + + + Edit actions + + + + + Draw mode + + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + + Zoom controls + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + + + + + Maximize + + + + + Restore + + + + + lmms::gui::TapTempoView + + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TempoSyncKnob + + + + Tempo Sync + + + + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + + MIN + + + + + SEC + + + + + MSEC + + + + + BAR + + + + + BEAT + + + + + TICK + + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + + + + + + Solo + + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + + + + + Clone this track + + + + + Remove this track + + + + + Clear this track + + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + + + + + Osc %1 fine detuning left: + + + + + + cents + + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + + + + + already exists. Do you want to replace it? + + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Save preset + + + + + Next (+) + + + + + Show/hide GUI + + + + + Turn off all notes + + + + + DLL-files (*.dll) + + + + + EXE-files (*.exe) + + + + + SO-files (*.so) + + + + + No VST plugin loaded + + + + + Preset + + + + + by + + + + + - VST plugin control + + + + + lmms::gui::VibedView + + + Enable waveform + + + + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + + + + + Control VST plugin from LMMS host + + + + + Open VST plugin preset + + + + + Previous (-) + + + + + Next (+) + + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + + lmms::gui::WatsynView + + + + + + Volume + + + + + + + + Panning + + + + + + + + Freq. multiplier + + + + + + + + Left detune + + + + + + + + + + + + cents + + + + + + + + Right detune + + + + + A-B Mix + + + + + Mix envelope amount + + + + + Mix envelope attack + + + + + Mix envelope hold + + + + + Mix envelope decay + + + + + Crosstalk + + + + + Select oscillator A1 + + + + + Select oscillator A2 + + + + + Select oscillator B1 + + + + + Select oscillator B2 + + + + + Mix output of A2 to A1 + + + + + Modulate amplitude of A1 by output of A2 + + + + + Ring modulate A1 and A2 + + + + + Modulate phase of A1 by output of A2 + + + + + Mix output of B2 to B1 + + + + + Modulate amplitude of B1 by output of B2 + + + + + Ring modulate B1 and B2 + + + + + Modulate phase of B1 by output of B2 + + + + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Load waveform + + + + + Load a waveform from a sample file + + + + + Phase left + + + + + Shift phase by -15 degrees + + + + + Phase right + + + + + Shift phase by +15 degrees + + + + + + Normalize + + + + + + Invert + + + + + + Smooth + + + + + + Sine wave + + + + + + + Triangle wave + + + + + Saw wave + + + + + + Square wave + + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB + + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + + + + + + Sine wave + + + + + + Moog-saw wave + + + + + + Exponential wave + + + + + + Saw wave + + + + + + User-defined wave + + + + + + Triangle wave + + + + + + Square wave + + + + + + White noise + + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + + + + \ No newline at end of file diff --git a/data/locale/zh_CN.ts b/data/locale/zh_CN.ts index b369f8445..fe16e0c0c 100644 --- a/data/locale/zh_CN.ts +++ b/data/locale/zh_CN.ts @@ -1,33 +1,64 @@ - + 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,10248 +66,18988 @@ 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 + 许可证 + + + + AboutJuceDialog + + + About JUCE + 关于 JUCE + + + + <b>About JUCE</b> + <b>关于 JUCE</b> + + + + This program uses JUCE version 3.x.x. + 本程序使用 JUCE 3.x.x 版本。 + + + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. + JUCE 是一个开源的跨平台 C++ 应用程序框架,用于创建高质量的桌面和移动应用程序。 + +JUCE 的核心模块(juce_audio_basics、juce_audio_devices、juce_core 和 juce_events)采用 ISC 许可证的许可条款。 +其他模块采用 GNU GPL 3.0 许可证。 + +版权所有 (C) 2022 Raw Material Software Limited. + + + + This program uses JUCE version + 本程序使用的JUCE版本为 + + + + AudioDeviceSetupWidget + + + [System Default] + + + + + CarlaAboutW + + + About Carla + 关于 Carla + + + + About + 关于 + + + + About text here + 说明文字 + + + + Extended licensing here + 使用许可补充 + + + + Artwork + 美工 + + + + Using KDE Oxygen icon set, designed by Oxygen Team. + 使用由 Oxygen 团队设计的 KDE Oxygen 图标集。 + + + + Contains some knobs, backgrounds and other small artwork from Calf Studio Gear, OpenAV and OpenOctave projects. + 包含 Calf Studio Gear、OpenAV 和 OpenOctave 项目中的一些旋钮、背景和其他小型艺术品。 + + + + VST is a trademark of Steinberg Media Technologies GmbH. + VST 是 Steinberg Media Technologies GmbH 的商标。 + + + + Special thanks to António Saraiva for a few extra icons and artwork! + 特别感谢 António Saraiva 提供了一些额外的图标和美工设计! + + + + The LV2 logo has been designed by Thorsten Wilms, based on a concept from Peter Shorthose. + LV2 徽标由 Thorsten Wilms 根据 Peter Shorthose 的概念设计而成。 + + + + MIDI Keyboard designed by Thorsten Wilms. + MIDI 键盘由 Thorsten Wilms 设计。 + + + + Carla, Carla-Control and Patchbay icons designed by DoosC. + Carla、Carla-Control 和 Patchbay 图标由 DoosC 设计。 + + + + Features + 特性 + + + + AU/AudioUnit: + AU/AudioUnit: + + + + LADSPA: + LADSPA: + + + + + + + + + + + TextLabel + 文本标签 + + + + VST2: + VST2: + + + + DSSI: + DSSI: + + + + LV2: + LV2: + + + + VST3: + VST3: + + + + OSC + 远程控制 + + + + Host URLs: + 主机 URL: + + + + Valid commands: + 可用命令: + + + + valid osc commands here + 可用的远程控制命令在这里 + + + + Example: + 例如: + + + 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: - 右增益: - - - - 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. - 如果想打开另一个音频文件,请点击这里。接着会出现文件选择对话框。诸如环回模式(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. - - - 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)之间播放。 - - - 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)之间来回播放。 - - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. - 调节此旋钮,以告诉 AudioFileProcessor 在哪里开始播放。 - - - 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: - 采样长度: - - - - AudioJack - - JACK client restarted - JACK客户端已重启 - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS由于某些原因与JACK断开连接,这可能是因为LMMS的JACK后端重启导致的,你需要手动重新连接。 - - - JACK server down - JACK服务崩溃 - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - JACK服务好像崩溃了而且未能正常启动,LMMS不能正常工作,你需要保存你的工作然后重启JACK和LMMS。 - - - CLIENT-NAME - 客户端名称 - - - CHANNELS - 通道数 - - - - AudioOss::setupWidget - - DEVICE - 设备 - - - CHANNELS - 声道数 - - - - AudioPortAudio::setupWidget - - BACKEND - 后端 - - - DEVICE - 设备 - - - - AudioPulseAudio::setupWidget - - DEVICE - 设备 - - - CHANNELS - 声道数 - - - - AudioSdl::setupWidget - - DEVICE - 设备 - - - - AudioSndio::setupWidget - - DEVICE - 设备 - - - CHANNELS - 通道数 - - - - AudioSoundIo::setupWidget - - BACKEND - 后端 - - - DEVICE - 设备 - - - - AutomatableModel - - &Reset (%1%2) - 重置(%1%2)(&R) - - - &Copy value (%1%2) - 复制值(%1%2)(&C) - - - &Paste value (%1%2) - 粘贴值(%1%2)(&P) - - - 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 - 删除所有已连接的控制器 - - - - AutomationEditor - - Please open an automation pattern with the context menu of a control! - 请使用控制的上下文菜单打开一个自动控制样式! - - - Values copied - 值已复制 - - - All selected values were copied to the clipboard. - 所有选中的值已复制。 - - - - AutomationEditorWindow - - Play/pause current pattern (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) - 绘制模式 (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 - 编辑功能 - - - Interpolation controls - 补间控制 - - - Timeline controls - 时间线控制 - - - Zoom controls - 缩放控制 - - - 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. + + 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 - - - AutomationPattern - Drag a control while pressing <%1> - 按住<%1>拖动控制器 + + Plugin Version + 插件版本 + + + + <br>Version %1<br>Carla is a fully-featured audio plugin host%2.<br><br>Copyright (C) 2011-2019 falkTX<br> + + + + + + (Engine not running) + (引擎未运行) + + + + Everything! (Including LRDF) + + + + + Everything! (Including CustomData/Chunks) + + + + + About 110&#37; complete (using custom extensions)<br/>Implemented Feature/Extensions:<ul><li>http://lv2plug.in/ns/ext/atom</li><li>http://lv2plug.in/ns/ext/buf-size</li><li>http://lv2plug.in/ns/ext/data-access</li><li>http://lv2plug.in/ns/ext/event</li><li>http://lv2plug.in/ns/ext/instance-access</li><li>http://lv2plug.in/ns/ext/log</li><li>http://lv2plug.in/ns/ext/midi</li><li>http://lv2plug.in/ns/ext/options</li><li>http://lv2plug.in/ns/ext/parameters</li><li>http://lv2plug.in/ns/ext/port-props</li><li>http://lv2plug.in/ns/ext/presets</li><li>http://lv2plug.in/ns/ext/resize-port</li><li>http://lv2plug.in/ns/ext/state</li><li>http://lv2plug.in/ns/ext/time</li><li>http://lv2plug.in/ns/ext/uri-map</li><li>http://lv2plug.in/ns/ext/urid</li><li>http://lv2plug.in/ns/ext/worker</li><li>http://lv2plug.in/ns/extensions/ui</li><li>http://lv2plug.in/ns/extensions/units</li><li>http://home.gna.org/lv2dynparam/rtmempool/v1</li><li>http://kxstudio.sf.net/ns/lv2ext/external-ui</li><li>http://kxstudio.sf.net/ns/lv2ext/programs</li><li>http://kxstudio.sf.net/ns/lv2ext/props</li><li>http://kxstudio.sf.net/ns/lv2ext/rtmempool</li><li>http://ll-plugins.nongnu.org/lv2/ext/midimap</li><li>http://ll-plugins.nongnu.org/lv2/ext/miditype</li></ul> + + + + + + + Using Juce host + 使用 Juce 宿主 + + + + About 85% complete (missing vst bank/presets and some minor stuff) + 大约完成 85% (缺少 VST 库/预设以及一些小东西) - AutomationPatternView + CarlaHostW - Open in Automation editor - 在自动编辑器(Automation editor)中打开 + + MainWindow + 主窗口 - Clear + + Rack + 机架 + + + + Patchbay + + + + + Logs + 日志 + + + + Loading... + 载入中... + + + + Save + 保存 + + + + Clear 清除 - Reset name - 重置名称 + + Ctrl+L + Ctrl+L - Change name - 修改名称 - - - %1 Connections - %1个连接 - - - Disconnect "%1" - 断开“%1”的连接 - - - Set/clear record - 设置/清除录制 - - - Flip Vertically (Visible) - 垂直翻转 (可见) - - - Flip Horizontally (Visible) - 水平翻转 (可见) - - - Model is already connected to this pattern. - 模型已连接到此片段。 - - - - AutomationTrack - - Automation track - 自动控制轨道 - - - - BBEditor - - 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 sample-track - 添加采样轨道 - - - - BBTCOView - - Open in Beat+Bassline-Editor - 在节拍+Bassline编辑器中打开 - - - Reset name - 重置名称 - - - Change name - 修改名称 - - - Change color - 改变颜色 - - - Reset color to default - 重置颜色 - - - - BBTrack - - Beat/Bassline %1 - 节拍/Bassline %1 - - - Clone of %1 - %1 的副本 - - - - BassBoosterControlDialog - - FREQ - 频率 - - - Frequency: - 频率: - - - GAIN - 增益 - - - Gain: - 增益: - - - RATIO - 比率 - - - Ratio: - 比率: - - - - BassBoosterControls - - Frequency - 频率 - - - Gain - 增益 - - - Ratio - 比率 - - - - BitcrushControlDialog - - IN - 输入 - - - OUT - 输出 - - - GAIN - 增益 - - - Input Gain: - 输入增益: - - - Input Noise: - 输入噪音: - - - Output Gain: - 输出增益: - - - CLIP - 压限 - - - Output Clip: - 输出压限: - - - Rate Enabled + + Auto-Scroll - Enable samplerate-crushing - 启用采样率破坏 + + Buffer Size: + 缓冲区大小: - Depth Enabled - 深度已启用 - - - Enable bitdepth-crushing - 启用位深破坏 - - - Sample rate: + + Sample Rate: 采样率: - Stereo difference: - 双声道差异: + + ? Xruns + ? Xruns - Levels: - 级别: + + DSP Load: %p% + DSP 负载:%p% - NOISE - 噪音 + + &File + 文件 (&F) - FREQ - 频率 + + &Engine + 引擎 (&E) - STEREO - + + &Plugin + 插件 (&P) - QUANT - + + Macros (all plugins) + 宏 (所有插件) - - - CaptionMenu + + &Canvas + 画布 (&C) + + + + Zoom + 缩放 + + + + &Settings + 设置 (&S) + + + &Help - 帮助(&H) + 帮助 (&H) - Help (not available) - 帮助(不可用) + + Tool Bar + 工具栏 - - - CarlaInstrumentView - Show GUI - 显示图形界面 + + Disk + 磁盘 - Click here to show or hide the graphical user interface (GUI) of Carla. - 点击此处可以显示或隐藏 Carla 的图形界面。 + + + Home + Home - - - Controller - Controller %1 - 控制器%1 + + Transport + 走带 - - - ControllerConnectionDialog - Connection Settings - 连接设置 + + Playback Controls + 回放控制 - MIDI CONTROLLER - MIDI控制器 + + Time Information + 时间信息 - Input channel - 输入通道 + + Frame: + 帧: - CHANNEL - 通道 - - - Input controller - 输入控制器 - - - CONTROLLER - 控制器 - - - Auto Detect - 自动检测 - - - MIDI-devices to receive MIDI-events from - 用来接收 MIDI 事件的MIDI 设备 - - - USER CONTROLLER - 用户控制器 - - - MAPPING FUNCTION - 映射函数 - - - OK - 确定 - - - Cancel - 取消 - - - LMMS - LMMS - - - Cycle Detected. - 检测到环路。 - - - - ControllerRackView - - Controller Rack - 控制器机架 - - - Add - 增加 - - - Confirm Delete - 删除前确认 - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - 确定要删除吗?此控制器仍处于被连接状态。此操作不可撤销。 - - - - ControllerView - - Controls - 控制器 - - - 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 controller - 删除此控制器(&R) - - - Re&name this controller - 重命名控制器(&N) - - - LFO - LFO - - - - CrossoverEQControlDialog - - Band 1/2 Crossover: - - - - Band 2/3 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 - - - - Mute Band 2 - - - - Band 3 Mute - - - - Mute Band 3 - - - - Band 4 Mute - - - - Mute Band 4 - - - - - DelayControls - - Delay Samples - 延迟采样 - - - Feedback - 反馈 - - - Lfo Frequency - Lfo 频率 - - - Lfo Amount - Lfo 数量 - - - Output gain - 输出增益 - - - - DelayControlsDialog - - Lfo Amt - Lfo 数量 - - - Delay Time - 延迟时间 - - - Feedback Amount - 反馈数量 - - - Lfo - Lfo - - - Out Gain - 输出增益 - - - Gain - 增益 - - - DELAY - 延迟 - - - FDBK - 反馈 - - - RATE - - - - AMNT - 数量 - - - - 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 - 混合 - - - - DualFilterControls - - Filter 1 enabled - 过滤器1 已启用 - - - Filter 1 type - 过滤器 1 类型 - - - Cutoff 1 frequency - 滤波器 1 截频 - - - Q/Resonance 1 - 滤波器 1 Q值 - - - Gain 1 - 增益 1 - - - Mix - 混合 - - - Filter 2 enabled - 已启用过滤器 2 - - - Filter 2 type - 过滤器 1 类型 {2 ?} - - - Cutoff 2 frequency - 滤波器 2 截频 - - - Q/Resonance 2 - 滤波器 2 Q值 - - - Gain 2 - 增益 2 - - - LowPass - 低通 - - - HiPass - 高通 - - - BandPass csg - 带通 csg - - - BandPass czpg - 带通 czpg - - - Notch - 凹口滤波器 - - - Allpass - 全通 - - - Moog - Moog - - - 2x LowPass - 2 个低通串联 - - - RC LowPass 12dB - RC 低通(12dB) - - - RC BandPass 12dB - RC 带通(12dB) - - - RC HighPass 12dB - RC 高通(12dB) - - - RC LowPass 24dB - RC 低通(24dB) - - - RC BandPass 24dB - RC 带通(24dB) - - - RC HighPass 24dB - RC 高通(24dB) - - - Vocal Formant Filter - 人声移除过滤器 - - - 2x Moog - 2x Moog - - - SV LowPass - SV 低通 - - - SV BandPass - SV 带通 - - - SV HighPass - SV 高通 - - - SV Notch - SV Notch - - - Fast Formant - 快速共振峰(Formant) - - - Tripole - Tripole - - - - Editor - - Play (Space) - 播放(空格) - - - Stop (Space) - 停止(空格) - - - Record - 录音 - - - Record while playing - 播放时录音 - - - Transport controls - - - - - Effect - - Effect enabled - 启用效果器 - - - Wet/Dry mix - 干/湿混合 - - - Gate - 门限 - - - Decay - 衰减 - - - - EffectChain - - Effects enabled - 启用效果器 - - - - EffectRackView - - EFFECTS CHAIN - 效果器链 - - - Add effect - 增加效果器 - - - - EffectSelectDialog - - Add effect - 增加效果器 - - - Name - 名称 - - - Type - 类型 - - - Description - 描述 - - - Author - 作者 - - - - 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 - 衰减 + + 000'000'000 + 000'000'000 + 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占用率但是可能导致延迟或混响产生撕裂。 + + 00:00:00 + 00:00:00 - GATE - 门限 + + BBT: + BBT: - Gate: - 门限: + + 000|00|0000 + 000|00|0000 - The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - 门限旋钮设置自动静音时,被认为是静音的信号幅度。 + + Settings + 设置 - Controls - 控制 + + BPM + BPM - 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. + + Use JACK Transport + 使用 JACK 走带 + + + + Use Ableton Link + 使用 Ableton 连接 + + + + &New + 新建 (&N) + + + + Ctrl+N + Ctrl+N + + + + &Open... + 打开 (&O)... + + + + + Open... + 打开... + + + + Ctrl+O + Ctrl+O + + + + &Save + 保存 (&S) + + + + Ctrl+S + Ctrl+S + + + + Save &As... + 另存为 (&A)... + + + + + Save As... + 另存为... + + + + Ctrl+Shift+S + Ctrl+Shift+S + + + + &Quit + 退出 (&Q) + + + + Ctrl+Q + Ctrl+Q + + + + &Start + 启动 (&S) + + + + F5 + F5 + + + + St&op + 停止 (&O) + + + + F6 + F6 + + + + &Add Plugin... + 新增插件 (&A)... + + + + Ctrl+A + Ctrl+A + + + + &Remove All + 删除全部 (&R) + + + + Enable + 启用 + + + + Disable + 禁用 + + + + 0% Wet (Bypass) - Move &up - 向上移(&U) + + 100% Wet + - Move &down - 向下移(&D) + + 0% Volume (Mute) + 0% 音量 (静音) - &Remove this plugin - 移除此插件(&R) + + 100% Volume + 100% 音量 + + + + Center Balance + + + + + &Play + 播放 (&P) + + + + Ctrl+Shift+P + Ctrl+Shift+P + + + + &Stop + 停止 (&S) + + + + Ctrl+Shift+X + Ctrl+Shift+X + + + + &Backwards + 倒带 (&B) + + + + Ctrl+Shift+B + Ctrl+Shift+B + + + + &Forwards + 快进 (&F) + + + + Ctrl+Shift+F + Ctrl+Shift+F + + + + &Arrange + 编排 (&A) + + + + Ctrl+G + Ctrl+G + + + + + &Refresh + 刷新 (&R) + + + + Ctrl+R + Ctrl+R + + + + Save &Image... + 保存图像 (&I)... + + + + Auto-Fit + 自动调整 + + + + Zoom In + 放大 + + + + Ctrl++ + Ctrl++ + + + + Zoom Out + 缩小 + + + + Ctrl+- + Ctrl+- + + + + Zoom 100% + 100% 缩放 + + + + Ctrl+1 + Ctrl+1 + + + + Show &Toolbar + 显示工具栏 (&T) + + + + &Configure Carla + 配置 Carla (&C) + + + + &About + 关于 (&A) + + + + About &JUCE + 关于 JUCE (&J) + + + + About &Qt + 关于 Qt (&Q) + + + + Show Canvas &Meters + + + + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + 显示时间面板 + + + + Show &Side Panel + 显示侧边面板 (&S) + + + + Ctrl+P + Ctrl+P + + + + &Connect... + 连接 (&C)... + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + 添加 JACK 应用程序 (&J)... + + + + &Configure driver... + 配置驱动程序 (&C)... + + + + Panic + 恐慌 + + + + Open custom driver panel... + 打开自定义驱动面板... + + + + Save Image... (2x zoom) + 保存图像... (2 倍缩放) + + + + Save Image... (4x zoom) + 保存图像... (4 倍缩放) + + + + Copy as Image to Clipboard + 复制图像到剪贴板 + + + + Ctrl+Shift+C + Ctrl+Shift+C - EnvelopeAndLfoParameters + CarlaHostWindow - Predelay - 预延迟 + + Export as... + 导出为... - Attack - 打进声 + + + + + Error + 错误 - Hold - 保持 + + Failed to load project + 无法加载工程 - Decay - 衰减 + + Failed to save project + 无法保存工程 - Sustain - 持续 + + Quit + 退出 - Release - 释放 + + Are you sure you want to quit Carla? + 你确定要退出 Carla 吗? - Modulation - 调制 + + Could not connect to Audio backend '%1', possible reasons: +%2 + 无法连接到音频后端 “%1”,可能的原因是: +%2 - LFO Predelay - LFO 预延迟 + + Could not connect to Audio backend '%1' + 无法连接到音频后端 “%1” - LFO Attack - LFO 打进声(attack) + + Warning + 警告 - LFO speed - LFO 速度 - - - LFO Modulation - LFO 调制 - - - LFO Wave Shape - LFO 波形形状 - - - Freq x 100 - 频率 x 100 - - - Modulate Env-Amount - 调制所有包络 + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? + 现在仍有已加载插件,要停止引擎需要移除它们。 +要这样做吗? - EnvelopeAndLfoView + CarlaSettingsW - DEL - DEL + + Settings + 设置 - Predelay: - 预延迟: + + main + 主要 - Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - 使用预延迟旋钮设定此包络的预延迟,较大的值会加长包络开始的时间。 + + canvas + 画布 - ATT - 打击 + + engine + 引擎 - Attack: - 打击声: + + osc + 远程控制 - 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. - 使用起音旋钮设定此包络的起音时间,较大的值会让包络达到起音值的时间增加。为钢琴等乐器选择小值而弦乐选择大值。 + + file-paths + 文件路径 - HOLD - 持续 + + plugin-paths + 插件路径 - Hold: - 持续: + + wine + Wine - 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. - 使用持续旋钮设定此包络的持续时间。较大的值会在它衰减到持续值时,保持包络在起音值更久。 + + experimental + 实验性 - DEC - 衰减 + + Widget + 小组件 - Decay: - 衰减: + + + Main + 主要 - 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. - 使用衰减旋钮设定此包络的衰减值。较大的值会延长包络从起音值衰减到持续值的时间。为钢琴等乐器选择一个小值。 + + + Canvas + 画布 - SUST - 持续 + + + Engine + 引擎 - Sustain: - 持续: + + File Paths + 文件路径 - 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. - 使用持续旋钮设置此包络的持续值,较大的值会增加释放前,包络在此保持的值。 + + Plugin Paths + 插件路径 - REL - 释音 + + Wine + Wine - Release: - 释音: + + + Experimental + 实验性 - 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. - 使用释音旋钮设定此包络的释音时间,较大值会增加包络衰减到零的时间。为弦乐等乐器选择一个大值。 + + <b>Main</b> + <b>主要 </b> - AMT - 数量 + + Paths + 路径 - Modulation amount: - 调制量: + + Default project folder: + 默认工程目录: - 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对此包络的调制量,较大的值会对此包络控制的值(如音量或截频)影响更大。 + + Interface + - LFO predelay: - LFO 预延迟: + + Use "Classic" as default rack skin + 使用“经典”作为机架默认皮肤 - 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开始生效前的时间约长。 + + Interface refresh interval: + - LFO- attack: - LFO 打击声 (attack): + + + ms + 毫秒 - 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逐渐增至最大振幅所需时间越长。 + + Show console output in Logs tab (needs engine restart) + - SPD - 速度 + + Show a confirmation dialog before quitting + - LFO speed: - LFO 速度: + + + Theme + 主题 - 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 Carla "PRO" theme (needs restart) + 使用 Carla “专业版”主题 (需要重启) - 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 的调制量,较大的值会所选值(如音量或截频)影响更大。 + + Color scheme: + 颜色方案: - Click here for a sine-wave. - 点击这里使用正弦波。 + + Black + 黑色 - Click here for a triangle-wave. - 点击这里使用三角波。 + + System + 系统 - Click here for a saw-wave for current. - 点击这里使用锯齿波。 + + Enable experimental features + 启用实验性特性 - Click here for a square-wave. - 点击这里使用方波。 + + <b>Canvas</b> + <b>画布</b> - Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - 单击此处可设置自定义波形,单击后拖拽相应的波形采样文件至LFO图像处。 + + Bezier Lines + - FREQ x 100 - 频率 x 100 + + Theme: + 主题: - Click here if the frequency of this LFO should be multiplied by 100. - 如果此 LFO 频率需要乘以 100 倍,请点击这里。 + + Size: + 大小: - multiply LFO-frequency by 100 - 将 LFO 频率扩大 100 倍 + + 775x600 + 775x600 - MODULATE ENV-AMOUNT - 调制包络量 + + 1550x1200 + 1550x1200 - Click here to make the envelope-amount controlled by this LFO. - 点击此处使包络数量由此 LFO 控制。 + + 3100x2400 + 3100x2400 - control envelope-amount by this LFO - 控制此 LFO 的包络数量 + + 4650x3600 + 4650x3600 - ms/LFO: - ms/LFO: + + 6200x4800 + 6200x4800 - Hint - 提示 + + 12400x9600 + 12400x9600 - Drag a sample from somewhere and drop it in this window. - 从别处拖动采样到此窗口。 + + Options + 选项 - Click here for random wave. - 点击这里使用随机波形。 + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + 渲染提示 + + + + Anti-Aliasing + 抗锯齿 + + + + Full canvas repaints (slower, but prevents drawing issues) + 全画布重绘 (更慢,但可解决绘制问题) + + + + <b>Engine</b> + <b>引擎</b> + + + + + Core + 核心 + + + + Single Client + 单客户端 + + + + Multiple Clients + 多客户端 + + + + + Continuous Rack + + + + + + Patchbay + + + + + Audio driver: + 音频驱动: + + + + Process mode: + 处理模式: + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + 在内置“编辑”对话框中允许的最大参数数量 + + + + Max Parameters: + 最大参数: + + + + ... + ... + + + + Reset Xrun counter after project load + 工程加载后重置 Xrun 计数器 + + + + Plugin UIs + 插件 UI + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + 使插件 UI 总在最上方 + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + 重启引擎以载入新设置 + + + + <b>OSC</b> + <b>远程控制 </b> + + + + Enable OSC + 启用远程控制 + + + + Enable TCP port + 启用 TCP 端口 + + + + + Use specific port: + 使用指定端口: + + + + Overridden by CARLA_OSC_TCP_PORT env var + 被环境变量 CARLA_OSC_TCP_PORT 覆写 + + + + + Use randomly assigned port + 使用随机分配端口 + + + + Enable UDP port + 启用 UDP 端口 + + + + Overridden by CARLA_OSC_UDP_PORT env var + 被环境变量 CARLA_OSC_UDP_PORT 覆写 + + + + DSSI UIs require OSC UDP port enabled + DSSI UI 需要远程控制 UDP 端口已启用 + + + + <b>File Paths</b> + <b>文件路径</b> + + + + Audio + 音频 + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + 用于“音频文件”插件 + + + + Used for the "midifile" plugin + 用于“MIDI 文件”插件 + + + + + Add... + 新增... + + + + + Remove + 移除 + + + + + Change... + 变更... + + + + <b>Plugin Paths</b> + <b>插件路径</b> + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + SF2/3 + SF2/3 + + + + SFZ + SFZ + + + + JSFX + JSFX + + + + CLAP + CLAP + + + + Restart Carla to find new plugins + 重启 Carla 以查找新插件 + + + + <b>Wine</b> + <b>Wine</b> + + + + Executable + + + + + Path to 'wine' binary: + + + + + Prefix + + + + + Auto-detect Wine prefix based on plugin filename + + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + 实时优先级 + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + <b>实验性</b> + + + + Experimental options! Likely to be unstable! + 实验性选项!大概率不稳定! + + + + Enable plugin bridges + 启用插件桥接 + + + + Enable Wine bridges + 启用 Wine 桥接 + + + + Enable jack applications + 启用 JACK 应用程序 + + + + Export single plugins to LV2 + 导出单个插件至 LV2 + + + + Use system/desktop-theme icons (needs restart) + 使用系统/桌面主题图标 (需要重启) + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + 在全局命名空间加载 Carla 后端 (不推荐) + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + 使用 OpenGL 渲染 (需要重启) + + + + High Quality Anti-Aliasing (OpenGL only) + 高质量抗锯齿 (仅限 OpenGL) + + + + Render Ardour-style "Inline Displays" + 渲染 Ardour 样式的“内联显示” + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + 强制单声道插件同时运行 2 个实例实现双声道。 +对 VST 插件无效。 + + + + Force mono plugins as stereo + 强制单声道插件以双声道模式运行 + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + 阻止插件不安全调用 (需要重启) + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path + 新增路径 - EqControls + Dialog - Input gain - 输入增益 - - - Output gain - 输出增益 - - - Low shelf gain + + Carla Control - Connect - Peak 1 gain - + + Remote setup + 远程设置 - Peak 2 gain - + + UDP Port: + UDP 端口: - Peak 3 gain - + + Remote host: + 远程主机: - Peak 4 gain - + + TCP Port: + TCP 端口: - High Shelf gain - + + Set value + 设置值 - HP res - + + TextLabel + 文本标签 - 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 - 低通12dB - - - LP 24 - 低通24dB - - - LP 48 - 低通48dB - - - HP 12 - 高通12dB - - - HP 24 - 高通24dB - - - HP 48 - 高通48dB - - - low pass type - 低通类型 - - - high pass type - 高通类型 - - - Analyse IN - 分析输入 - - - Analyse OUT - 分析输出 - - - - EqControlsDialog - - HP - - - - Low Shelf - - - - Peak 1 - - - - Peak 2 - - - - Peak 3 - - - - Peak 4 - - - - High Shelf - - - - LP - - - - In Gain - - - - Gain - 增益 - - - Out Gain - 输出增益 - - - Bandwidth: - 带宽: - - - Resonance : - 共鸣: - - - Frequency: - 频率: - - - lp grp - - - - hp grp - - - - Octave + + Scale Points - EqHandle + DriverSettingsW - Reso: - 共鸣: + + Driver Settings + 驱动设置 - BW: - + + Device: + 设备: - Freq: - 频率: + + Buffer size: + 缓冲区大小: + + + + Sample rate: + 采样率: + + + + Triple buffer + 三重缓冲区 + + + + Show Driver Control Panel + 显示驱动控制面板 + + + + Restart the engine to load the new settings + 重启引擎以载入新设置 ExportProjectDialog + Export project 导出工程 - Output - 输出 + + Export as loop (remove extra bar) + 导出为循环 (移除结尾的静音) + + Export between loop markers + 只导出循环标记中间的部分 + + + + Render Looped Section: + 渲染循环节: + + + + time(s) + + + + + File format settings + 文件格式设置 + + + File format: 文件格式: - Samplerate: + + 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 - Depth: - 位深: - - - 16 Bit Integer - 16 位整形 - - - 32 Bit Float - 32 位浮点型 + + Use variable bitrate + 使用可变比特率 + Quality settings 质量设置 + Interpolation: - 补间: + 补间: - Zero Order Hold + + Zero order hold 零阶保持 - Sinc Fastest - 最快 Sinc 补间 + + Sinc worst (fastest) + 快速 Sinc 补间 (最快) - Sinc Medium (recommended) + + Sinc medium (recommended) 中等 Sinc 补间 (推荐) - Sinc Best (very slow!) - 最佳 Sinc 补间 (很慢!) - - - Oversampling (use with care!): - 过采样 (请谨慎使用!): - - - 1x (None) - 1x (无) - - - 2x - 2x - - - 4x - 4x - - - 8x - 8x + + Sinc best (slowest) + 最佳 Sinc 补间 (最慢!) + Start 开始 + Cancel 取消 - - Export as loop (remove end silence) - 导出为回环loop(移除结尾的静音) - - - Export between loop markers - 只导出回环标记中间的部分 - - - 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位整数 - - - Use variable bitrate - - - - Stereo mode: - - - - Stereo - - - - Joint Stereo - - - - Mono - - - - Compression level: - - - - (fastest) - - - - (default) - - - - (smallest) - - - - - Expressive - - Selected graph - 选定的图像 - - - A1 - - - - A2 - - - - A3 - - - - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - - - - - Fader - - Please enter a new value between %1 and %2: - 请输入一个介于%1和%2之间的数值: - - - - FileBrowser - - Browser - 浏览器 - - - Search - - - - Refresh list - - - - - FileBrowserTreeWidget - - Send to active instrument-track - 发送到活跃的乐器轨道 - - - Open in new instrument-track/B+B Editor - 在新乐器轨道/B+B 编辑器中打开 - - - 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 - 并不是一个有效的 - - - file - 文件 - - - - FlangerControls - - Delay Samples - 延迟采样 - - - Lfo Frequency - Lfo 频率 - - - Seconds - - - - Regen - - - - Noise - 噪音 - - - Invert - 反转 - - - - FlangerControlsDialog - - Delay Time: - 延迟时间: - - - Feedback Amount: - 反馈数量: - - - White Noise Amount: - 白噪音数量: - - - DELAY - 延迟 - - - RATE - - - - AMNT - 数量 - - - Amount: - 数量: - - - FDBK - 反馈 - - - NOISE - 噪音 - - - Invert - 反转 - - - Period: - - - - - 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. - - 效果通道会从一个或多个乐器轨道接收输入。 -它还能被接着接入其他多个效果通道。LMMS 会自动防止无限死循环的发生,并且不会让你连接出一个死循环。 - -如果你想将一个通道连接到另一个通道,选择第一个效果通道并且在你想连接的通道上点击“发送(Send)” 按钮。在发送按钮下面的旋钮将会控制发送到目标通道信号的强度。 - -你可以通过右击效果通道弹出的上下文菜单移动和删除效果通道。 - - - - Move &left - 向左移(&L) - - - Move &right - 向右移(&R) - - - Rename &channel - 重命名通道(&C) - - - R&emove channel - 删除通道(&E) - - - Remove &unused channels - 移除所有未用通道(&U) - - - - FxMixer - - Master - 主控 - - - FX %1 - FX %1 - - - Volume - 音量 - - - Mute - 静音 - - - Solo - 独奏 - - - - FxMixerView - - FX-Mixer - 效果混合器 - - - FX Fader %1 - FX 衰减器 %1 - - - Mute - 静音 - - - Mute this FX channel - 静音此效果通道 - - - Solo - 独奏 - - - Solo FX channel - 独奏效果通道 - - - - FxRoute - - Amount to send from channel %1 to channel %2 - 从通道 %1 发送到通道 %2 的量 - - - - 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 文件 - - - GIG Files (*.gig) - GIG 文件 (*.gig) - - - - GuiApplication - - Working directory - 工作目录 - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - LMMS工作目录%1不存在,现在新建一个吗?你可以稍后在 编辑 -> 设置 中更改此设置。 - - - Preparing UI - 正在准备界面 - - - Preparing song editor - 正在准备歌曲编辑器 - - - Preparing mixer - 正在准备混音器 - - - Preparing controller rack - 正在准备控制机架 - - - Preparing project notes - 正在准备工程注释 - - - Preparing beat/bassline editor - 正在准备节拍/低音线编辑器 - - - Preparing piano roll - 正在准备钢琴窗 - - - Preparing automation editor - 正在准备自动编辑器 - - - - InstrumentFunctionArpeggio - - Arpeggio - 琶音 - - - Arpeggio type - 琶音类型 - - - Arpeggio range - 琶音范围 - - - Arpeggio time - 琶音时间 - - - Arpeggio gate - 琶音门限 - - - Arpeggio direction - 琶音方向 - - - Arpeggio mode - 琶音模式 - - - Up - 向上 - - - Down - 向下 - - - Up and down - 上和下 - - - Random - 随机 - - - Free - 自由 - - - Sort - 排序 - - - Sync - 同步 - - - Down and up - 下和上 - - - Skip rate - 跳过率 - - - Miss rate - 丢失率 - - - Cycle steps - - - - - 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. - 此参数设置的是琶音的八度范围,你所选的琶音会被限定在指定的八度数范围内。 - - - 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. - 丢失功能将会使琶音器故意丢掉你想要其丢掉的音符。 - - - 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. - - 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 - - - - - 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 - 启用MIDI输入 - - - CHANNEL - 通道 - - - VELOCITY - 力度 - - - ENABLE MIDI OUTPUT - 启用MIDI输出 - - - PROGRAM - 乐器 - - - 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% 音符力度下的正常化基准值 - - - 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 - - - - LowPass - 低通 - - - HiPass - 高通 - - - BandPass csg - 带通 csg - - - BandPass czpg - 带通 czpg - - - Notch - 凹口滤波器 - - - Allpass - 全通 - - - Moog - Moog - - - 2x LowPass - 2 个低通串联 - - - RC LowPass 12dB - RC 低通(12dB) - - - RC BandPass 12dB - RC 带通(12dB) - - - RC HighPass 12dB - RC 高通(12dB) - - - RC LowPass 24dB - RC 低通(24dB) - - - RC BandPass 24dB - RC 带通(24dB) - - - RC HighPass 24dB - RC 高通(24dB) - - - Vocal Formant Filter - 人声移除过滤器 - - - 2x Moog - 2x Moog - - - SV LowPass - SV 低通 - - - SV BandPass - SV 带通 - - - SV HighPass - SV 高通 - - - SV Notch - SV Notch - - - Fast Formant - 快速共振峰(Formant) - - - Tripole - Tripole - - InstrumentSoundShapingView + JackAppDialog - TARGET - 目标 + + Add JACK Application + 添加 JACK 应用程序 - 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...! - + + Note: Features not implemented yet are greyed out + 注意:未实现的特性已标灰 - FILTER - 过滤器 + + Application + 应用程序 - 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. - 你可以在这里选择对此乐器轨道要使用的内建过滤器。如果你想要改变声音的特征的话,过滤器就是不可或缺的工具。 + + Name: + 名称: - Hz - Hz + + Application: + 应用程序: - 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... - + + From template + 来自模板 - RESO - 共鸣 + + Custom + 自定义 - Resonance: - 共鸣: + + Template: + 模板: - 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. - + + Command: + 命令: - FREQ - 频率 - - - cutoff frequency: - 切除频率: - - - Envelopes, LFOs and filters are not supported by the current instrument. - 包络和低频振荡 (LFO) 不被当前乐器支持。 - - - - InstrumentTrack - - unnamed_track - 未命名轨道 - - - Volume - 音量 - - - Panning - 声相 - - - Pitch - 音高 - - - FX channel - 效果通道 - - - Default preset - 预置 - - - With this knob you can set the volume of the opened channel. - 使用此旋钮可以设置开放通道的音量。 - - - Base note - 基本音 - - - Pitch range - 音域范围 - - - Master Pitch - 主音高 - - - - InstrumentTrackView - - Volume - 音量 - - - Volume: - 音量: - - - VOL - 音量 - - - Panning - 声相 - - - Panning: - 声相: - - - PAN - 声相 - - - MIDI - MIDI - - - Input - 输入 - - - Output - 输出 - - - FX %1: %2 - 效果 %1: %2 - - - - InstrumentTrackWindow - - GENERAL SETTINGS - 常规设置 - - - Instrument 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 - 范围 - - - 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设置 - - - Miscellaneous - - - - Plugin - - - - - Knob - - Set linear - 设置为线性 - - - Set logarithmic - 设置为对数 - - - Please enter a new value between %1 and %2: - 请输入一个介于%1和%2之间的数值: - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: - 请输入介于 -96.0 dBFS 和 6.0 dBFS之间的值: - - - - LadspaControl - - Link channels - 关联通道 - - - - LadspaControlDialog - - Link Channels - 连接通道 - - - Channel - 通道 - - - - LadspaControlView - - Link channels - 连接通道 - - - Value: - 值: - - - Sorry, no help available. - 啊哦,这个没有帮助文档。 - - - - LadspaEffect - - Unknown LADSPA plugin %1 requested. - 已请求未知 LADSPA 插件 %1. - - - - LcdSpinBox - - Please enter a new value between %1 and %2: - 请输入一个介于%1和%2之间的数值: - - - - LeftRightNav - - Previous - 上个 - - - Next - 下个 - - - Previous (%1) - 上 (%1) - - - Next (%1) - 下 (%1) - - - - LfoController - - LFO Controller - LFO 控制器 - - - Base value - 基准值 - - - Oscillator speed - 振动速度 - - - Oscillator amount - 振动数量 - - - Oscillator phase - 振动相位 - - - Oscillator waveform - 振动波形 - - - Frequency Multiplier - 频率加倍器 - - - - LfoControllerDialog - - LFO - LFO - - - LFO Controller - LFO 控制器 - - - 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. - - - - 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. - - - - AMNT - 数量 - - - - LmmsCore - - Generating wavetables - 正在生成波形表 - - - Initializing data structures - 正在初始化数据结构 - - - Opening audio and midi devices - 正在启动音频和 MIDI 设备 - - - Launching mixer threads - 生在启动混音器线程 - - - - MainWindow - - &New - 新建(&N) - - - &Open... - 打开(&O)... - - - &Save - 保存(&S) - - - Save &As... - 另存为(&A)... - - - Import... - 导入... - - - E&xport... - 导出(&E)... - - - &Quit - 退出(&Q) - - - &Edit - 编辑(&E) - - - Settings + + Setup 设置 - &Tools - 工具(&T) + + Session Manager: + 会话管理: - &Help - 帮助(&H) + + None + - Help - 帮助 + + Audio inputs: + 音频输入: - What's this? - 这是什么? + + MIDI inputs: + MIDI 输入: - About - 关于 + + Audio outputs: + 音频输出: - Create new project - 新建工程 + + MIDI outputs: + MIDI 输出: - Create new project from template - 从模版新建工程 + + Take control of main application window + 控制主应用容器 - Open existing project - 打开已有工程 + + Workarounds + 解决方案 - Recently opened projects - 最近打开的工程 + + Wait for external application start (Advanced, for Debug only) + - Save current project - 保存当前工程 + + Capture only the first X11 Window + 仅捕获第一个 X11 窗口 - Export current project - 导出当前工程 + + Use previous client output buffer as input for the next client + 使用前一个客户端的输出缓冲区作为下一个客户端输入 - Song Editor - 显示/隐藏歌曲编辑器 + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + - 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 采样)。 + + Error here + 这里出错了 - Beat+Bassline Editor - 显示/隐藏节拍+旋律编辑器 + + NSM applications cannot use abstract or absolute paths + - 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. - 点击此按钮, 你就可以显示或隐藏节拍+低音线编辑器。你可以使用节拍+低音线编辑器来创建节拍, 并且还可以打开、添加、移除通道, 还能剪切、复制、粘贴节拍和低音线样本, 还有更多功能等你探索。 + + NSM applications cannot use CLI arguments + - Piano Roll - 显示/隐藏钢琴窗 + + You need to save the current Carla project before NSM can be used + + + + + JuceAboutW + + + This program uses JUCE version %1. + 本程序使用 JUCE %1 版本。 + + + + MidiPatternW + + + MIDI Pattern + 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. - 点击这里显示或隐藏钢琴窗。在钢琴窗的帮助下, 你可以很容易地编辑旋律。 + + Time Signature: + 节拍: - Automation Editor - 显示/隐藏自动控制编辑器 + + + + 1/4 + 1/4 - 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. - 点击这里显示或隐藏自动控制编辑器。在自动控制编辑器的帮助下, 你可以很简单地控制动态数值。 + + 2/4 + 2/4 - FX Mixer - 显示/隐藏混音器 + + 3/4 + 3/4 - 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 混音器是管理你歌曲中不同音效的强大工具。你可以向不同的通道添加不同的效果。 + + 4/4 + 4/4 - Project Notes - 显示/隐藏工程注释 + + 5/4 + 5/4 - Click here to show or hide the project notes window. In this window you can put down your project notes. - 点击这里显示或隐藏工程注释窗。在此窗口中你可以写下工程的注释。 + + 6/4 + 6/4 - Controller Rack - 显示/隐藏控制器机架 + + Measures: + 小节数 - Untitled - 未标题 + + + + 1 + 1 - LMMS %1 - LMMS %1 + + 2 + 2 - Project not saved - 工程未保存 + + 3 + 3 - The current project was modified since last saving. Do you want to save it now? - 此工程自上次保存后有了修改,你想保存吗? + + 4 + 4 - Help not available - 帮助不可用 + + 5 + 5 - 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的相关文档。 + + 6 + 6 - LMMS (*.mmp *.mmpz) - LMMS (*.mmp *.mmpz) + + 7 + 7 - Version %1 - 版本 %1 + + 8 + 8 - Configuration file - 配置文件 + + 9 + 9 - Error while parsing configuration file at line %1:%2: %3 - 解析配置文件发生错误(行%1:%2:%3) + + 10 + 10 - Volumes - 音量 + + 11 + 11 - Undo - 撤销 + + 12 + 12 - Redo - 重做 + + 13 + 13 - My Projects - 我的工程 + + 14 + 14 - My Samples - 我的采样 + + 15 + 15 - My Presets - 我的预设 + + 16 + 16 - My Home - 我的主目录 + + Default Length: + 默认长度: - My Computer - 我的电脑 + + + 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) + 文件 (&F) - &Recently Opened Projects - 最近打开的工程(&R) + + &Edit + 编辑 (&E) - Save as New &Version - 保存为新版本(&V) + + &Quit + 退出 (&Q) - E&xport Tracks... - 导出音轨(&X)... + + Esc + Esc - Online Help - 在线帮助 + + &Insert Mode + 插入模式 (&I) - What's This? - 这是什么? + + F + F - Open Project - 打开工程 + + &Velocity Mode + 力度模式 (&V) - Save Project - 保存工程 + + D + D - Project recovery - 工程恢复 + + Select All + 全选 - 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 -请确保您有对该文件以及包含该文件目录的写入权限! - - - Export &MIDI... - 导出 MIDI (&M)... - - - - MeterDialog - - Meter Numerator - 分子数值 - - - Meter Denominator - 分母数值 - - - TIME SIG - 拍子记号 - - - - MeterModel - - Numerator - 分子 - - - Denominator - 分母 - - - - MidiController - - MIDI Controller - MIDI控制器 - - - 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 文件后将会没有声音。你需要下载一个通用 MIDI (GM) 的 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. - 你在编译 LMMS 时没有加入 SoundFont2 播放器支持, 此播放器默认用于添加导入的 MIDI 文件。因此在 MIDI 文件导入后, 将没有声音。 - - - 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 音频服务器似乎已经关闭 - - - - 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 - 固定输出音符 - - - Base velocity - 基准力度 - - - - MidiSetupWidget - - DEVICE - 设备 - - - - MonstroInstrument - - Osc 1 Volume - Osc1音量 - - - Osc 1 Panning - Osc1声相 - - - 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 - Moog 锯齿波 - - - 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. - 为振荡器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 - 左声道微调 - - - 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 - - - - Modulation amount - 调制量 - - - - 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 - 通道 1 音量 - - - Channel 1 Envelope length - 通道 1 包络长度 - - - Channel 1 Duty cycle - 通道 1 占空比 - - - Channel 1 Sweep amount - - - - Channel 1 Sweep rate - - - - Channel 2 Coarse detune - - - - Channel 2 Volume - 通道 2 音量 - - - Channel 2 Envelope length - 通道 2 包络长度 - - - Channel 2 Duty cycle - 通道 2 占空比 - - - Channel 2 Sweep amount - - - - Channel 2 Sweep rate - - - - Channel 3 Coarse detune - - - - Channel 3 Volume - 通道 3 音量 - - - Channel 4 Volume - 通道 4 音量 - - - Channel 4 Envelope length - 通道 4 包络长度 - - - Channel 4 Noise frequency - 通道 4 噪音频率 - - - Channel 4 Noise frequency sweep - - - - Master volume - 主音量 - - - Vibrato - 颤音 - - - - NesInstrumentView - - Volume - 音量 - - - Coarse detune - 音高粗调 - - - Envelope length - 包络线长度 - - - Enable channel 1 - 启用通道 1 - - - Enable envelope 1 - 启用包络 1 - - - Enable envelope 1 loop - 启用包络 1 循环 - - - Enable sweep 1 - - - - Sweep amount - - - - Sweep rate - - - - 12.5% Duty cycle - 12.5% 占空比 - - - 25% Duty cycle - 25% 占空比 - - - 50% Duty cycle - 50% 占空比 - - - 75% Duty cycle - 75% 占空比 - - - Enable channel 2 - 启用通道 2 - - - Enable envelope 2 - 启用包络 2 - - - Enable envelope 2 loop - 启用包络 2 循环 - - - Enable sweep 2 - - - - Enable channel 3 - 启用通道 3 - - - Noise Frequency - 噪音频率 - - - Frequency sweep - - - - Enable channel 4 - 启用通道 4 - - - Enable envelope 4 - 启用包络 4 - - - Enable envelope 4 loop - 启用包络 4 循环 - - - Quantize noise frequency when using note frequency - 在使用音符频率时,量化噪音频率 - - - Use note frequency for noise - 对噪音使用音符频率 - - - Noise mode - 噪音模式 - - - Master Volume - 主音量 - - - Vibrato - 颤音 - - - - 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 泛音 + + A + A PatchesDialog + + Qsynth: Channel Preset - Qsynth: 通道预设 + Qsynth:通道预设 + + Bank selector 音色选择器 + + Bank + + Program selector 乐器选择器 + + Patch 音色 + + Name 名称 + + OK 确定 + + Cancel 取消 - - 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. - 在这里你可以开关循环模式。如果启用,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 - - Open in piano-roll - 在钢琴窗中打开 - - - Clear all notes - 清除所有音符 - - - Reset name - 重置名称 - - - Change name - 修改名称 - - - Add steps - 添加音阶 - - - Remove steps - 移除音阶 - - - Clone Steps - 复制音阶 - - - - PeakController - - Peak Controller - 峰值控制器 - - - Peak Controller Bug - 峰值控制器 Bug - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - 在老版本的 LMMS 中, 峰值控制器因为有 bug 而可能没有正确连接。请确保峰值控制器正常连接后再次保存次文件。我们对给你造成的不便深表歉意。 - - - - PeakControllerDialog - - PEAK - 峰值 - - - LFO Controller - LFO 控制器 - - - - PeakControllerEffectControlDialog - - BASE - 基准 - - - Base amount: - 基础值: - - - Modulation amount: - 调制量: - - - Attack: - 打击声: - - - Release: - 释音: - - - AMNT - 数量 - - - MULT - - - - Amount Multiplicator: - - - - ATCK - 打击 - - - DCAY - 衰减 - - - Treshold: - 阀值: - - - TRSH - - - - - PeakControllerEffectControls - - Base value - 基准值 - - - Modulation amount - 调制量 - - - Mute output - 输出静音 - - - Attack - 打进声 - - - Release - 释放 - - - Abs Value - - - - Amount Multiplicator - - - - Treshold - 阀值 - - - - 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 - 标记/取消标记所有对应的八度音的半音 - - - Select all notes on this key - 选中所有相同音调的音符 - - - - PianoRollWindow - - Play/pause current pattern (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) - 停止当前片段(空格) - - - 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 - 编辑功能 - - - Copy paste controls - 复制粘贴控制 - - - Timeline controls - 时间线控制 - - - Zoom and note controls - 缩放和音符控制 - - - Piano-Roll - %1 - 钢琴窗 - %1 - - - Piano-Roll - no pattern - 钢琴窗 - 没有片段 - - - Quantize - 量化 - - - - PianoView - - Base note - 基本音 - - - - Plugin - - Plugin not found - 未找到插件 - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - 插件“%1”无法找到或无法载入! -原因:%2 - - - Error while loading plugin - 载入插件时发生错误 - - - Failed to load plugin "%1"! - 载入插件“%1”失败! - - PluginBrowser - Instrument browser - 乐器浏览器 - - - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - 将乐器插件拖入歌曲编辑器, 节拍低音线编辑器, 或者现有的乐器轨道。 - - - Instrument Plugins - - - - - PluginFactory - - Plugin not found. - 未找到插件。 - - - LMMS plugin %1 does not have a plugin descriptor named %2! - LMMS插件 %1 没有一个插件描述符命名为 %2 - - - - 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 - - - - - ProjectRenderer - - WAV-File (*.wav) - WAV-文件 (*.wav) - - - Compressed OGG-File (*.ogg) - 压缩的 OGG 文件(*.ogg) - - - FLAC-File (*.flac) - - - - Compressed MP3-File (*.mp3) - - - - - QWidget - - Name: - 名称: - - - Maker: - 制作者: - - - Copyright: - 版权: - - - Requires Real Time: - 要求实时: - - - Yes - - - - No - - - - Real Time Capable: - 是否支持实时: - - - In Place Broken: - 被损坏: - - - Channels In: - 输入通道: - - - Channels Out: - 输出通道: - - - File: - 文件: - - - File: %1 - 文件:%1 - - - - RenameDialog - - Rename... - 重命名... - - - - ReverbSCControlDialog - - Input - 输入 - - - Input Gain: - 输入增益: - - - Size - - - - Size: - - - - Color - - - - Color: - - - - Output - 输出 - - - Output Gain: - 输出增益: - - - - ReverbSCControls - - Input Gain - - - - Size - - - - Color - - - - Output Gain - - - - - 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 - 双击选择采样 - - - Delete (middle mousebutton) - 删除 (鼠标中键) - - - Cut - 剪切 - - - Copy - 复制 - - - Paste - 粘贴 - - - Mute/unmute (<%1> + middle click) - 静音/取消静音 (<%1> + 鼠标中键) - - - - 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 - 在改变设置后显示重启警告 - - - 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 - 保存工程时建立备份 - - - LANGUAGE - 语言 - - - Paths - 路径 - - - LMMS working directory - LMMS工作目录 - - - VST-plugin directory - VST插件目录 - - - Background artwork - 背景图片 - - - STK rawwave directory - STK rawwave 目录 - - - Default Soundfont File - 默认 SoundFont 文件 - - - Performance settings - 性能设置 - - - UI effects vs. performance - 界面特效 vs 性能 - - - Smooth scroll in Song Editor - 歌曲编辑器中启用平滑滚动 - - - Show playback cursor in AudioFileProcessor - 在 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! - 请注意很多设置需要重启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 - - - - Auto-save interval: %1 - 自动保存间隔:%1 - - - 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。 -请您也时常手动保存您的项目。如果您的设备较旧,您可以选择禁用“允许在播放时自动保存”这个选项。 - - - - 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! - 这个工程是空的所以就算导出也没有意义,请在歌曲编辑器中加入一点声音吧! - - - Select directory for writing exported tracks... - 选择写入导出音轨的目录... - - - untitled - 未标题 - - - Select file for project-export... - 为工程导出选择文件... - - - The following errors occured while loading: - 载入时发生以下错误: - - - MIDI File (*.mid) - MIDI 文件 (*.mid) - - - LMMS Error report - LMMS 错误报告 - - - Save project - 保存工程 - - - - 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 。或许没有权限读此文件。 -请确保您拥有对此文件的读权限,然后重试。 - - - 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 创建的。 - - - - 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 - 轨道动作 - - - Edit actions - 编辑动作 - - - Timeline controls - 时间线控制 - - - Zoom controls - 缩放控制 - - - - SpectrumAnalyzerControlDialog - - Linear spectrum - 线性频谱图 - - - Linear Y axis - 线性 Y 轴 - - - - SpectrumAnalyzerControls - - Linear spectrum - 线性频谱图 - - - Linear Y axis - 线性 Y 轴 - - - Channel mode - 通道模式 - - - - SubWindow - - Close - 关闭 - - - Maximize - 最大化 - - - Restore - 还原 - - - - TabWidget - - Settings for %1 - %1 的设定 - - - - 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分音符 - - - - TimeDisplayWidget - - click to change time units - 点击改变时间单位 - - - MIN - 分钟 - - - SEC - - - - MSEC - 毫秒 - - - BAR - 小节 - - - BEAT - - - - TICK - - - - - 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. - 按住 <%1> 禁用磁性吸附。 - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - 按住 <Shift> 移动起始循环点;按住 <%1> 禁用磁性吸附。 - - - - Track - - Mute - 静音 - - - Solo - 独奏 - - - - TrackContainer - - Couldn't import file - 无法导入文件 - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - 无法找到导入文件 %1 的导入器 -你需要使用其他软件将此文件转换成 LMMS 支持的格式。 - - - Couldn't open file - 无法打开文件 - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - 无法读取文件 %1 -请确认你有对该文件及其目录的读取权限后再试! - - - Loading project... - 正在加载工程... - - - Cancel - 取消 - - - Please wait... - 请稍等... - - - Importing MIDI-file... - 正在导入 MIDI-文件... - - - Loading Track %1 (%2/Total %3) - 正在加载轨道 %1 (第 %2 个/共 %3 个) - - - - TrackContentObject - - Mute - 静音 - - - - TrackContentObjectView - - 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) - - - Delete (middle mousebutton) - 删除 (鼠标中键) - - - Cut - 剪切 - - - Copy - 复制 - - - Paste - 粘贴 - - - Mute/unmute (<%1> + middle click) - 静音/取消静音 (<%1> + 鼠标中键) - - - - TrackOperationsWidget - - Press <%1> while clicking on move-grip to begin a new drag'n'drop-action. - 按住 <%1> 的同时拖动移动柄复制并移动此轨道。 - - - Actions for this track - 对此轨道可进行的操作 - - - Mute - 静音 - - - Solo - 独奏 - - - Mute this track - 静音此轨道 - - - Clone this track - 克隆此轨道 - - - Remove this track - 移除此轨道 - - - Clear this track - 清除此轨道 - - - FX %1: %2 - 效果 %1: %2 - - - Turn all recording on - 打开所有录制 - - - Turn all recording off - 关闭所有录制 - - - Assign to new FX Channel - 分配到新的效果通道 - - - - 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 - 同步振荡器 1 和振荡器 2 - - - Use frequency modulation for modulating oscillator 1 with oscillator 2 - 将振荡器 1 的频率调制应用给振荡器 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 - 同步振荡器 2 和振荡器 3 - - - Use frequency modulation for modulating oscillator 2 with oscillator 3 - 将振荡器 2 的频率调制应用给振荡器 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. - - - - 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 - 递减版本号 - - - already exists. Do you want to replace it? - - - - - 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. - 如果你想打开另一个 VST 插件。在点击此按牛后, 将会打开文件选择对话框, 你就可以选择你的 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插件 - - - 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 插件预设, 请点击这里。 - - - 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 的预设 - - - 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-插件 - - - 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 插件预设, 请点击这里。 - - - 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 /> - - - - VstPlugin - - Loading plugin - 载入插件 - - - 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插件,请稍候…… - - - The VST plugin %1 could not be loaded. - 无法载入VST插件 %1。 - - - - 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 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 - 选择振荡器 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 - - - - Mix envelope amount - - - - Mix envelope attack - - - - Mix envelope hold - - - - Mix envelope decay - - - - Crosstalk - - - - - ZynAddSubFxInstrument - - Portamento - 滑音 - - - Filter Frequency - - - - Filter Resonance - - - - Bandwidth - 带宽 - - - FM Gain - FM 增益 - - - Resonance Center Frequency - - - - Resonance Bandwidth - - - - Forward MIDI Control Change Events - 转发 MIDI 控制的变更事件 - - - - ZynAddSubFxView - - Show GUI - 显示图形界面 - - - Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. - 点击这里显示/隐藏 ZynAddSubFX 的图形界面 (GUI) 。 - - - 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 - 转发 MIDI 控制变化 - - - - audioFileProcessor - - Amplify - 增益 - - - Start of sample - 采样起始 - - - End of sample - 采样结尾 - - - Reverse sample - 反转采样 - - - Stutter - - - - Loopback point - 循环点 - - - Loop mode - 循环模式 - - - Interpolation mode - 补间方式 - - - None - - - - Linear - 线性插补 - - - Sinc - 辛格(Sinc)插补 - - - Sample not found: %1 - 采样未找到: %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 - 点击这里将波形增益值增加 1dB - - - Decrease wavegraph amplitude by 1dB - - - - Click here to decrease wavegraph amplitude by 1dB - 点击这里将波形增益值减少 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 - 双声道模式 - - - - 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 - - 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. - 这个对话框显示 LMMS 找到的所有 LADSPA 插件信息。这些插件根据接口类型和名字被分为五个类别。 - -"可用效果" 是指可以被 LMMS 使用的插件。为了让 LMMS 可以开启效果, 首先, 这个插件需要是有效果的。也就是说, 这个插件需要有输入和输出通道。LMMS 会将音频接口名称中有 ‘in’ 的接口识别为输入接口, 将音频接口名称中有 ‘out’ 的接口识别为输出接口。并且, 效果插件需要有相同的输入输出通道, 还要能支持实时处理。 - -"不可用效果" 是指被识别为效果插件的插件, 但是输入输出通道数不同或者不支持实时音频处理。 - -"乐器" 是指只检测到有输出通道的插件。 - -"分析工具" 是指只检测到有输入通道的插件。 - -"未知" 是指没有检测到任何输出或输出通道的插件。 - -双击任意插件将会显示接口信息。 - - - Type: - 类型: - - - - ladspaDescription - - Plugins - 插件 - - - Description - 描述 - - - - ladspaPortDialog - - Ports - 端口 - - - Name - 名称 - - - Rate - 比特率 - - - Direction - 方向 - - - Type - 类型 - - - Min < Default < Max - 最小 < 默认 < 最大 - - - Logarithmic - 对数 - - - SR Dependent - 依赖 SR - - - Audio - 音频 - - - Control - 控制 - - - Input - 输入 - - - Output - 输出 - - - Toggled - 启用 - - - Integer - 整型 - - - Float - 浮点 - - - Yes - - - - - lb302Synth - - VCF Cutoff Frequency - - - - VCF Resonance - - - - VCF Envelope Mod - - - - VCF Envelope Decay - - - - Distortion - 失真 - - - Waveform - 波形 - - - Slide Decay - - - - Slide - - - - Accent - - - - Dead - - - - 24dB/oct Filter - - - - - lb302SynthView - - Cutoff Freq: - - - - Resonance: - 共鸣: - - - Env Mod: - - - - Decay: - 衰减: - - - 303-es-que, 24dB/octave, 3 pole filter - - - - Slide Decay: - - - - DIST: - - - - Saw wave - 锯齿波 - - - Click here for a saw-wave. - 点击这里使用锯齿波。 - - - Triangle wave - 三角波 - - - Click here for a triangle-wave. - 点击这里使用三角波。 - - - Square wave - 方波 - - - Click here for a square-wave. - 点击这里使用方波。 - - - Rounded square wave - 圆角方波 - - - Click here for a square-wave with a rounded end. - 点击这里使用圆角方波。 - - - Moog wave - - - - Click here for a moog-like wave. - - - - Sine wave - 正弦波 - - - Click for a sine-wave. - 点击这里使用正弦波。 - - - White noise wave - 白噪音 - - - Click here for an exponential wave. - 点击这里使用指数爆炸波形。 - - - Click here for white-noise. - 点击这里使用白噪音。 - - - Bandlimited saw wave - - - - Click here for bandlimited saw wave. - - - - Bandlimited square wave - - - - Click here for bandlimited square wave. - - - - Bandlimited triangle wave - - - - Click here for bandlimited triangle wave. - - - - Bandlimited moog saw wave - - - - Click here for bandlimited moog saw wave. - - - - - malletsInstrument - - Hardness - - - - Position - 位置 - - - Vibrato Gain - - - - Vibrato Freq - - - - Stick Mix - - - - Modulator - 调制器 - - - Crossfade - - - - LFO Speed - LFO 速度 - - - LFO Depth - LFO 位深 - - - 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 - - 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 软件包! - - - - manageVSTEffectView - - - VST parameter 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 effect knob-controller window. - 关闭 VST 效果调整窗口。 - - - - 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 - - Distortion - 失真 - - - Volume - 音量 - - - - organicInstrumentView - - Distortion: - 失真: - - - Volume: - 音量: - - - Randomise - 随机 - - - Osc %1 waveform: - - - - Osc %1 volume: - - - - 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. - - - - Osc %1 stereo detuning - - - - 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 - - Qsynth: Channel Preset - Qsynth: 通道预设 - - - Bank selector - 音色选择器 - - - Bank - - - - Program selector - 程序节选择器 - - - Patch - 音色 - - - Name - 名称 - - - OK - 确定 - - - Cancel - 取消 - - - - pluginBrowser - + no description 没有描述 - Incomplete monophonic imitation tb303 - 对单音 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 + 简单地在乐器栏使用采样 (比如鼓音源),同时也提供多种设置 + + + + Boost your bass the fast and simple way + 以快速且简单的方式增强你的低音 + + + + Customizable wavetable synthesizer + 可自定制的波表合成器 + + + + An oversampling bitcrusher - Plugin for controlling knobs with sound peaks + + 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 - Plugin for enhancing stereo separation of a stereo input file - + + 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 插件 - 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 效果的插件。 + + Incomplete monophonic imitation TB-303 + + + + + plugin for using arbitrary LV2-effects inside LMMS. + 在 LMMS 中使用任意 LV2 效果的插件。 + + + + plugin for using arbitrary LV2 instruments inside LMMS. + 在 LMMS 中使用任意 LV2 乐器的插件。 + + + + Filter for exporting MIDI-files from LMMS + 从 LMMS 导出 MIDI 文件的生成器 + + + Filter for importing MIDI-files into LMMS 导入 MIDI 文件到 LMMS 的解析器 + + Monstrous 3-oscillator synth with modulation matrix + 带 3 个振荡器和调制矩阵的能发出像怪兽一样声音的合成器 + + + + A multitap echo delay plugin + + + + + A NES-like synthesizer + 类似于 NES 的合成器 + + + + 2-operator FM Synth + + + + + Additive Synthesizer for organ-like sounds + + + + + GUS-compatible patch instrument + GUS 兼容音色的乐器 + + + + Plugin for controlling knobs with sound peaks + 根据声音峰值控制旋钮的插件 + + + + Reverb algorithm by Sean Costello + Sean Costello 发明的混响算法 + + + + Player for SoundFont files + 在工程中使用 SoundFont + + + + 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 电脑上用过。 - Player for SoundFont files - 在工程中使用SoundFont + + A graphical spectrum analyzer. + 一款图形频谱分析器 - Emulation of GameBoy (TM) APU - GameBoy (TM) APU 模拟器 - - - Customizable wavetable synthesizer - 可自定制的波表合成器 - - - Embedded ZynAddSubFX - 内置的 ZynAddSubFX - - - 2-operator FM Synth + + Plugin for enhancing stereo separation of a stereo input file - Filter for importing Hydrogen files into LMMS - 导入 Hydrogen 工程文件到 LMMS 的解析器 + + Plugin for freely manipulating stereo output + - LMMS port of sfxr - sfxr 的 LMMS 移植版本 - - - Monstrous 3-oscillator synth with modulation matrix - 带 3 个振荡器和调制矩阵的能发出像怪兽一样声音的合成器 + + 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 - Carla Rack 乐器 + + VST-host for using VST(i)-plugins within LMMS + LMMS的VST(i)插件宿主 - 4-oscillator modulatable wavetable synth - 有四个振荡器的可调制波表合成器 - - - plugin for waveshaping + + Vibrating string modeler - 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 - 图形频谱分析器插件 + + 4-oscillator modulatable wavetable synth + 有四个振荡器的可调制波表合成器 - A NES-like synthesizer - 类似于 NES 的合成器 - - - A native delay plugin - 原生的衰减插件 - - - Player for GIG files - 播放 GIG 文件的播放器 - - - A multitap echo delay plugin + + plugin for waveshaping - 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 - Bank - + + Embedded ZynAddSubFX + 内置的 ZynAddSubFX - Patch - 音色 + + An all-pass filter allowing for extremely high orders. + - Gain - 增益 + + Granular pitch shifter + - Reverb - 混响 + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + - Reverb Roomsize - 混响空间大小 + + Basic Slicer + - Reverb Damping - 混响阻尼 - - - Reverb Width - 混响宽度 - - - Reverb Level - 混响级别 - - - Chorus - 合唱 - - - Chorus Lines - 合唱声部 - - - Chorus Level - 合唱电平 - - - Chorus Speed - 合唱速度 - - - Chorus Depth - 合唱深度 - - - A soundfont %1 could not be loaded. - 无法载入Soundfont %1。 + + Tap to the beat + 跟着节拍敲击 - sf2InstrumentView + PluginEdit - Open other SoundFont file - 打开其他SoundFont文件 + + Plugin Editor + 插件编辑器 - Click here to open another SF2 file - 点击此处打开另一个SF2文件 + + Edit + 编辑 - Choose the patch - 选择路径 + + Control + 控制 - Gain - 增益 + + MIDI Control Channel: + MIDI 控制通道: - Apply reverb (if supported) - 应用混响(如果支持) + + N + - This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - 此按钮会启用混响效果器。可以制作出很酷的效果,但仅对支持的文件有效。 + + Output dry/wet (100%) + - Reverb Roomsize: - 混响空间大小: + + Output volume (100%) + - Reverb Damping: - 混响阻尼: + + Balance Left (0%) + - Reverb Width: - 混响宽度: + + + Balance Right (0%) + - Reverb Level: - 混响级别: + + Use Balance + - Apply chorus (if supported) - 应用合唱 (如果支持) + + Use Panning + - This button enables the chorus effect. This is useful for cool echo effects, but only works on files that support it. - 此按钮会启用合唱效果器。 + + Settings + 设置 - Chorus Lines: - 合唱声部: + + Use Chunks + - Chorus Level: - 合唱级别: + + Audio: + 音频: - Chorus Speed: - 合唱速度: + + Fixed-Size Buffer + - Chorus Depth: - 合唱深度: + + Force Stereo (needs reload) + - Open SoundFont file - 打开SoundFont文件 + + MIDI: + MIDI: - SoundFont2 Files (*.sf2) - SoundFont2 Files (*.sf2) + + Map Program Changes + + + + + Send Notes + 发送音符 + + + + Send Bank/Program Changes + 发送音色改变 + + + + Send Control Changes + 发送控制器改变 + + + + Send Channel Pressure + + + + + Send Note Aftertouch + 发送音符触后 + + + + Send Pitchbend + 发送弯音 + + + + Send All Sound/Notes Off + 发送关闭所有声音 + + + + +Plugin Name + + +插件名称 + + + + + Program: + 工程 + + + + MIDI Program: + MIDI 音色: + + + + Save State + 保存状态 + + + + Load State + 加载状态 + + + + Information + 信息 + + + + Label/URI: + 标签/URI: + + + + Name: + 名称: + + + + Type: + 类型: + + + + Maker: + 制作者: + + + + Copyright: + 版权: + + + + Unique ID: + 唯一 ID: - sfxrInstrument + PluginFactory - Wave Form - 波形 + + Plugin not found. + 未找到插件。 + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + LMMS插件 %1 没有一个插件描述符命名为 %2 - sidInstrument + PluginListDialog - Cutoff - 切除 + + Carla - Add New + Carla - 新增 - Resonance - 共鸣 + + Requirements + - Filter type - 过滤器类型 + + With Custom GUI + - Voice 3 off - 声音 3 关 + + With CV Ports + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + 仅显示已收藏 + + + + (Number of Plugins go here) + (插件数量在这里) + + + + &Add Plugin + 新增插件 (&A) + + + + Cancel + 取消 + + + + Refresh + 刷新 + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + 文本标签 + + + + Format: + 格式: + + + + Architecture: + 架构: + + + + Type: + 类型: + + + + MIDI Ins: + MIDI 输入: + + + + Audio Ins: + 音频输入: + + + + CV Outs: + CV 输出: + + + + MIDI Outs: + MIDI 输出: + + + + Parameter Ins: + 参数输入: + + + + Parameter Outs: + 参数输出: + + + + Audio Outs: + 音频输出: + + + + CV Ins: + CV 输入: + + + + UniqueID: + 唯一 ID: + + + + Has Inline Display: + 内置显示: + + + + Has Custom GUI: + 自定义界面 + + + + Is Synth: + 是否为合成器: + + + + Is Bridged: + 是否桥接: + + + + Information + 信息 + + + + Name + 名称 + + + + Label/Id/URI + 标签/ID/URI + + + + Maker + 制作者 + + + + Binary/Filename + 二进制/文件名 + + + + Format + 格式 + + + + Internal + 内置 + + + + LADSPA + LADSPA + + + + DSSI + DSSI + + + + LV2 + LV2 + + + + VST2 + VST2 + + + + VST3 + VST3 + + + + CLAP + CLAP + + + + AU + AU + + + + JSFX + JSFX + + + + Sound Kits + 声音套件 + + + + Type + 类型 + + + + Effects + 效果 + + + + Instruments + 乐器 + + + + MIDI Plugins + MIDI 插件 + + + + Other/Misc + 其他/杂项 + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + 其他 + + + + Architecture + + + + + + Native + 原生 + + + + Bridged + 桥接 + + + + Bridged (Wine) + 桥接 (Wine) + + + + Focus Text Search + + + + + Ctrl+F + Ctrl+F + + + + Bridged (32bit) + 桥接 (32 位) + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + 未知 + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + + + + + Parameter Name + 参数名称 + + + + TextLabel + 文本标签 + + + + ... + ... + + + + PluginRefreshDialog + + + Plugin Refresh + 插件刷新 + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + 扫描 + + + + >> Skip + >> 跳过 + + + + Close + 关闭 + + + + PluginWidget + + + + + + + Frame + + + + + Enable + 启用 + + + + On/Off + 开/关 + + + + + + + PluginName + 插件名称 + + + + MIDI + MIDI + + + + AUDIO IN + 音频输入 + + + + AUDIO OUT + 音频输出 + + + + GUI + 图形界面 + + + + Edit + 编辑 + + + + Remove + 移除 + + + + Plugin Name + 插件名称 + + + + Preset: + 预置: + + + + ProjectRenderer + + + WAV (*.wav) + WAV (*.wav) + + + + FLAC (*.flac) + FLAC (*.flac) + + + + OGG (*.ogg) + OGG (*.ogg) + + + + MP3 (*.mp3) + MP3 (*.mp3) + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + 重新载入插件 + + + + Show GUI + 显示图形界面 + + + + Help + 帮助 + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + 打开音频文件 + + + + Error loading sample + 采样加载错误 + + + + %1 (unsupported) + %1 (不支持) + + + + QWidget + + + + Name: + 名称: + + + + Maker: + 制作者: + + + + Copyright: + 版权: + + + + Requires Real Time: + 要求实时: + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + 是否支持实时: + + + + In Place Broken: + 被损坏: + + + + Channels In: + 输入通道: + + + + Channels Out: + 输出通道: + + + + File: %1 + 文件:%1 + + + + File: + 文件: + + + + XYControllerW + + + XY Controller + XY 控制器 + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + 设置 (&S) + + + + Channels + 通道 + + + + &File + 文件 (&F) + + + + Show MIDI &Keyboard + 显示 MIDI 键盘 (&K) + + + + (All) + (全部) + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + 退出 (&Q) + + + + Esc + Esc + + + + (None) + (无) + + + + lmms::AmplifierControls + + Volume 音量 - Chip model - 芯片型号 + + Panning + 声相 + + + + Left gain + 左增益 + + + + Right gain + 右增益 - sidInstrumentView + lmms::AudioFileProcessor - 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. + + Amplify - Decay: - 衰减: + + Start of sample + 采样起始 - Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. - + + End of sample + 采样结尾 - Sustain: - 振幅持平: + + Loopback point + 循环点 - Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - + + Reverse sample + 反转采样 - Release: - 声音消失: + + Loop mode + 循环模式 - The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - + + Stutter + 重复 - Pulse Width: - + + Interpolation mode + 补间模式 - 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. - + + None + - Coarse: - + + Linear + 线性 - The Coarse detuning allows to detune Voice %1 one octave up or down. - + + Sinc + Sinc - 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 将会被归零并锁定, 直到此选项被关闭。 + + Sample not found + 未找到采样 - stereoEnhancerControlDialog + lmms::AudioJack - WIDE - 宽度 + + JACK client restarted + JACK 客户端已重启 - Width: - 宽度: + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + LMMS 由于某些原因与 JACK 断开连接,这可能是因为 LMMS 的 JACK 后端重启导致的,你需要手动重新连接。 + + + + JACK server down + JACK 服务崩溃 + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + JACK 服务好像崩溃了而且未能正常启动,LMMS 无法正常工作,你需要保存你的工程然后重启 JACK 和LMMS。 + + + + Client name + 客户端名称 + + + + Channels + 通道 - stereoEnhancerControls + lmms::AudioOss - Width - 宽度 + + Device + 设备 + + + + Channels + 通道 - stereoMatrixControlDialog + lmms::AudioPortAudio::setupWidget - Left to Left Vol: - 从左到左音量: + + Backend + 后端 - Left to Right Vol: - 从左到右音量: - - - Right to Left Vol: - 从右到左音量: - - - Right to Right Vol: - 从右到右音量: + + Device + 设备 - stereoMatrixControls + lmms::AudioPulseAudio - Left to Left - 从左到左 + + Device + 设备 - Left to Right - 从左到右 - - - Right to Left - 从右到左 - - - Right to Right - 从右到右 + + Channels + 通道 - vestigeInstrument + lmms::AudioSdl::setupWidget - Loading plugin - 载入插件 + + Playback device + - Please wait while loading VST-plugin... - 请等待VST插件加载完成... + + Input device + - vibed + lmms::AudioSndio - String %1 volume - + + Device + 设备 - String %1 stiffness - - - - Pick %1 position - - - - Pickup %1 position - - - - Pan %1 - 声相 %1 - - - Detune %1 - 去谐 %1 - - - Fuzziness %1 - 模糊度 %1 - - - Length %1 - 长度 %1 - - - Impulse %1 - - - - Octave %1 - 八度音 %1 + + Channels + 通道 - vibedView + lmms::AudioSoundIo::setupWidget - Volume: - 音量: + + Backend + 后端 - The 'V' knob sets the volume of the selected string. - + + Device + 设备 + + + + lmms::AutomatableModel + + + &Reset (%1%2) + 重置 (%1%2) (&R) - String stiffness: - + + &Copy value (%1%2) + 复制值 (%1%2) (&C) - 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. - + + &Paste value (%1%2) + 粘贴值 (%1%2) (&P) - Pick position: - + + &Paste value + 粘贴值 (&P) - 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. - + + Edit song-global automation + 编辑歌曲全局自动控制 - Pickup position: - + + Remove song-global automation + 删除歌曲全局自动控制 - 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. - + + Remove all linked controls + 删除所有已连接的控制器 - Pan: - 声相: + + Connected to %1 + 连接到 %1 - The Pan knob determines the location of the selected string in the stereo field. - + + Connected to controller + 连接到控制器 - Detune: - 去谐: + + Edit connection... + 编辑连接... - 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. - + + Remove connection + 删除连接 - Fuzziness: - 模糊度: + + Connect to controller... + 连接到控制器... + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + 按住 <%1> 拖动控制器 + + + + lmms::AutomationTrack + + + Automation track + 自动控制轨道 + + + + lmms::BassBoosterControls + + + Frequency + 频率 - 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'. - + + Gain + 增益 - Length: - 长度: + + Ratio + 比率 + + + + lmms::BitInvader + + + Sample 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. - 点击这里平滑波形。 + + Interpolation + 补间 + 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 - 声音 %1 波形形状 - - - Voice %1 sync - 声音 %1 同步 - - - Voice %1 ring modulate - - - - Voice %1 filtered - - - - Voice %1 test - 声音 %1 测试 - - - - 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 - 将图像的增益值增加 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 - - - Clip input - 输入压限 - - - Clip input signal to 0dB - 将输入信号限制到 0dB - - - - waveShaperControls + lmms::BitcrushControls + Input gain 输入增益 + + Input noise + 输入噪音 + + + + Output gain + 输出增益 + + + + Output clip + 输出截辐 + + + + Sample rate + 采样率 + + + + Stereo difference + 双声道差异 + + + + Levels + 级别 + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + 静音 + + + + lmms::CompressorControls + + + Threshold + 阈值 + + + + Ratio + 比率 + + + + Attack + 起音 + + + + Release + 释音 + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + 输出增益 + + + + Input Gain + 输入增益 + + + + Blend + + + + + Stereo Balance + 双声道平衡 + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + LFO 频率 + + + + LFO amount + LFO 数量 + + + Output gain 输出增益 + + lmms::DispersionControls + + + Amount + 数量 + + + + Frequency + 频率 + + + + Resonance + 共鸣 + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + 滤波器 1 已启用 + + + + Filter 1 type + 滤波器 1 类型 + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + Q/共鸣 1 + + + + Gain 1 + 增益 1 + + + + Mix + + + + + Filter 2 enabled + 滤波器 2 已启用 + + + + Filter 2 type + 滤波器 2 类型 + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + Q/共鸣 2 + + + + Gain 2 + 增益 2 + + + + + Low-pass + 低通 + + + + + Hi-pass + 高通 + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + + Notch + + + + + + All-pass + 全通 + + + + + Moog + + + + + + 2x Low-pass + + + + + + RC Low-pass 12 dB/oct + + + + + + RC Band-pass 12 dB/oct + + + + + + RC High-pass 12 dB/oct + + + + + + RC Low-pass 24 dB/oct + + + + + + RC Band-pass 24 dB/oct + + + + + + RC High-pass 24 dB/oct + + + + + + Vocal Formant + 人声共振峰 + + + + + 2x Moog + + + + + + SV Low-pass + + + + + + SV Band-pass + + + + + + SV High-pass + + + + + + SV Notch + + + + + + Fast Formant + 快速共振峰 + + + + + Tripole + + + + + lmms::DynProcControls + + + Input gain + 输入增益 + + + + Output gain + 输出增益 + + + + Attack time + 起音时间 + + + + Release time + 释音时间 + + + + Stereo mode + 双声道模式 + + + + lmms::Effect + + + Effect enabled + 效果器已启用 + + + + Wet/Dry mix + 干/湿混合 + + + + Gate + 门限 + + + + Decay + 衰减 + + + + lmms::EffectChain + + + Effects enabled + 效果器已启用 + + + + lmms::Engine + + + Generating wavetables + 正在生成波表 + + + + Initializing data structures + 正在初始化数据结构 + + + + Opening audio and midi devices + 正在启动音频和 MIDI 设备 + + + + Launching audio engine threads + 生在启动音频引擎线程 + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + 包络预延迟 + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + LFO 预延迟 + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + LFO 频率 x 100 + + + + Modulate env amount + + + + + Sample not found + 未找到采样 + + + + lmms::EqControls + + + Input gain + 输入增益 + + + + Output gain + 输出增益 + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + 高通谐振 + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + 低通谐振 + + + + HP freq + 高通截频 + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + 低通截频 + + + + HP active + 高通启用 + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + 低通启用 + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + 低通类型 + + + + High-pass type + 高通类型 + + + + Analyse IN + 分析输入 + + + + Analyse OUT + 分析输出 + + + + lmms::FlangerControls + + + Delay samples + 延迟采样 + + + + LFO frequency + LFO 频率 + + + + Amount + 数量 + + + + Stereo phase + + + + + Feedback + + + + + Noise + 噪音 + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + 通道 1 音量 + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + 高音 + + + + Bass + 低音 + + + + lmms::GigInstrument + + + Bank + + + + + Patch + 音色 + + + + Gain + 增益 + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + 琶音 + + + + Arpeggio type + 琶音类型 + + + + Arpeggio range + 琶音范围 + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + 跳过率 + + + + Miss rate + 丢失率 + + + + Arpeggio time + 琶音时间 + + + + Arpeggio gate + 琶音门限 + + + + Arpeggio direction + 琶音方向 + + + + Arpeggio mode + 琶音模式 + + + + Up + 向上 + + + + Down + 向下 + + + + Up and down + 先上后下 + + + + Down and up + 先下后上 + + + + Random + 随机 + + + + Free + 自由 + + + + Sort + 排序 + + + + Sync + 同步 + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + 低通 + + + + Hi-pass + 高通 + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + 全通 + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + + unnamed_track + 未命名轨道 + + + + Base note + + + + + First note + + + + + Last note + + + + + Volume + 音量 + + + + Panning + 声相 + + + + Pitch + 音高 + + + + Pitch range + 音域范围 + + + + Mixer channel + 混音器通道 + + + + Master pitch + 主音高 + + + + Enable/Disable MIDI CC + 启用/禁用 MIDI 控制器 + + + + CC Controller %1 + + + + + + Default preset + + + + + lmms::Keymap + + + empty + + + + + lmms::KickerInstrument + + + Start frequency + 起始频率 + + + + End frequency + 结束频率 + + + + Length + 长度 + + + + Start distortion + + + + + End distortion + + + + + Gain + 增益 + + + + Envelope slope + 包络线倾斜度 + + + + Noise + 噪音 + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + 输入音量 + + + + Output Volume + 输出音量 + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + + Link channels + + + + + lmms::LadspaEffect + + + Unknown LADSPA plugin %1 requested. + + + + + lmms::Lb302Synth + + + VCF Cutoff Frequency + + + + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller + + + + + Base value + + + + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + + Frequency Multiplier + + + + + Sample not found + + + + + lmms::MalletsInstrument + + + Hardness + + + + + Position + + + + + Vibrato gain + + + + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + + + + + lmms::MeterModel + + + Numerator + + + + + Denominator + + + + + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController + + + MIDI Controller + + + + + unnamed_midi_controller + + + + + lmms::MidiImport + + + + Setup incomplete + + + + + You have not set up a default soundfont in the settings dialog (Edit->Settings). Therefore no sound will be played back after importing this MIDI file. You should download a General MIDI soundfont, specify it in settings dialog and try again. + + + + + You did not compile LMMS with support for SoundFont2 player, which is used to add default sound to imported MIDI files. Therefore no sound will be played back after importing this MIDI file. + + + + + MIDI Time Signature Numerator + + + + + MIDI Time Signature Denominator + + + + + Numerator + + + + + Denominator + + + + + + Tempo + + + + + Track + + + + + lmms::MidiJack + + + JACK server down + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) + + + + + The JACK server seems to be shuted down. + When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (dialog message) + + + + + lmms::MidiPort + + + Input channel + + + + + Output channel + + + + + Input controller + + + + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + + Send MIDI-events + + + + + lmms::Mixer + + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + + + + + lmms::MixerRoute + + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + Osc 1 volume + + + + + Osc 1 panning + + + + + Osc 1 coarse detune + + + + + Osc 1 fine detune left + + + + + Osc 1 fine detune right + + + + + Osc 1 stereo phase offset + + + + + Osc 1 pulse width + + + + + Osc 1 sync send on rise + + + + + Osc 1 sync send on fall + + + + + Osc 2 volume + + + + + Osc 2 panning + + + + + Osc 2 coarse detune + + + + + Osc 2 fine detune left + + + + + Osc 2 fine detune right + + + + + Osc 2 stereo phase offset + + + + + Osc 2 waveform + + + + + Osc 2 sync hard + + + + + Osc 2 sync reverse + + + + + Osc 3 volume + + + + + Osc 3 panning + + + + + Osc 3 coarse detune + + + + + Osc 3 Stereo phase offset + + + + + Osc 3 sub-oscillator mix + + + + + Osc 3 waveform 1 + + + + + Osc 3 waveform 2 + + + + + Osc 3 sync hard + + + + + Osc 3 Sync reverse + + + + + LFO 1 waveform + + + + + LFO 1 attack + + + + + LFO 1 rate + + + + + LFO 1 phase + + + + + LFO 2 waveform + + + + + LFO 2 attack + + + + + LFO 2 rate + + + + + LFO 2 phase + + + + + Env 1 pre-delay + + + + + Env 1 attack + + + + + Env 1 hold + + + + + Env 1 decay + + + + + Env 1 sustain + + + + + Env 1 release + + + + + Env 1 slope + + + + + Env 2 pre-delay + + + + + Env 2 attack + + + + + Env 2 hold + + + + + Env 2 decay + + + + + Env 2 sustain + + + + + Env 2 release + + + + + Env 2 slope + + + + + Osc 2+3 modulation + + + + + Selected view + + + + + Osc 1 - Vol env 1 + + + + + Osc 1 - Vol env 2 + + + + + Osc 1 - Vol LFO 1 + + + + + Osc 1 - Vol LFO 2 + + + + + Osc 2 - Vol env 1 + + + + + Osc 2 - Vol env 2 + + + + + Osc 2 - Vol LFO 1 + + + + + Osc 2 - Vol LFO 2 + + + + + Osc 3 - Vol env 1 + + + + + Osc 3 - Vol env 2 + + + + + Osc 3 - Vol LFO 1 + + + + + Osc 3 - Vol LFO 2 + + + + + Osc 1 - Phs env 1 + + + + + Osc 1 - Phs env 2 + + + + + Osc 1 - Phs LFO 1 + + + + + Osc 1 - Phs LFO 2 + + + + + Osc 2 - Phs env 1 + + + + + Osc 2 - Phs env 2 + + + + + Osc 2 - Phs LFO 1 + + + + + Osc 2 - Phs LFO 2 + + + + + Osc 3 - Phs env 1 + + + + + Osc 3 - Phs env 2 + + + + + Osc 3 - Phs LFO 1 + + + + + Osc 3 - Phs LFO 2 + + + + + Osc 1 - Pit env 1 + + + + + Osc 1 - Pit env 2 + + + + + Osc 1 - Pit LFO 1 + + + + + Osc 1 - Pit LFO 2 + + + + + Osc 2 - Pit env 1 + + + + + Osc 2 - Pit env 2 + + + + + Osc 2 - Pit LFO 1 + + + + + Osc 2 - Pit LFO 2 + + + + + Osc 3 - Pit env 1 + + + + + Osc 3 - Pit env 2 + + + + + Osc 3 - Pit LFO 1 + + + + + Osc 3 - Pit LFO 2 + + + + + Osc 1 - PW env 1 + + + + + Osc 1 - PW env 2 + + + + + Osc 1 - PW LFO 1 + + + + + Osc 1 - PW LFO 2 + + + + + Osc 3 - Sub env 1 + + + + + Osc 3 - Sub env 2 + + + + + Osc 3 - Sub LFO 1 + + + + + Osc 3 - Sub LFO 2 + + + + + + Sine wave + + + + + Bandlimited Triangle wave + + + + + Bandlimited Saw wave + + + + + Bandlimited Ramp wave + + + + + Bandlimited Square wave + + + + + Bandlimited Moog saw wave + + + + + + Soft square wave + + + + + Absolute sine wave + + + + + + Exponential wave + + + + + White noise + + + + + Digital Triangle wave + + + + + Digital Saw wave + + + + + Digital Ramp wave + + + + + Digital Square wave + + + + + Digital Moog saw wave + + + + + Triangle wave + + + + + Saw wave + + + + + Ramp wave + + + + + Square wave + + + + + Moog saw wave + + + + + Abs. sine wave + + + + + Random + + + + + Random smooth + + + + + lmms::NesInstrument + + + Channel 1 enable + + + + + Channel 1 coarse detune + + + + + Channel 1 volume + + + + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + + Volume + + + + + lmms::OscillatorObject + + + Osc %1 waveform + + + + + Osc %1 harmonic + + + + + + Osc %1 volume + + + + + + Osc %1 panning + + + + + Osc %1 stereo detuning + + + + + Osc %1 coarse detuning + + + + + Osc %1 fine detuning left + + + + + Osc %1 fine detuning right + + + + + Osc %1 phase-offset + + + + + Osc %1 stereo phase-detuning + + + + + Osc %1 wave shape + + + + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 + + + + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller + + + + + Peak Controller Bug + + + + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + + Attack + + + + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + 音量 + + + + Volume: + 音量: + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + 设备 + + + + Channels + 通道 + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + 缩放控制 + + + + Horizontal zooming + 水平缩放 + + + + Vertical zooming + 垂直缩放 + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + + Rate + + + + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + + Phase + + + + + + Pre-delay + + + + + + Hold + + + + + + Decay + + + + + + Sustain + + + + + + Release + + + + + + Slope + + + + + Mix osc 2 with osc 3 + + + + + Modulate amplitude of osc 3 by osc 2 + + + + + Modulate frequency of osc 3 by osc 2 + + + + + Modulate phase of osc 3 by osc 2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + Modulation amount + + + + + lmms::gui::MultitapEchoControlDialog + + + Length + + + + + Step length: + + + + + Dry + + + + + Dry gain: + + + + + Stages + + + + + Low-pass stages: + + + + + Swap inputs + + + + + Swap left and right input channels for reflections + + + + + lmms::gui::NesInstrumentView + + + + + + Volume + + + + + + + Coarse detune + + + + + + + Envelope length + + + + + Enable channel 1 + + + + + Enable envelope 1 + + + + + Enable envelope 1 loop + + + + + Enable sweep 1 + + + + + + Sweep amount + + + + + + Sweep rate + + + + + + 12.5% Duty cycle + + + + + + 25% Duty cycle + + + + + + 50% Duty cycle + + + + + + 75% Duty cycle + + + + + Enable channel 2 + + + + + Enable envelope 2 + + + + + Enable envelope 2 loop + + + + + Enable sweep 2 + + + + + Enable channel 3 + + + + + Noise Frequency + + + + + Frequency sweep + + + + + Enable channel 4 + + + + + Enable envelope 4 + + + + + Enable envelope 4 loop + + + + + Quantize noise frequency when using note frequency + + + + + Use note frequency for noise + + + + + Noise mode + + + + + Master volume + + + + + Vibrato + + + + + lmms::gui::OpulenzInstrumentView + + + + Attack + + + + + + Decay + + + + + + Release + + + + + + Frequency multiplier + + + + + lmms::gui::OrganicInstrumentView + + + Distortion: + + + + + Volume: + + + + + Randomise + + + + + + Osc %1 waveform: + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + + + + + lmms::gui::Oscilloscope + + + Oscilloscope + + + + + Click to enable + + + + + lmms::gui::PatmanView + + + Open patch + + + + + Loop + + + + + Loop mode + + + + + Tune + + + + + Tune mode + + + + + No file selected + + + + + Open patch file + + + + + Patch-Files (*.pat) + + + + + lmms::gui::PatternClipView + + + Open in Pattern Editor + + + + + Reset name + + + + + Change name + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + + + + + Play/pause current pattern (Space) + + + + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + + Remove steps + + + + + Add steps + + + + + Clone Steps + + + + + lmms::gui::PeakControllerDialog + + + PEAK + + + + + LFO Controller + + + + + lmms::gui::PeakControllerEffectControlDialog + + + BASE + + + + + Base: + + + + + AMNT + + + + + Modulation amount: + + + + + MULT + + + + + Amount multiplicator: + + + + + ATCK + + + + + Attack: + + + + + DCAY + + + + + Release: + + + + + TRSH + + + + + Treshold: + + + + + Mute output + + + + + Absolute value + + + + + lmms::gui::PeakIndicator + + + -inf + + + + + lmms::gui::PianoRoll + + + Note Velocity + + + + + Note Panning + + + + + Mark/unmark current semitone + + + + + Mark/unmark all corresponding octave semitones + + + + + Mark current scale + + + + + Mark current chord + + + + + Unmark all + + + + + Select all notes on this key + + + + + Note lock + + + + + Last note + + + + + No key + + + + + No scale + + + + + No chord + + + + + Nudge + + + + + Snap + + + + + Velocity: %1% + + + + + Panning: %1% left + + + + + Panning: %1% right + + + + + Panning: center + + + + + Glue notes failed + + + + + Please select notes to glue first. + + + + + Please open a clip by double-clicking on it! + + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::PianoRollWindow + + + Play/pause current clip (Space) + + + + + Record notes from MIDI-device/channel-piano + + + + + Record notes from MIDI-device/channel-piano while playing song or pattern track + + + + + Record notes from MIDI-device/channel-piano, one step at the time + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Select mode (Shift+S) + + + + + Pitch Bend mode (Shift+T) + + + + + Quantize + + + + + Quantize positions + + + + + Quantize lengths + + + + + File actions + + + + + Import clip + + + + + + Export clip + + + + + Copy paste controls + + + + + Cut (%1+X) + + + + + Copy (%1+C) + + + + + Paste (%1+V) + + + + + Timeline controls + + + + + Glue + + + + + Knife + + + + + Fill + + + + + Cut overlaps + + + + + Min length as last + + + + + Max length as last + + + + + Zoom and note controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization + + + + + Note length + + + + + Key + + + + + Scale + + + + + Chord + + + + + Snap mode + + + + + Clear ghost notes + + + + + + Piano-Roll - %1 + + + + + + Piano-Roll - no clip + + + + + + XML clip file (*.xpt *.xptz) + + + + + Export clip success + + + + + Clip saved to %1 + + + + + Import clip. + + + + + You are about to import a clip, this will overwrite your current clip. Do you want to continue? + + + + + Open clip + 打开片断 + + + + Import clip success + + + + + Imported clip %1! + + + + + lmms::gui::PianoView + + + Base note + 基本音 + + + + First note + 第一个音符 + + + + Last note + 最后一个音符 + + + + lmms::gui::PluginBrowser + + + Instrument Plugins + 乐器插件 + + + + Instrument browser + 乐器浏览器 + + + + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + + + + + Search + 搜索 + + + + lmms::gui::PluginDescWidget + + + Send to new instrument track + 发送到新的乐器轨道 + + + + lmms::gui::ProjectNotes + + + Project Notes + 工程注释 + + + + Enter project notes here + 在这里写下你的工程注释。 + + + + Edit Actions + 编辑功能 + + + + &Undo + 撤销 (&U) + + + + %1+Z + %1+Z + + + + &Redo + 重做 (&R) + + + + %1+Y + %1+Y + + + + &Copy + 复制 (&C) + + + + %1+C + %1+C + + + + Cu&t + 剪切 (&T) + + + + %1+X + %1+X + + + + &Paste + 粘贴 (&P) + + + + %1+V + %1+V + + + + Format Actions + 格式功能 + + + + &Bold + 加粗 (&B) + + + + %1+B + %1+B + + + + &Italic + 斜体 (&I) + + + + %1+I + %1+I + + + + &Underline + 下划线 (&U) + + + + %1+U + %1+U + + + + &Left + 左对齐 (&L) + + + + %1+L + %1+L + + + + C&enter + 居中 (&E) + + + + %1+E + %1+E + + + + &Right + 右对齐 (&R) + + + + %1+R + %1+R + + + + &Justify + 匀齐 (&J) + + + + %1+J + %1+J + + + + &Color... + 颜色 (&C)... + + + + lmms::gui::RecentProjectsMenu + + + &Recently Opened Projects + 最近打开的工程 (&R) + + + + lmms::gui::RenameDialog + + + Rename... + 重命名... + + + + lmms::gui::ReverbSCControlDialog + + + Input + 输入 + + + + Input gain: + 输入增益: + + + + Size + 大小 + + + + Size: + 大小: + + + + Color + 颜色 + + + + Color: + 颜色: + + + + Output + 输出 + + + + Output gain: + 输出增益: + + + + lmms::gui::SaControlsDialog + + + Pause + 暂停 + + + + Pause data acquisition + + + + + Reference freeze + + + + + Freeze current input as a reference / disable falloff in peak-hold mode. + + + + + Waterfall + + + + + Display real-time spectrogram + + + + + Averaging + + + + + Enable exponential moving average + + + + + Stereo + 双声道 + + + + Display stereo channels separately + + + + + Peak hold + + + + + Display envelope of peak values + + + + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + 伽马值: + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + + + + + lmms::gui::SampleClipView + + + Double-click to open sample + 双击打开采样 + + + + Reverse sample + 反转采样 + + + + Set as ghost in automation editor + + + + + lmms::gui::SampleTrackView + + + Mixer channel + 混音器通道 + + + + Track volume + 轨道音量 + + + + Channel volume: + 通道音量: + + + + VOL + 音量 + + + + Panning + 声相 + + + + Panning: + 声相: + + + + PAN + 声相 + + + + %1: %2 + %1:%2 + + + + lmms::gui::SampleTrackWindow + + + Sample volume + 采样音量 + + + + Volume: + 音量: + + + + VOL + 音量 + + + + Panning + 声相 + + + + Panning: + 声相: + + + + PAN + 声相 + + + + Mixer channel + + + + + CHANNEL + 通道 + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + 设置 + + + + + General + + + + + Graphical user interface (GUI) + 图形用户界面 (GUI) + + + + Display volume as dBFS + 以 dBFS 为单位显示音量 + + + + Enable tooltips + 启用工具提示 + + + + Enable master oscilloscope by default + + + + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + 语言 + + + + + Performance + 性能 + + + + Autosave + 自动保存 + + + + Enable autosave + 启用自动保存 + + + + Allow autosave while playing + 允许在播放时自动保存 + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + 插件 + + + + VST plugins embedding: + + + + + No embedding + + + + + Embed using Qt API + + + + + Embed using native Win32 API + + + + + Embed using XEmbed protocol + + + + + Keep plugin windows on top when not embedded + + + + + Keep effects running even without input + + + + + + Audio + 音频 + + + + Audio interface + 音频接口 + + + + Buffer size + 缓冲区大小 + + + + Reset to default value + 重置为默认值 + + + + + MIDI + MIDI + + + + MIDI interface + MIDI 接口 + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + 录制时的行为 + + + + Auto-quantize notes in Piano Roll + 在钢琴卷帘中自动量化音符 + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + + Paths + 路径 + + + + LMMS working directory + LMMS工作目录 + + + + VST plugins directory + VST插件目录 + + + + LADSPA plugins directories + LADSPA 插件目录 + + + + SF2 directory + SF2 目录 + + + + Default SF2 + 默认 SF2 + + + + GIG directory + GIG 目录 + + + + Theme directory + 主题文件目录 + + + + Background artwork + 背景图片 + + + + Some changes require restarting. + + + + + OK + 确定 + + + + Cancel + 取消 + + + + minutes + 分钟 + + + + minute + 分钟 + + + + Disabled + 已禁用 + + + + Autosave interval: %1 + 自动保存间隔:%1 + + + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. + + + + + The currently selected value is less than or equal to 32. Some plugins may not be available. + + + + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + 选择 LMMS 工作目录 + + + + Choose your VST plugins directory + 选择 VST 插件目录 + + + + Choose your LADSPA plugins directory + 选择 LADSPA 插件目录 + + + + Choose your SF2 directory + 选择 SF2 目录 + + + + Choose your default SF2 + 选择默认 SF2 + + + + Choose your GIG directory + 选择 GIG 目录 + + + + Choose your theme directory + 选择主题目录 + + + + Choose your background picture + 选择背景图片 + + + + lmms::gui::Sf2InstrumentView + + + + Open SoundFont file + 打开 SoundFont 文件 + + + + Choose patch + + + + + Gain: + 增益: + + + + Apply reverb (if supported) + 应用混响(如果支持) + + + + Room size: + 房间大小: + + + + Damping: + 阻尼: + + + + Width: + 宽度: + + + + + Level: + 级别: + + + + Apply chorus (if supported) + 应用和声 (如果支持) + + + + Voices: + 复音数: + + + + Speed: + 速度: + + + + Depth: + 深度: + + + + SoundFont Files (*.sf2 *.sf3) + SoundFont 文件 (*.sf2 *.sf3) + + + + lmms::gui::SidInstrumentView + + + Volume: + 音量: + + + + Resonance: + 共鸣: + + + + + Cutoff frequency: + + + + + High-pass filter + 高通滤波器 + + + + Band-pass filter + 带通滤波器 + + + + Low-pass filter + 低通滤波器 + + + + Voice 3 off + + + + + MOS6581 SID + MOS6581 SID + + + + MOS8580 SID + MOS8580 SID + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + 脉冲波 + + + + Triangle wave + 三角波 + + + + Saw wave + 锯齿波 + + + + Noise + 噪音 + + + + Sync + 同步 + + + + Ring modulation + + + + + Filtered + + + + + Test + 测试 + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + 关闭 + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + 复制 MIDI 片段到剪贴板 + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + 阈值 + + + + Fade Out + 淡出 + + + + Reset + 重置 + + + + Midi + MIDI + + + + BPM + BPM + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + 点击加载采样 + + + + lmms::gui::SongEditor + + + Could not open file + 无法打开文件 + + + + Could not open file %1. You probably have no permissions to read this file. + Please make sure to have at least read permissions to the file and try again. + + + + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + 错误 + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + + Could not write file + 无法写入文件 + + + + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. + + + + + An unknown error has occurred and the file could not be saved. + + + + + Error in file + + + + + The file %1 seems to contain errors and therefore can't be loaded. + + + + + template + 模板 + + + + project + + + + + Version difference + + + + + This %1 was created with LMMS %2 + + + + + Zoom + 缩放 + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + + Master volume + 主音量 + + + + + + Global transposition + + + + + 1/%1 Bar + 1/%1 小节 + + + + %1 Bars + %1 小节 + + + + Value: %1% + + + + + Value: %1 keys + + + + + lmms::gui::SongEditorWindow + + + Song-Editor + 歌曲编辑器 + + + + Play song (Space) + 播放歌曲(空格) + + + + Record samples from Audio-device + + + + + Record samples from Audio-device while playing song or pattern track + + + + + Stop song (Space) + 停止歌曲(空格) + + + + Track actions + 轨道动作 + + + + Add pattern-track + + + + + Add sample-track + 添加采样轨道 + + + + Add automation-track + 添加自动控制轨道 + + + + Edit actions + 编辑动作 + + + + Draw mode + 绘制模式 + + + + Knife mode (split sample clips) + + + + + Edit mode (select and move) + + + + + Timeline controls + + + + + Bar insert controls + + + + + Insert bar + 插入小节 + + + + Remove bar + 删除小节 + + + + Zoom controls + 缩放控制 + + + + + Zoom + 缩放 + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + + + + + lmms::gui::StepRecorderWidget + + + Hint + 提示 + + + + Move recording curser using <Left/Right> arrows + + + + + lmms::gui::StereoEnhancerControlDialog + + + WIDTH + + + + + Width: + + + + + lmms::gui::StereoMatrixControlDialog + + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + + Close + 关闭 + + + + Maximize + 最大化 + + + + Restore + 还原 + + + + lmms::gui::TapTempoView + + + 0 + 0 + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + 静音 + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + 重置 + + + + Reset counter and sidebar information + + + + + Sync + 同步 + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + + + + + lmms::gui::TemplatesMenu + + + New from template + 从模板新建工程 + + + + lmms::gui::TempoSyncBarModelEditor + + + + Tempo Sync + 节奏同步 + + + + No Sync + 无同步 + + + + Eight beats + 八拍 + + + + Whole note + 全音符 + + + + Half note + 二分音符 + + + + Quarter note + 四分音符 + + + + 8th note + 八分音符 + + + + 16th note + 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 分音符 + + + + lmms::gui::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 + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + 时间单位 + + + + MIN + + + + + SEC + + + + + MSEC + 毫秒 + + + + BAR + 小节 + + + + BEAT + + + + + TICK + 嘀嗒 + + + + lmms::gui::TimeLineWidget + + + Auto scrolling + + + + + Stepped auto scrolling + + + + + Continuous auto scrolling + + + + + Auto scrolling disabled + + + + + Loop points + 循环点 + + + + After stopping go back to beginning + + + + + After stopping go back to position at which playing was started + + + + + After stopping keep position + + + + + Hint + 提示 + + + + Press <%1> to disable magnetic loop points. + + + + + Set loop begin here + + + + + Set loop end here + + + + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + lmms::gui::TrackContentWidget + + + Paste + 粘贴 + + + + lmms::gui::TrackOperationsWidget + + + Press <%1> while clicking on move-grip to begin a new drag'n'drop action. + + + + + Actions + + + + + + Mute + 静音 + + + + + Solo + 独奏 + + + + After removing a track, it can not be recovered. Are you sure you want to remove track "%1"? + + + + + Confirm removal + + + + + Don't ask again + 不再询问 + + + + Clone this track + 克隆此轨道 + + + + Remove this track + 移除此轨道 + + + + Clear this track + 清除此轨道 + + + + Channel %1: %2 + + + + + Assign to new Mixer Channel + + + + + Turn all recording on + + + + + Turn all recording off + + + + + Track color + 轨道颜色 + + + + Change + 更改 + + + + Reset + 重置 + + + + Pick random + + + + + Reset clip colors + + + + + lmms::gui::TripleOscillatorView + + + Modulate phase of oscillator 1 by oscillator 2 + + + + + Modulate amplitude of oscillator 1 by oscillator 2 + + + + + Mix output of oscillators 1 & 2 + + + + + Synchronize oscillator 1 with oscillator 2 + + + + + Modulate frequency of oscillator 1 by oscillator 2 + + + + + Modulate phase of oscillator 2 by oscillator 3 + + + + + Modulate amplitude of oscillator 2 by oscillator 3 + + + + + Mix output of oscillators 2 & 3 + + + + + Synchronize oscillator 2 with oscillator 3 + + + + + Modulate frequency of oscillator 2 by oscillator 3 + + + + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 coarse detuning: + + + + + semitones + 半音 + + + + Osc %1 fine detuning left: + + + + + + cents + 音分 + + + + Osc %1 fine detuning right: + + + + + Osc %1 phase-offset: + + + + + + degrees + + + + + Osc %1 stereo phase-detuning: + + + + + Sine wave + 正弦波 + + + + Triangle wave + 三角波 + + + + Saw wave + 锯齿波 + + + + Square wave + 方波 + + + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + 白噪音 + + + + User-defined wave + 用户自定义波形 + + + + Use alias-free wavetable oscillators. + + + + + lmms::gui::VecControlsDialog + + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + + Increment version number + + + + + Decrement version number + + + + + Save Options + 保存选项 + + + + already exists. Do you want to replace it? + 已存在,要替换吗? + + + + lmms::gui::VestigeInstrumentView + + + + Open VST plugin + 打开 VST 插件 + + + + Control VST plugin from LMMS host + 从 LMMS 宿主控制 VST 插件 + + + + Open VST plugin preset + 打开 VST 插件预设 + + + + Previous (-) + 上一个 (-) + + + + Save preset + 保存预设 + + + + Next (+) + 下一个 (+) + + + + Show/hide GUI + 显示/隐藏界面 + + + + Turn off all notes + + + + + DLL-files (*.dll) + DLL 文件 (*.dll) + + + + EXE-files (*.exe) + EXE 文件 (*.exe) + + + + SO-files (*.so) + SO 文件 (*.so) + + + + No VST plugin loaded + 未载入 VST 插件 + + + + Preset + 预设 + + + + by + + + + + - VST plugin control + - VST 插件控制 + + + + lmms::gui::VibedView + + + Enable waveform + 启用波形 + + + + + Smooth waveform + 平滑波形 + + + + + Normalize waveform + + + + + + Sine wave + 正弦波 + + + + + Triangle wave + 三角波 + + + + + Saw wave + 锯齿波 + + + + + Square wave + 方波 + + + + + White noise + 白噪音 + + + + + User-defined wave + 用户自定义波形 + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + + + + + lmms::gui::VstEffectControlDialog + + + Show/hide + 显示/隐藏 + + + + Control VST plugin from LMMS host + 从 LMMS 宿主控制 VST 插件 + + + + Open VST plugin preset + 打开 VST 插件预设 + + + + Previous (-) + 上一个 (-) + + + + Next (+) + 下一个 (+) + + + + Save preset + + + + + + Effect by: + + + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + lmms::gui::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 + 选择振荡器 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 + 方波 + + + + lmms::gui::WaveShaperControlDialog + + + INPUT + 输入 + + + + Input gain: + 输入增益: + + + + OUTPUT + 输出 + + + + Output gain: + 输出增益: + + + + + Reset wavegraph + 重置波形 + + + + + Smooth wavegraph + 平滑波形 + + + + + Increase wavegraph amplitude by 1 dB + 波形增益值增加 1dB + + + + + Decrease wavegraph amplitude by 1 dB + 波形增益值减少 1dB + + + + Clip input + 输入压限 + + + + Clip input signal to 0 dB + 将输入信号限制到 0dB + + + + lmms::gui::XpressiveView + + + Draw your own waveform here by dragging your mouse on this graph. + 使用鼠标在此图像上绘制你自己的波形。 + + + + Select oscillator W1 + + + + + Select oscillator W2 + + + + + Select oscillator W3 + + + + + Select output O1 + + + + + Select output O2 + + + + + Open help window + 打开帮助窗口 + + + + + Sine wave + 正弦波 + + + + + Moog-saw wave + Moog 锯齿波 + + + + + Exponential wave + 指数爆炸波形 + + + + + Saw wave + 锯齿波 + + + + + User-defined wave + 用户自定义波形 + + + + + Triangle wave + 三角波 + + + + + Square wave + 方波 + + + + + White noise + 白噪音 + + + + WaveInterpolate + + + + + ExpressionValid + + + + + General purpose 1: + + + + + General purpose 2: + + + + + General purpose 3: + + + + + O1 panning: + + + + + O2 panning: + + + + + Release transition: + + + + + Smoothness + + + + + lmms::gui::ZynAddSubFxView + + + Portamento: + + + + + PORT + + + + + Filter frequency: + + + + + FREQ + + + + + Filter resonance: + + + + + RES + + + + + Bandwidth: + + + + + BW + + + + + FM gain: + + + + + FM GAIN + + + + + Resonance center frequency: + + + + + RES CF + + + + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI + 显示图形界面 + + \ No newline at end of file diff --git a/data/locale/zh_TW.ts b/data/locale/zh_TW.ts index 261d7c666..7a4f5ce9c 100644 --- a/data/locale/zh_TW.ts +++ b/data/locale/zh_TW.ts @@ -1,5180 +1,6855 @@ - + 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 授權協議 - AmplifierControlDialog + AboutJuceDialog - - VOL - VOL - - - - Volume: - 音量: - - - - PAN - PAN - - - - Panning: - 聲相: - - - - LEFT - - - - - Left gain: - 左增益: - - - - RIGHT - - - - - Right gain: - 右增益: - - - - AmplifierControls - - - Volume - 音量 - - - - Panning - 聲相 - - - - Left gain - 左增益 - - - - Right gain - 右增益 - - - - AudioAlsaSetupWidget - - - DEVICE - 裝置 - - - - CHANNELS - 聲道數 - - - - AudioFileProcessorView - - - Open 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) 之類的值不會被重置。因此聽起來會和取樣來源有差異。 - - - - 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)之間播放。 - - - - 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) + + About JUCE - - 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: - 起始點: - - - - 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: - 採樣長度: - - - - AudioJack - - - JACK client restarted - JACK 客戶端已重啓 - - - - LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. - LMMS 由於某些原因與 JACK 中斷連線,因此 LMMS 的 JACK 後端已重新啟動,您必須手動重新連線。 - - - - JACK server down - JACK 伺服器發生問題 - - - - The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. - JACK 伺服器似乎發生問題,而且無法重新啟動,因此 LMMS 無法繼續執行。請儲存專案,然後重新啟動 JACK 和 LMMS。 - - - - CLIENT-NAME - 客戶端名稱 - - - - CHANNELS - 聲道數 - - - - AudioOss::setupWidget - - - DEVICE - 裝置 - - - - CHANNELS - 聲道數 - - - - AudioPortAudio::setupWidget - - - BACKEND - 後端 - - - - DEVICE - 裝置 - - - - AudioPulseAudio::setupWidget - - - DEVICE - 裝置 - - - - CHANNELS - 聲道數 - - - - AudioSdl::setupWidget - - - DEVICE - 裝置 - - - - AudioSndio::setupWidget - - - DEVICE - 裝置 - - - - CHANNELS - 聲道數 - - - - AudioSoundIo::setupWidget - - - BACKEND - 後端 - - - - DEVICE - 裝置 - - - - AutomatableModel - - - &Reset (%1%2) - 重設(%1%2)(&R) - - - - &Copy value (%1%2) - 複製值(%1%2)(&C) - - - - &Paste value (%1%2) - 貼上值(%1%2)(&P) - - - - Edit song-global automation - 編輯歌曲全局的自動控制裝置 - - - - Remove song-global automation - 移除歌曲全域自動控制裝置 - - - - Remove all linked controls - 移除所有已連線的控制器 - - - - Connected to %1 - 已連線至 %1 - - - - Connected to controller - 連線至控制器 - - - - Edit connection... - 編輯連線… - - - - Remove connection - 移除連線 - - - - Connect to controller... - 連線至控制器… - - - - AutomationEditor - - - Please open an automation pattern with the context menu of a control! - 請透過控制的右鍵選單開啟自動控制模式! - - - - Values copied - 值已複製 - - - - All selected values were copied to the clipboard. - 所有選中的值已複製。 - - - - AutomationEditorWindow - - - Play/pause current pattern (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. - 點擊這裏停止播放片段。 - - - - Edit actions - 編輯功能 - - - - 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. - 點擊這裡來翻轉圖形 (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 + + <b>About JUCE</b> - - Tension value for spline + + This program uses JUCE version 3.x.x. - - 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. + + JUCE is an open-source cross-platform C++ application framework for creating high quality desktop and mobile applications. + +The core JUCE modules (juce_audio_basics, juce_audio_devices, juce_core and juce_events) are permissively licensed under the terms of the ISC license. +Other modules are covered by a GNU GPL 3.0 license. + +Copyright (C) 2022 Raw Material Software Limited. - - 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 - 縮放控制 - - - - 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 - %1 - 自動控制編輯器 - %1 - - - - Model is already connected to this pattern. - 模型已連接到此片段。 - - - - AutomationPattern - - - Drag a control while pressing <%1> - 按住<%1>拖動控制器 - - - - AutomationPatternView - - - 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. - 模型已連接到此片段。 - - - - AutomationTrack - - - Automation track - 自動控制軌道 - - - - BBEditor - - - 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 sample-track - 新增採樣音軌 - - - - Add automation-track - 添加自動控制軌道 - - - - Remove steps - 移除音階 - - - - Add steps - 添加音階 - - - - Clone Steps + + This program uses JUCE version - BBTCOView + AudioDeviceSetupWidget - - Open in Beat+Bassline-Editor - 在節拍+Bassline編輯器中打開 - - - - Reset name - 重置名稱 - - - - Change name - 修改名稱 - - - - Change color - 改變顏色 - - - - Reset color to default - 重置顏色 + + [System Default] + - BBTrack + CarlaAboutW - - Beat/Bassline %1 - 節拍/Bassline %1 + + About Carla + - - Clone of %1 - %1 的副本 + + 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) + - BassBoosterControlDialog + CarlaHostW - - FREQ - 頻率 - - - - Frequency: - 頻率: - - - - GAIN - 增益 - - - - Gain: - 增益: - - - - RATIO - 比率 - - - - Ratio: - 比率: - - - - BassBoosterControls - - - Frequency - 頻率 - - - - Gain - 增益 - - - - Ratio - 比率 - - - - BitcrushControlDialog - - - IN - 輸入 - - - - OUT - 輸出 - - - - - GAIN - 增益 - - - - Input Gain: - 輸入增益: - - - - NOISE + + MainWindow - - Input Noise: - 輸入噪音: - - - - Output Gain: - 輸出增益: - - - - CLIP - 壓限 - - - - Output Clip: - 輸出壓限: - - - - Rate Enabled + + Rack - - Enable samplerate-crushing + + Patchbay - - Depth Enabled - 深度已啓用 - - - - Enable bitdepth-crushing + + Logs - - FREQ - 頻率 - - - - Sample rate: - 採樣率: - - - - STEREO + + Loading... - - Stereo difference: - 雙聲道差異: - - - - QUANT + + Save - - Levels: - 級別: + + Clear + - - - CaptionMenu - + + Ctrl+L + + + + + Auto-Scroll + + + + + Buffer Size: + + + + + Sample Rate: + + + + + ? Xruns + + + + + DSP Load: %p% + + + + + &File + 檔案(&F) + + + + &Engine + + + + + &Plugin + + + + + Macros (all plugins) + + + + + &Canvas + + + + + Zoom + + + + + &Settings + + + + &Help 幫助(&H) - - Help (not available) - 幫助(不可用) - - - - CarlaInstrumentView - - - Show GUI - 顯示圖形界面 - - - - Click here to show or hide the graphical user interface (GUI) of Carla. - 點擊此處可以顯示或隱藏 Carla 的圖形界面。 - - - - Controller - - - Controller %1 - 控制器%1 - - - - ControllerConnectionDialog - - - Connection Settings - 連接設置 - - - - MIDI CONTROLLER - MIDI控制器 - - - - Input channel - 輸入通道 - - - - CHANNEL - 通道 - - - - Input controller - 輸入控制器 - - - - CONTROLLER - 控制器 - - - - - Auto Detect - 自動檢測 - - - - MIDI-devices to receive MIDI-events from - 用來接收 MIDI 事件的MIDI 設備 - - - - USER CONTROLLER - 用戶控制器 - - - - MAPPING FUNCTION - 映射函數 - - - - OK - 確定 - - - - Cancel - 取消 - - - - LMMS - LMMS - - - - Cycle Detected. - 檢測到環路。 - - - - ControllerRackView - - - Controller Rack - 控制器機架 - - - - Add - 增加 - - - - Confirm Delete - 刪除前確認 - - - - Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. - 確定要刪除嗎?此控制器仍處於被連接狀態。此操作不可撤銷。 - - - - ControllerView - - - Controls - 控制器 - - - - Controllers are able to automate the value of a knob, slider, and other controls. - 控制器可以自動控制旋鈕,滑塊和其他控件的值。 - - - - Rename controller - 重命名控制器 - - - - Enter the new name for this controller - 輸入這個控制器的新名稱 - - - - LFO + + Tool Bar - - &Remove this controller + + Disk - - Re&name this controller - - - - - CrossoverEQControlDialog - - - Band 1/2 Crossover: + + + Home - - Band 2/3 Crossover: + + Transport - - Band 3/4 Crossover: + + Playback Controls - - Band 1 Gain: + + Time Information - - Band 2 Gain: + + Frame: - - Band 3 Gain: + + 000'000'000 - - 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 - - - - - AMNT - - - - - Lfo Amt - - - - - Out Gain - - - - - Gain - 增益 - - - - DualFilterControlDialog - - - - FREQ - 頻率 - - - - - Cutoff frequency - 切除頻率 - - - - - RESO - - - - - - Resonance - 共鳴 - - - - - GAIN - 增益 - - - - - Gain - 增益 - - - - MIX - - - - - Mix - 混合 - - - - Filter 1 enabled - 已啓用過濾器 1 - - - - Filter 2 enabled - 已啓用過濾器 2 - - - - Click to enable/disable Filter 1 - 點擊啓用/禁用過濾器 1 - - - - Click to enable/disable Filter 2 - 點擊啓用/禁用過濾器 2 - - - - DualFilterControls - - - Filter 1 enabled - 過濾器1 已啓用 - - - - Filter 1 type - 過濾器 1 類型 - - - - Cutoff 1 frequency - 濾波器 1 截頻 - - - - Q/Resonance 1 - 濾波器 1 Q值 - - - - Gain 1 - 增益 1 - - - - Mix - 混合 - - - - Filter 2 enabled - 已啓用過濾器 2 - - - - Filter 2 type - 過濾器 1 類型 {2 ?} - - - - Cutoff 2 frequency - 濾波器 2 截頻 - - - - Q/Resonance 2 - 濾波器 2 Q值 - - - - Gain 2 - 增益 2 - - - - - LowPass - 低通 - - - - - HiPass - 高通 - - - - - BandPass csg - 帶通 csg - - - - - BandPass czpg - 帶通 czpg - - - - - Notch - 凹口濾波器 - - - - - Allpass - 全通 - - - - - Moog - Moog - - - - - 2x LowPass - 2 個低通串聯 - - - - - RC LowPass 12dB - RC 低通(12dB) - - - - - RC BandPass 12dB - RC 帶通(12dB) - - - - - RC HighPass 12dB - RC 高通(12dB) - - - - - RC LowPass 24dB - RC 低通(24dB) - - - - - RC BandPass 24dB - RC 帶通(24dB) - - - - - RC HighPass 24dB - RC 高通(24dB) - - - - - Vocal Formant Filter - 人聲移除過濾器 - - - - - 2x Moog - - - - - - SV LowPass - - - - - - SV BandPass - - - - - - SV HighPass - - - - - - SV Notch - - - - - - Fast Formant - - - - - - Tripole - - - - - Editor - - - Transport controls - - - - - Play (Space) - 播放(空格) - - - - Stop (Space) - 停止(空格) - - - - Record - 錄音 - - - - Record while playing - 播放時錄音 - - - - Effect - - - Effect enabled - 啓用效果器 - - - - Wet/Dry mix - 幹/溼混合 - - - - Gate - 門限 - - - - Decay - 衰減 - - - - EffectChain - - - Effects enabled - 啓用效果器 - - - - EffectRackView - - - EFFECTS CHAIN - 效果器鏈 - - - - Add effect - 增加效果器 - - - - EffectSelectDialog - - - Add effect - 增加效果器 - - - - - Name - 名稱 - - - - Type - 類型 - - - - Description - 描述 - - - - Author - - - - - 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. + + 00:00:00 - - Move &up - 向上移(&U) - - - - Move &down - 向下移(&D) - - - - &Remove this plugin - 移除此插件(&R) - - - - EnvelopeAndLfoParameters - - - Predelay - 預延遲 - - - - Attack - 打進聲 - - - - Hold - 保持 - - - - Decay - 衰減 - - - - Sustain - 持續 - - - - Release - 釋放 - - - - Modulation - 調製 - - - - LFO Predelay - LFO 預延遲 - - - - LFO Attack - LFO 打進聲(attack) - - - - LFO speed - LFO 速度 - - - - LFO Modulation - LFO 調製 - - - - LFO Wave Shape - LFO 波形形狀 - - - - Freq x 100 - 頻率 x 100 - - - - 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. - 使用預延遲旋鈕設定此包絡的預延遲,較大的值會加長包絡開始的時間。 - - - - - 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 + + BBT: - - - 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. + + 000|00|0000 - - LFO- attack: + + Settings + 設置 + + + + BPM - - 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 JACK Transport - - SPD + + Use Ableton Link - - LFO speed: + + &New + 新建(&N) + + + + Ctrl+N - - 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. + + &Open... + 打開(&O)... + + + + + Open... - - 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. + + Ctrl+O - - Click here for a sine-wave. - 點擊這裡使用正弦波。 + + &Save + 保存(&S) - - 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 + + Ctrl+S - - MODULATE ENV-AMOUNT + + Save &As... + 另存爲(&A)... + + + + + Save As... - - Click here to make the envelope-amount controlled by this LFO. + + Ctrl+Shift+S - - control envelope-amount by this LFO + + &Quit + 退出(&Q) + + + + Ctrl+Q - - ms/LFO: + + &Start - - Hint - 提示 - - - - Drag a sample from somewhere and drop it in this window. - 把樣本檔案拖到這個視窗上放開。 - - - - EqControls - - - Input gain - 輸入增益 - - - - Output gain - 輸出增益 - - - - Low shelf gain + + F5 - - Peak 1 gain + + St&op - - Peak 2 gain + + F6 - - Peak 3 gain + + &Add Plugin... - - Peak 4 gain + + Ctrl+A - - High Shelf gain + + &Remove All - - HP res + + Enable - - Low Shelf res + + Disable - - Peak 1 BW + + 0% Wet (Bypass) - - Peak 2 BW + + 100% Wet - - Peak 3 BW + + 0% Volume (Mute) - - Peak 4 BW + + 100% Volume - - High Shelf res + + Center Balance - - LP res + + &Play - - HP freq + + Ctrl+Shift+P - - Low Shelf freq + + &Stop - - Peak 1 freq + + Ctrl+Shift+X - - Peak 2 freq + + &Backwards - - Peak 3 freq + + Ctrl+Shift+B - - Peak 4 freq + + &Forwards - - High shelf freq + + Ctrl+Shift+F - - LP freq + + &Arrange - - HP active + + Ctrl+G - - Low shelf active + + + &Refresh - - Peak 1 active + + Ctrl+R - - Peak 2 active + + Save &Image... - - Peak 3 active + + Auto-Fit - - Peak 4 active + + Zoom In - - High shelf active + + Ctrl++ - - LP active + + Zoom Out - - LP 12 + + Ctrl+- - - LP 24 + + Zoom 100% - - LP 48 + + Ctrl+1 - - HP 12 + + Show &Toolbar - - HP 24 + + &Configure Carla - - HP 48 + + &About - - low pass type + + About &JUCE - - high pass type + + About &Qt - - Analyse IN + + Show Canvas &Meters - - Analyse OUT + + Show Canvas &Keyboard + + + + + Show Internal + + + + + Show External + + + + + Show Time Panel + + + + + Show &Side Panel + + + + + Ctrl+P + + + + + &Connect... + + + + + Compact Slots + + + + + Expand Slots + + + + + Perform secret 1 + + + + + Perform secret 2 + + + + + Perform secret 3 + + + + + Perform secret 4 + + + + + Perform secret 5 + + + + + Add &JACK Application... + + + + + &Configure driver... + + + + + Panic + + + + + Open custom driver panel... + + + + + Save Image... (2x zoom) + + + + + Save Image... (4x zoom) + + + + + Copy as Image to Clipboard + + + + + Ctrl+Shift+C - EqControlsDialog + CarlaHostWindow - - HP + + Export as... - - Low Shelf + + + + + Error + 錯誤 + + + + Failed to load project - - Peak 1 + + Failed to save project - - Peak 2 + + Quit + 退出 + + + + Are you sure you want to quit Carla? - - Peak 3 + + Could not connect to Audio backend '%1', possible reasons: +%2 - - Peak 4 + + Could not connect to Audio backend '%1' - - High Shelf + + Warning - - LP - - - - - In Gain - - - - - - - Gain - 增益 - - - - Out Gain - - - - - Bandwidth: - - - - - Octave - - - - - Resonance : - - - - - Frequency: - 頻率: - - - - lp grp - - - - - hp grp + + There are still some plugins loaded, you need to remove them to stop the engine. +Do you want to do this now? - EqHandle + CarlaSettingsW - - Reso: + + Settings + 設置 + + + + main - - BW: + + canvas - - - Freq: + + 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 + + + + + Use "Classic" as default rack skin + + + + + Interface refresh interval: + + + + + + ms + + + + + Show console output in Logs tab (needs engine restart) + + + + + Show a confirmation dialog before quitting + + + + + + Theme + + + + + Use Carla "PRO" theme (needs restart) + + + + + Color scheme: + + + + + Black + + + + + System + + + + + Enable experimental features + + + + + <b>Canvas</b> + + + + + Bezier Lines + + + + + Theme: + + + + + Size: + + + + + 775x600 + + + + + 1550x1200 + + + + + 3100x2400 + + + + + 4650x3600 + + + + + 6200x4800 + + + + + 12400x9600 + + + + + Options + + + + + Auto-hide groups with no ports + + + + + Auto-select items on hover + + + + + Basic eye-candy (group shadows) + + + + + Render Hints + + + + + Anti-Aliasing + + + + + Full canvas repaints (slower, but prevents drawing issues) + + + + + <b>Engine</b> + + + + + + Core + + + + + Single Client + + + + + Multiple Clients + + + + + + Continuous Rack + + + + + + Patchbay + + + + + Audio driver: + + + + + Process mode: + + + + + + + + Maximum number of parameters to allow in the built-in 'Edit' dialog + + + + + Max Parameters: + + + + + ... + + + + + Reset Xrun counter after project load + + + + + Plugin UIs + + + + + + How much time to wait for OSC GUIs to ping back the host + + + + + UI Bridge Timeout: + + + + + Use OSC-GUI bridges when possible, this way separating the UI from DSP code + + + + + Use UI bridges instead of direct handling when possible + + + + + Make plugin UIs always-on-top + + + + + Make plugin UIs appear on top of Carla (needs restart) + + + + + NOTE: Plugin-bridge UIs cannot be managed by Carla on macOS + + + + + + Restart the engine to load the new settings + + + + + <b>OSC</b> + + + + + Enable OSC + + + + + Enable TCP port + + + + + + Use specific port: + + + + + Overridden by CARLA_OSC_TCP_PORT env var + + + + + + Use randomly assigned port + + + + + Enable UDP port + + + + + Overridden by CARLA_OSC_UDP_PORT env var + + + + + DSSI UIs require OSC UDP port enabled + + + + + <b>File Paths</b> + + + + + Audio + 音頻 + + + + MIDI + MIDI + + + + Used for the "audiofile" plugin + + + + + Used for the "midifile" plugin + + + + + + Add... + + + + + + Remove + + + + + + Change... + + + + + <b>Plugin Paths</b> + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + SF2/3 + + + + + SFZ + + + + + JSFX + + + + + CLAP + + + + + Restart Carla to find new plugins + + + + + <b>Wine</b> + + + + + Executable + + + + + Path to 'wine' binary: + + + + + Prefix + + + + + Auto-detect Wine prefix based on plugin filename + + + + + Fallback: + + + + + Note: WINEPREFIX env var is preferred over this fallback + + + + + Realtime Priority + + + + + Base priority: + + + + + WineServer priority: + + + + + These options are not available for Carla as plugin + + + + + <b>Experimental</b> + + + + + Experimental options! Likely to be unstable! + + + + + Enable plugin bridges + + + + + Enable Wine bridges + + + + + Enable jack applications + + + + + Export single plugins to LV2 + + + + + Use system/desktop-theme icons (needs restart) + + + + + Load Carla backend in global namespace (NOT RECOMMENDED) + + + + + Fancy eye-candy (fade-in/out groups, glow connections) + + + + + Use OpenGL for rendering (needs restart) + + + + + High Quality Anti-Aliasing (OpenGL only) + + + + + Render Ardour-style "Inline Displays" + + + + + Force mono plugins as stereo by running 2 instances at the same time. +This mode is not available for VST plugins. + + + + + Force mono plugins as stereo + + + + + When enabled, Carla will try to prevent plugins from doing things that might mess up the audio or cause xruns, such as fork(), gtk_init() and similar. + + + + + Prevent unsafe calls from plugins (needs restart) + + + + + Run plugins in a separate process, so if they crash it does not affect Carla. +Plugins get automatically deactivated in such cases. +Reactvate them to start the process again, with the last saved state applied to it. + + + + + Run plugins in bridge mode when possible + + + + + + + + Add Path + + + + + Dialog + + + Carla Control - Connect + + + + + Remote setup + + + + + UDP Port: + + + + + Remote host: + + + + + TCP Port: + + + + + Set value + + + + + TextLabel + + + + + Scale Points + + + + + DriverSettingsW + + + Driver Settings + + + + + Device: + + + + + Buffer size: + + + + + Sample rate: + 採樣率: + + + + Triple buffer + + + + + Show Driver Control Panel + + + + + Restart the engine to load the new settings 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 只導出迴環標記中間的部分 - - Start - 開始 + + Render Looped Section: + - - Cancel - 取消 + + time(s) + - - Could not open file - 無法開啟檔案 + + 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! - 無法開啟 %1 以進行寫入。 -請確認您有權限存取此檔案,以及包含此檔案的目錄後再試一次。 + + File format: + 檔案格式: - - Export project to %1 - 導出項目到 %1 + + Sampling rate: + - - Error - 錯誤 + + 44100 Hz + 44100 Hz - - Error while determining file-encoder device. Please try to choose a different output format. - 偵測檔案編碼裝置時發生錯誤。請嘗試使用其他輸出格式。 + + 48000 Hz + 48000 Hz - - Rendering: %1% - 渲染中:%1% + + 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: - (fastest) + + 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 - (default) + + Sinc worst (fastest) - (smallest) - - - - - Expressive - - Selected graph + + Sinc medium (recommended) - A1 + + Sinc best (slowest) - A2 - + + Start + 開始 - A3 - - - - W1 smoothing - - - - W2 smoothing - - - - W3 smoothing - - - - PAN1 - - - - PAN2 - - - - REL TRANS - - - - - Fader - - - - Please enter a new value between %1 and %2: - 請輸入一個介於%1和%2之間的數值: - - - - FileBrowser - - - Browser - 瀏覽器 - - - Search - - - - Refresh list - - - - - FileBrowserTreeWidget - - - Send to active instrument-track - 發送到活躍的樂器軌道 - - - - Open in new instrument-track/Song Editor - 在新的樂器軌道/歌曲編輯器中打開 - - - - Open in new instrument-track/B+B Editor - 在新樂器軌道/B+B 編輯器中打開 - - - - Loading sample - 加載採樣中 - - - - Please wait, loading sample for preview... - 請稍候,加載採樣中... - - - - Error - 錯誤 - - - - does not appear to be a valid - 並不是一個有效的 - - - - file - 檔案 - - - - --- Factory files --- - --- 內建檔案 --- - - - - FlangerControls - - - Delay Samples - - - - - Lfo Frequency - - - - - Seconds - - - - - Regen - - - - - Noise - 噪音 - - - - Invert - 反轉 - - - - FlangerControlsDialog - - - DELAY - - - - - Delay Time: - 延遲時間: - - - - RATE - - - - - Period: - - - - - AMNT - - - - - Amount: - - - - - FDBK - - - - - Feedback Amount: - - - - - NOISE - - - - - White Noise Amount: - 白噪音數量: - - - - Invert - 反轉 - - - - 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 - 向左移(&L) - - - - Move &right - 向右移(&R) - - - - Rename &channel - 重命名通道(&C) - - - - R&emove channel - 刪除通道(&E) - - - - Remove &unused channels - 移除所有未用通道(&U) - - - - FxMixer - - - Master - 主控 - - - - - - FX %1 - FX %1 - - - - Volume - 音量 - - - - Mute - 靜音 - - - - Solo - 獨奏 - - - - FxMixerView - - - FX-Mixer - 效果混合器 - - - - FX Fader %1 - FX 衰減器 %1 - - - - Mute - 靜音 - - - - Mute this FX channel - 靜音此效果通道 - - - - Solo - 獨奏 - - - - Solo FX channel - 獨奏效果通道 - - - - FxRoute - - - - Amount to send from channel %1 to channel %2 - 從通道 %1 發送到通道 %2 的量 - - - - 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 檔案 - - - - GIG Files (*.gig) - GIG 檔案 (*.gig) - - - - GuiApplication - - - Working directory - 工作目錄 - - - - The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - LMMS工作目錄%1不存在,現在新建一個嗎?你可以稍後在 編輯 -> 設置 中更改此設置。 - - - - Preparing UI - 正在準備界面 - - - - Preparing song editor - 正在準備歌曲編輯器 - - - - Preparing mixer - 正在準備混音器 - - - - Preparing controller rack - 正在準備控制機架 - - - - Preparing project notes - 正在準備專案音符 - - - - Preparing beat/bassline editor - 正在準備節拍/低音線編輯器 - - - - Preparing piano roll - 正在準備鋼琴捲簾 - - - - Preparing automation editor - 正在準備自動化控制編輯器 - - - - InstrumentFunctionArpeggio - - - Arpeggio - - - - - Arpeggio type - - - - - Arpeggio range - - - - - 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 - 琶音 - - - - 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. - - - - - 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: - 模式: + + Cancel + 取消 InstrumentFunctionNoteStacking - + octave octave - - + + Major Major - + Majb5 Majb5 - + minor minor - + minb5 minb5 - + sus2 sus2 - + sus4 sus4 - + aug aug - + augsus4 augsus4 - + tri tri - + 6 6 - + 6sus4 6sus4 - + 6add9 6add9 - + m6 m6 - + m6add9 m6add9 - + 7 7 - + 7sus4 7sus4 - + 7#5 7#5 - + 7b5 7b5 - + 7#9 7#9 - + 7b9 7b9 - + 7#5#9 7#5#9 - + 7#5b9 7#5b9 - + 7b5b9 7b5b9 - + 7add11 7add11 - + 7add13 7add13 - + 7#11 7#11 - + Maj7 Maj7 - + Maj7b5 Maj7b5 - + Maj7#5 Maj7#5 - + Maj7#11 Maj7#11 - + Maj7add13 Maj7add13 - + m7 m7 - + m7b5 m7b5 - + m7b9 m7b9 - + m7add11 m7add11 - + m7add13 m7add13 - + m-Maj7 m-Maj7 - + m-Maj7add11 m-Maj7add11 - + m-Maj7add13 m-Maj7add13 - + 9 9 - + 9sus4 9sus4 - + add9 add9 - + 9#5 9#5 - + 9b5 9b5 - + 9#11 9#11 - + 9b13 9b13 - + Maj9 Maj9 - + Maj9sus4 Maj9sus4 - + Maj9#5 Maj9#5 - + Maj9#11 Maj9#11 - + m9 m9 - + madd9 madd9 - + m9b5 m9b5 - + m9-Maj7 m9-Maj7 - + 11 11 - + 11b9 11b9 - + Maj11 Maj11 - + m11 m11 - + m-Maj11 m-Maj11 - + 13 13 - + 13#9 13#9 - + 13b9 13b9 - + 13b5b9 13b5b9 - + Maj13 Maj13 - + m13 m13 - + m-Maj13 m-Maj13 - + Harmonic minor Harmonic minor - + Melodic minor Melodic minor - + Whole tone - + Diminished Diminished - + Major pentatonic Major pentatonic - + Minor pentatonic Minor pentatonic - + Jap in sen Jap in sen - + Major bebop Major bebop - + Dominant bebop Dominant bebop - + Blues Blues - + Arabic Arabic - + Enigmatic Enigmatic - + Neopolitan Neopolitan - + Neopolitan minor Neopolitan minor - + Hungarian minor Hungarian minor - + Dorian Dorian - + Phrygian - + Lydian Lydian - + Mixolydian Mixolydian - + Aeolian Aeolian - + Locrian Locrian - + Minor Minor - + Chromatic Chromatic - + Half-Whole Diminished - + 5 5 - + Phrygian dominant - + Persian - - - Chords - Chords - - - - Chord type - Chord type - - - - Chord range - Chord range - - - - InstrumentFunctionNoteStackingView - - - STACKING - 堆疊 - - - - Chord: - 和絃: - - - - RANGE - 範圍 - - - - Chord range: - 和絃範圍: - - - - octave(s) - - - - - 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 - 樂器 - - - - NOTE - 音符 - - - - MIDI devices to receive MIDI events from - 用於接收 MIDI 事件的 MIDI 設備 - - - - MIDI devices to send MIDI events to - 用於發送 MIDI 事件的 MIDI 設備 - - - - CUSTOM BASE VELOCITY - 自定義基準力度 - - - - Specify the velocity normalization base for MIDI-based instruments at 100% note velocity - - - - - BASE VELOCITY - 基準力度 - - - - InstrumentMiscView - - - MASTER PITCH - 主音高 - - - - Enables the use of Master Pitch - 啓用主音高 - InstrumentSoundShaping - + VOLUME 音量 - + Volume 音量 - + CUTOFF 切除 - - + Cutoff frequency 切除頻率 - + RESO - + Resonance 共鳴 + + + JackAppDialog - - Envelopes/LFOs - 壓限/低頻振盪 - - - - Filter type - 過濾器類型 - - - - Q/Resonance + + Add JACK Application - - LowPass - 低通 + + Note: Features not implemented yet are greyed out + - - HiPass - 高通 + + Application + - - BandPass csg - 帶通 csg + + Name: + - - BandPass czpg - 帶通 czpg + + Application: + - + + From template + + + + + Custom + + + + + Template: + + + + + Command: + + + + + Setup + + + + + Session Manager: + + + + + None + + + + + Audio inputs: + + + + + MIDI inputs: + + + + + Audio outputs: + + + + + MIDI outputs: + + + + + Take control of main application window + + + + + Workarounds + + + + + Wait for external application start (Advanced, for Debug only) + + + + + Capture only the first X11 Window + + + + + Use previous client output buffer as input for the next client + + + + + Simulate 16 JACK MIDI outputs, with MIDI channel as port index + + + + + Error here + + + + + NSM applications cannot use abstract or absolute paths + + + + + NSM applications cannot use CLI arguments + + + + + You need to save the current Carla project before NSM can be used + + + + + JuceAboutW + + + This program uses JUCE version %1. + + + + + MidiPatternW + + + MIDI Pattern + + + + + Time Signature: + + + + + + + 1/4 + + + + + 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) + + + + Esc + + + + + &Insert Mode + + + + + F + + + + + &Velocity Mode + + + + + D + + + + + Select All + + + + + A + + + + + PatchesDialog + + + + Qsynth: Channel Preset + Qsynth: 通道預設 + + + + + 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 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 + + + + An all-pass filter allowing for extremely high orders. + + + + + Granular pitch shifter + + + + + Upwards/downwards multiband compression plugin powered by the eldritch elder god LOMMUS. + + + + + Basic Slicer + + + + + Tap to the beat + + + + + PluginEdit + + + Plugin Editor + + + + + Edit + + + + + Control + 控制 + + + + MIDI Control Channel: + + + + + N + + + + + Output dry/wet (100%) + + + + + Output volume (100%) + + + + + Balance Left (0%) + + + + + + Balance Right (0%) + + + + + Use Balance + + + + + Use Panning + + + + + Settings + 設置 + + + + Use Chunks + + + + + Audio: + + + + + Fixed-Size Buffer + + + + + Force Stereo (needs reload) + + + + + MIDI: + + + + + Map Program Changes + + + + + Send Notes + + + + + Send Bank/Program Changes + + + + + Send Control Changes + + + + + Send Channel Pressure + + + + + Send Note Aftertouch + + + + + Send Pitchbend + + + + + Send All Sound/Notes Off + + + + + +Plugin Name + + + + + + Program: + + + + + MIDI Program: + + + + + Save State + + + + + Load State + + + + + Information + + + + + Label/URI: + + + + + Name: + + + + + Type: + 類型: + + + + Maker: + + + + + Copyright: + + + + + Unique ID: + + + + + PluginFactory + + + Plugin not found. + 未找到插件。 + + + + LMMS plugin %1 does not have a plugin descriptor named %2! + + + + + PluginListDialog + + + Carla - Add New + + + + + Requirements + + + + + With Custom GUI + + + + + With CV Ports + + + + + Real-time safe only + + + + + Stereo only + + + + + With Inline Display + + + + + Favorites only + + + + + (Number of Plugins go here) + + + + + &Add Plugin + + + + + Cancel + + + + + Refresh + + + + + Reset filters + + + + + + + + + + + + + + + + + + + + TextLabel + + + + + Format: + + + + + Architecture: + + + + + Type: + + + + + MIDI Ins: + + + + + Audio Ins: + + + + + CV Outs: + + + + + MIDI Outs: + + + + + Parameter Ins: + + + + + Parameter Outs: + + + + + Audio Outs: + + + + + CV Ins: + + + + + UniqueID: + + + + + Has Inline Display: + + + + + Has Custom GUI: + + + + + Is Synth: + + + + + Is Bridged: + + + + + Information + + + + + Name + + + + + Label/Id/URI + + + + + Maker + + + + + Binary/Filename + + + + + Format + + + + + Internal + + + + + LADSPA + + + + + DSSI + + + + + LV2 + + + + + VST2 + + + + + VST3 + + + + + CLAP + + + + + AU + + + + + JSFX + + + + + Sound Kits + + + + + Type + + + + + Effects + + + + + Instruments + + + + + MIDI Plugins + + + + + Other/Misc + + + + + Category + + + + + All + + + + + Delay + + + + + Distortion + + + + + Dynamics + + + + + EQ + + + + + Filter + + + + + Modulator + + + + + Synth + + + + + Utility + + + + + + Other + + + + + Architecture + + + + + + Native + + + + + Bridged + + + + + Bridged (Wine) + + + + + Focus Text Search + + + + + Ctrl+F + + + + + Bridged (32bit) + + + + + Discovering internal plugins... + + + + + Discovering LADSPA plugins... + + + + + Discovering DSSI plugins... + + + + + Discovering LV2 plugins... + + + + + Discovering VST2 plugins... + + + + + Discovering VST3 plugins... + + + + + Discovering CLAP plugins... + + + + + Discovering AU plugins... + + + + + Discovering JSFX plugins... + + + + + Discovering SF2 kits... + + + + + Discovering SFZ kits... + + + + + Unknown + + + + + + + + Yes + + + + + + + + No + + + + + PluginParameter + + + Form + + + + + Parameter Name + + + + + TextLabel + + + + + ... + + + + + PluginRefreshDialog + + + Plugin Refresh + + + + + Search for: + + + + + All plugins, ignoring cache + + + + + Updated plugins only + + + + + Check previously invalid plugins + + + + + Press 'Scan' to begin the search + + + + + Scan + + + + + >> Skip + + + + + Close + + + + + PluginWidget + + + + + + + Frame + + + + + Enable + + + + + On/Off + 開/關 + + + + + + + PluginName + + + + + MIDI + MIDI + + + + AUDIO IN + + + + + AUDIO OUT + + + + + GUI + + + + + Edit + + + + + Remove + + + + + Plugin Name + + + + + Preset: + + + + + ProjectRenderer + + + WAV (*.wav) + + + + + FLAC (*.flac) + + + + + OGG (*.ogg) + + + + + MP3 (*.mp3) + + + + + QGroupBox + + + + Settings for %1 + + + + + QObject + + + Reload Plugin + + + + + Show GUI + 顯示圖形界面 + + + + Help + 幫助 + + + + LADSPA plugins + + + + + The project contains %1 LADSPA plugin(s) which might have not been restored correctly! Please check the project. + + + + + URI: + + + + + Project: + + + + + Maker: + + + + + Homepage: + + + + + License: + + + + + File: %1 + + + + + failed to load description + + + + + Open audio file + + + + + Error loading sample + + + + + %1 (unsupported) + + + + + QWidget + + + + Name: + 名稱: + + + + Maker: + 製作者: + + + + Copyright: + 版權: + + + + Requires Real Time: + 要求實時: + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + 是否支持實時: + + + + In Place Broken: + + + + + Channels In: + 輸入通道: + + + + Channels Out: + 輸出通道: + + + + File: %1 + 檔案:%1 + + + + File: + 檔案: + + + + XYControllerW + + + XY Controller + + + + + X Controls: + + + + + Y Controls: + + + + + Smooth + + + + + &Settings + + + + + Channels + + + + + &File + + + + + Show MIDI &Keyboard + + + + + (All) + + + + + 1 + + + + + 2 + + + + + 3 + + + + + 4 + + + + + 5 + + + + + 6 + + + + + 7 + + + + + 8 + + + + + 9 + + + + + 10 + + + + + 11 + + + + + 12 + + + + + 13 + + + + + 14 + + + + + 15 + + + + + 16 + + + + + &Quit + + + + + Esc + + + + + (None) + + + + + lmms::AmplifierControls + + + Volume + + + + + Panning + + + + + Left gain + + + + + Right gain + + + + + lmms::AudioFileProcessor + + + Amplify + + + + + Start of sample + + + + + End of sample + + + + + Loopback point + + + + + Reverse sample + + + + + Loop mode + + + + + Stutter + + + + + Interpolation mode + + + + + None + + + + + Linear + + + + + Sinc + + + + + Sample not found + + + + + lmms::AudioJack + + + JACK client restarted + + + + + LMMS was kicked by JACK for some reason. Therefore the JACK backend of LMMS has been restarted. You will have to make manual connections again. + + + + + JACK server down + + + + + The JACK server seems to have been shutdown and starting a new instance failed. Therefore LMMS is unable to proceed. You should save your project and restart JACK and LMMS. + + + + + Client name + + + + + Channels + + + + + lmms::AudioOss + + + Device + + + + + Channels + + + + + lmms::AudioPortAudio::setupWidget + + + Backend + + + + + Device + + + + + lmms::AudioPulseAudio + + + Device + + + + + Channels + + + + + lmms::AudioSdl::setupWidget + + + Playback device + + + + + Input device + + + + + lmms::AudioSndio + + + Device + + + + + Channels + + + + + lmms::AudioSoundIo::setupWidget + + + Backend + + + + + Device + + + + + lmms::AutomatableModel + + + &Reset (%1%2) + + + + + &Copy value (%1%2) + + + + + &Paste value (%1%2) + + + + + &Paste value + + + + + Edit song-global automation + + + + + Remove song-global automation + + + + + Remove all linked controls + + + + + Connected to %1 + + + + + Connected to controller + + + + + Edit connection... + + + + + Remove connection + + + + + Connect to controller... + + + + + lmms::AutomationClip + + + Drag a control while pressing <%1> + + + + + lmms::AutomationTrack + + + Automation track + + + + + lmms::BassBoosterControls + + + Frequency + + + + + Gain + + + + + Ratio + + + + + lmms::BitInvader + + + Sample length + + + + + Interpolation + + + + + Normalize + + + + + lmms::BitcrushControls + + + Input gain + + + + + Input noise + + + + + Output gain + + + + + Output clip + + + + + Sample rate + + + + + Stereo difference + + + + + Levels + + + + + Rate enabled + + + + + Depth enabled + + + + + lmms::Clip + + + Mute + + + + + lmms::CompressorControls + + + Threshold + + + + + Ratio + + + + + Attack + + + + + Release + + + + + Knee + + + + + Hold + + + + + Range + + + + + RMS Size + + + + + Mid/Side + + + + + Peak Mode + + + + + Lookahead Length + + + + + Input Balance + + + + + Output Balance + + + + + Limiter + + + + + Output Gain + + + + + Input Gain + + + + + Blend + + + + + Stereo Balance + + + + + Auto Makeup Gain + + + + + Audition + + + + + Feedback + + + + + Auto Attack + + + + + Auto Release + + + + + Lookahead + + + + + Tilt + + + + + Tilt Frequency + + + + + Stereo Link + + + + + Mix + + + + + lmms::Controller + + + Controller %1 + + + + + lmms::DelayControls + + + Delay samples + + + + + Feedback + + + + + LFO frequency + + + + + LFO amount + + + + + Output gain + + + + + lmms::DispersionControls + + + Amount + + + + + Frequency + + + + + Resonance + + + + + Feedback + + + + + DC Offset Removal + + + + + lmms::DualFilterControls + + + Filter 1 enabled + + + + + Filter 1 type + + + + + Cutoff frequency 1 + + + + + Q/Resonance 1 + + + + + Gain 1 + + + + + Mix + + + + + Filter 2 enabled + + + + + Filter 2 type + + + + + Cutoff frequency 2 + + + + + Q/Resonance 2 + + + + + Gain 2 + + + + + + Low-pass + + + + + + Hi-pass + + + + + + Band-pass csg + + + + + + Band-pass czpg + + + + + Notch - 凹口濾波器 + - - 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 - - SV LowPass + + + SV Low-pass - - SV BandPass + + + SV Band-pass - - SV HighPass + + + SV High-pass - + + SV Notch - + + Fast Formant - + + Tripole - InstrumentSoundShapingView + lmms::DynProcControls - - 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...! + + Input gain - - FILTER + + Output gain - - 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. + + Attack time - - FREQ - 頻率 - - - - cutoff frequency: + + Release time - - 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... + + Stereo mode - - - 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. - 包絡和低頻振盪 (LFO) 不被當前樂器支持。 - - InstrumentTrack + lmms::Effect - - With this knob you can set the volume of the opened channel. - 使用此旋鈕可以設置開放通道的音量。 + + Effect enabled + - - + + Wet/Dry mix + + + + + Gate + + + + + Decay + + + + + lmms::EffectChain + + + Effects enabled + + + + + lmms::Engine + + + Generating wavetables + + + + + Initializing data structures + + + + + Opening audio and midi devices + + + + + Launching audio engine threads + + + + + lmms::EnvelopeAndLfoParameters + + + Env pre-delay + + + + + Env attack + + + + + Env hold + + + + + Env decay + + + + + Env sustain + + + + + Env release + + + + + Env mod amount + + + + + LFO pre-delay + + + + + LFO attack + + + + + LFO frequency + + + + + LFO mod amount + + + + + LFO wave shape + + + + + LFO frequency x 100 + + + + + Modulate env amount + + + + + Sample not found + + + + + lmms::EqControls + + + Input gain + + + + + Output gain + + + + + Low-shelf gain + + + + + Peak 1 gain + + + + + Peak 2 gain + + + + + Peak 3 gain + + + + + Peak 4 gain + + + + + High-shelf gain + + + + + HP res + + + + + Low-shelf res + + + + + Peak 1 BW + + + + + Peak 2 BW + + + + + Peak 3 BW + + + + + Peak 4 BW + + + + + High-shelf res + + + + + LP res + + + + + HP freq + + + + + Low-shelf freq + + + + + Peak 1 freq + + + + + Peak 2 freq + + + + + Peak 3 freq + + + + + Peak 4 freq + + + + + High-shelf freq + + + + + LP freq + + + + + HP active + + + + + Low-shelf active + + + + + Peak 1 active + + + + + Peak 2 active + + + + + Peak 3 active + + + + + Peak 4 active + + + + + High-shelf active + + + + + LP active + + + + + LP 12 + + + + + LP 24 + + + + + LP 48 + + + + + HP 12 + + + + + HP 24 + + + + + HP 48 + + + + + Low-pass type + + + + + High-pass type + + + + + Analyse IN + + + + + Analyse OUT + + + + + lmms::FlangerControls + + + Delay samples + + + + + LFO frequency + + + + + Amount + + + + + Stereo phase + + + + + Feedback + + + + + Noise + + + + + Invert + + + + + lmms::FreeBoyInstrument + + + Sweep time + + + + + Sweep direction + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle + + + + + Channel 1 volume + + + + + + + Volume sweep direction + + + + + + + Length of each step in sweep + + + + + Channel 2 volume + + + + + Channel 3 volume + + + + + Channel 4 volume + + + + + Shift Register width + + + + + Right output level + + + + + Left output level + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Treble + + + + + Bass + + + + + lmms::GigInstrument + + + Bank + + + + + Patch + + + + + Gain + + + + + lmms::GranularPitchShifterControls + + + Pitch + + + + + Grain Size + + + + + Spray + + + + + Jitter + + + + + Twitch + + + + + Pitch Stereo Spread + + + + + Spray Stereo + + + + + Shape + + + + + Fade Length + + + + + Feedback + + + + + Minimum Allowed Latency + + + + + Prefilter + + + + + Density + + + + + Glide + + + + + Ring Buffer Length + + + + + 5 Seconds + + + + + 10 Seconds (Size) + + + + + 40 Seconds (Size and Pitch) + + + + + 40 Seconds (Size and Spray and Jitter) + + + + + 120 Seconds (All of the above) + + + + + lmms::InstrumentFunctionArpeggio + + + Arpeggio + + + + + Arpeggio type + + + + + Arpeggio range + + + + + Note repeats + + + + + Cycle steps + + + + + Skip rate + + + + + Miss rate + + + + + Arpeggio time + + + + + Arpeggio gate + + + + + Arpeggio direction + + + + + Arpeggio mode + + + + + Up + + + + + Down + + + + + Up and down + + + + + Down and up + + + + + Random + + + + + Free + + + + + Sort + + + + + Sync + + + + + lmms::InstrumentFunctionNoteStacking + + + Chords + + + + + Chord type + + + + + Chord range + + + + + lmms::InstrumentSoundShaping + + + Envelopes/LFOs + + + + + Filter type + + + + + Cutoff frequency + + + + + Q/Resonance + + + + + Low-pass + + + + + Hi-pass + + + + + Band-pass csg + + + + + Band-pass czpg + + + + + Notch + + + + + All-pass + + + + + Moog + + + + + 2x Low-pass + + + + + RC Low-pass 12 dB/oct + + + + + RC Band-pass 12 dB/oct + + + + + RC High-pass 12 dB/oct + + + + + RC Low-pass 24 dB/oct + + + + + RC Band-pass 24 dB/oct + + + + + RC High-pass 24 dB/oct + + + + + Vocal Formant + + + + + 2x Moog + + + + + SV Low-pass + + + + + SV Band-pass + + + + + SV High-pass + + + + + SV Notch + + + + + Fast Formant + + + + + Tripole + + + + + lmms::InstrumentTrack + + + unnamed_track - 未命名軌道 + - + Base note - 基本音 + + + + + First note + + + + + Last note + + + + + Volume + + + + + Panning + + + + + Pitch + + + + + Pitch range + + + + + Mixer channel + + + + + Master pitch + + + + + Enable/Disable MIDI CC + - Volume - 音量 - - - - Panning - 聲相 - - - - Pitch - 音高 - - - - Pitch range - 音域範圍 - - - - FX channel - 效果通道 + CC Controller %1 + - Master Pitch - 主音高 - - - - + Default preset - 預置 - - - - InstrumentTrackView - - - Volume - 音量 - - - - Volume: - 音量: - - - - VOL - VOL - - - - Panning - 聲相 - - - - Panning: - 聲相: - - - - PAN - PAN - - - - MIDI - MIDI - - - - Input - 輸入 - - - - Output - 輸出 - - - - FX %1: %2 - 效果 %1: %2 - - - - InstrumentTrackWindow - - - GENERAL SETTINGS - 常規設置 - - - - Use these controls to view and edit the next/previous track in the song editor. - 使用這些控制選項來查看和編輯在歌曲編輯器中的上個/下個軌道。 - - - - Instrument volume - 樂器音量 - - - - Volume: - 音量: - - - - VOL - VOL - - - - Panning - 聲相 - - - - Panning: - 聲相: - - - - PAN - PAN - - - - Pitch - 音高 - - - - Pitch: - 音高: - - - - cents - 音分 cents - - - - PITCH - - - - - Pitch range (semitones) - 音域範圍(半音) - - - - RANGE - 範圍 - - - - 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. - 如果你想保存當前樂器軌道設置到預設文件, 請點擊這裏。稍後你可以在預設瀏覽器中雙擊以使用它。 - - - - SAVE - 保存 - - - - Envelope, filter & LFO - - - - - Chord stacking & arpeggio - - - - - Effects - - - - - MIDI settings - MIDI設置 - - - - Miscellaneous - - - - - Save preset - 保存預置 - - - - XML preset file (*.xpf) - XML 預設集檔案 (*.xpf) - - - - Plugin - Knob + lmms::Keymap - - Set linear - 設置爲線性 - - - - Set logarithmic - 設置爲對數 - - - - Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + empty - - - Please enter a new value between %1 and %2: - 請輸入一個介於%1和%2之間的數值: - - LadspaControl + lmms::KickerInstrument - + + Start frequency + + + + + End frequency + + + + + Length + + + + + Start distortion + + + + + End distortion + + + + + Gain + + + + + Envelope slope + + + + + Noise + + + + + Click + + + + + Frequency slope + + + + + Start from note + + + + + End to note + + + + + lmms::LOMMControls + + + Depth + + + + + Time + + + + + Input Volume + + + + + Output Volume + + + + + Upward Depth + + + + + Downward Depth + + + + + High/Mid Split + + + + + Mid/Low Split + + + + + Enable High/Mid Split + + + + + Enable Mid/Low Split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume + + + + + Mid Input Volume + + + + + Low Input Volume + + + + + High Output Volume + + + + + Mid Output Volume + + + + + Low Output Volume + + + + + Above Threshold High + + + + + Above Threshold Mid + + + + + Above Threshold Low + + + + + Above Ratio High + + + + + Above Ratio Mid + + + + + Above Ratio Low + + + + + Below Threshold High + + + + + Below Threshold Mid + + + + + Below Threshold Low + + + + + Below Ratio High + + + + + Below Ratio Mid + + + + + Below Ratio Low + + + + + Attack High + + + + + Attack Mid + + + + + Attack Low + + + + + Release High + + + + + Release Mid + + + + + Release Low + + + + + RMS Time + + + + + Knee + + + + + Range + + + + + Balance + + + + + Scale output volume with Depth + + + + + Stereo Link + + + + + Auto Time + + + + + Mix + + + + + Feedback + + + + + Mid/Side + + + + + Lookahead + + + + + Lookahead Length + + + + + Suppress upward compression for side band + + + + + lmms::LadspaControl + + Link channels - 關聯通道 + - LadspaControlDialog + lmms::LadspaEffect - - Link Channels - 連接通道 - - - - Channel - 通道 - - - - LadspaControlView - - - Link channels - 連接通道 - - - - Value: - 值: - - - - Sorry, no help available. - 啊哦,這個沒有幫助文檔。 - - - - LadspaEffect - - + Unknown LADSPA plugin %1 requested. - 已請求未知 LADSPA 插件 %1. + - LcdSpinBox + lmms::Lb302Synth - - Please enter a new value between %1 and %2: - 請輸入一個介於%1和%2之間的數值: - - - - LeftRightNav - - - - - Previous - 上個 - - - - - - Next - 下個 - - - - Previous (%1) - 上 (%1) - - - - Next (%1) - 下 (%1) - - - - LfoController - - - LFO Controller - LFO 控制器 - - - - Base value - 基準值 - - - - Oscillator speed - 振動速度 - - - - Oscillator amount + + VCF Cutoff Frequency - - Oscillator phase + + VCF Resonance + + + + + VCF Envelope Mod + + + + + VCF Envelope Decay + + + + + Distortion + + + + + Waveform + + + + + Slide Decay + + + + + Slide + + + + + Accent + + + + + Dead + + + + + 24dB/oct Filter + + + + + lmms::LfoController + + + LFO Controller - Oscillator waveform - 振動波形 + Base value + + Oscillator speed + + + + + Oscillator amount + + + + + Oscillator phase + + + + + Oscillator waveform + + + + Frequency Multiplier - - - LfoControllerDialog - - LFO - - - - - LFO Controller - LFO 控制器 - - - - BASE - 基準 - - - - Base amount: - 基礎值: - - - - todo - - - - - 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 - - - - - 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 a moog saw-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. + + Sample not found - LmmsCore + lmms::MalletsInstrument - - Generating wavetables - 正在生成波形表 + + Hardness + - - Initializing data structures - 正在初始化數據結構 + + Position + - - Opening audio and midi devices - 正在啓動音頻和 MIDI 設備 + + Vibrato gain + - - Launching mixer threads - 生在啓動混音器線程 + + Vibrato frequency + + + + + Stick mix + + + + + Modulator + + + + + Crossfade + + + + + LFO speed + + + + + LFO depth + + + + + ADSR + + + + + Pressure + + + + + Motion + + + + + Speed + + + + + Bowed + + + + + Instrument + + + + + Spread + + + + + Randomness + + + + + Marimba + + + + + Vibraphone + + + + + Agogo + + + + + Wood 1 + + + + + Reso + + + + + Wood 2 + + + + + Beats + + + + + Two fixed + + + + + Clump + + + + + Tubular bells + + + + + Uniform bar + + + + + Tuned bar + + + + + Glass + + + + + Tibetan bowl + - MainWindow + lmms::MeterModel - - 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) - - - - &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. - - - - - 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. - 點擊這裏顯示或隱藏 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 - 顯示/隱藏控制器機架 - - - - 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 - 顯示/隱藏控制器機架 - - - - Volume as dBFS - - - - - Smooth scroll - 平滑滾動 - - - - Enable note labels in piano roll - 在鋼琴窗中顯示音號 - - - - MeterDialog - - - - Meter Numerator - - - - - - Meter Denominator - - - - - TIME SIG - 拍子記號 - - - - MeterModel - - + Numerator - + Denominator - MidiController + lmms::Microtuner + + + Microtuner + + + + + Microtuner on / off + + + + + Selected scale + + + + + Selected keyboard mapping + + + + + lmms::MidiController MIDI Controller - MIDI控制器 + @@ -5183,1161 +6858,7965 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. - MidiImport + 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 + + + + + + Tempo + + + + Track - 軌道 + - MidiJack - - - JACK server down - When JACK(JACK Audio Connection Kit) disconnects, it will show the following message (title) - JACK服務崩潰 - + 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) - MidiPort - - - Input channel - 輸入通道 - - - - Output channel - 輸出通道 - - - - Input controller - 輸入控制器 - - - - Output controller - 輸出控制器 - - - - Fixed input velocity - - - - - Fixed output velocity - - - - - Fixed output note - - + lmms::MidiPort - Output MIDI program + Input channel - Base velocity - 基準力度 + Output channel + - Receive MIDI-events - 接受 MIDI 事件 + Input controller + + Output controller + + + + + Fixed input velocity + + + + + Fixed output velocity + + + + + Fixed output note + + + + + Output MIDI program + + + + + Base velocity + + + + + Receive MIDI-events + + + + Send MIDI-events - 發送 MIDI 事件 + - MidiSetupWidget + lmms::Mixer - - DEVICE - 設備 + + Master + + + + + + + Channel %1 + + + + + Volume + + + + + Mute + + + + + Solo + - MonstroInstrument + lmms::MixerRoute - - Osc 1 Volume + + + Amount to send from channel %1 to channel %2 + + + + + lmms::MonstroInstrument + + + 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 - MonstroView + lmms::NesInstrument - - Operators view + + Channel 1 enable - - 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. + + Channel 1 coarse detune - - 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. + + Channel 1 volume - - - + + Channel 1 envelope enable + + + + + Channel 1 envelope loop + + + + + Channel 1 envelope length + + + + + Channel 1 duty cycle + + + + + Channel 1 sweep enable + + + + + Channel 1 sweep amount + + + + + Channel 1 sweep rate + + + + + Channel 2 enable + + + + + Channel 2 coarse detune + + + + + Channel 2 volume + + + + + Channel 2 envelope enable + + + + + Channel 2 envelope loop + + + + + Channel 2 envelope length + + + + + Channel 2 duty cycle + + + + + Channel 2 sweep enable + + + + + Channel 2 sweep amount + + + + + Channel 2 sweep rate + + + + + Channel 3 enable + + + + + Channel 3 coarse detune + + + + + Channel 3 volume + + + + + Channel 4 enable + + + + + Channel 4 volume + + + + + Channel 4 envelope enable + + + + + Channel 4 envelope loop + + + + + Channel 4 envelope length + + + + + Channel 4 noise mode + + + + + Channel 4 frequency mode + + + + + Channel 4 noise frequency + + + + + Channel 4 noise frequency sweep + + + + + Channel 4 quantize + + + + + Master volume + + + + + Vibrato + + + + + lmms::OpulenzInstrument + + + Patch + + + + + Op 1 attack + + + + + Op 1 decay + + + + + Op 1 sustain + + + + + Op 1 release + + + + + Op 1 level + + + + + Op 1 level scaling + + + + + Op 1 frequency multiplier + + + + + Op 1 feedback + + + + + Op 1 key scaling rate + + + + + Op 1 percussive envelope + + + + + Op 1 tremolo + + + + + Op 1 vibrato + + + + + Op 1 waveform + + + + + Op 2 attack + + + + + Op 2 decay + + + + + Op 2 sustain + + + + + Op 2 release + + + + + Op 2 level + + + + + Op 2 level scaling + + + + + Op 2 frequency multiplier + + + + + Op 2 key scaling rate + + + + + Op 2 percussive envelope + + + + + Op 2 tremolo + + + + + Op 2 vibrato + + + + + Op 2 waveform + + + + + FM + + + + + Vibrato depth + + + + + Tremolo depth + + + + + lmms::OrganicInstrument + + + Distortion + + + + Volume - 音量 + + + + lmms::OscillatorObject - - - - Panning - 聲相 - - - - - - Coarse detune + + Osc %1 waveform - - - - semitones - 半音 - - - - - Finetune left + + Osc %1 harmonic - - - - - cents + + + Osc %1 volume - - - Finetune right + + + Osc %1 panning - - - - Stereo phase offset + + Osc %1 stereo detuning - - - - - - deg + + Osc %1 coarse detuning - - Pulse width + + Osc %1 fine detuning left - - Send sync on pulse rise + + Osc %1 fine detuning right - - Send sync on pulse fall + + Osc %1 phase-offset - - Hard sync oscillator 2 + + Osc %1 stereo phase-detuning - - Reverse sync oscillator 2 + + Osc %1 wave shape - - Sub-osc mix + + Modulation type %1 + + + + + lmms::PatternTrack + + + Pattern %1 - - Hard sync oscillator 3 + + Clone of %1 + + + + + lmms::PeakController + + + Peak Controller - - Reverse sync oscillator 3 + + Peak Controller Bug - - - - + + Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. + + + + + lmms::PeakControllerEffectControls + + + Base value + + + + + Modulation amount + + + + Attack - 打進聲 + - - + + Release + + + + + Treshold + + + + + Mute output + + + + + Absolute value + + + + + Amount multiplicator + + + + + lmms::Plugin + + + Plugin not found + + + + + The plugin "%1" wasn't found or could not be loaded! +Reason: "%2" + + + + + Error while loading plugin + + + + + Failed to load plugin "%1"! + + + + + lmms::ReverbSCControls + + + Input gain + + + + + Size + + + + + Color + + + + + Output gain + + + + + lmms::SaControls + + + Pause + + + + + Reference freeze + + + + + Waterfall + + + + + Averaging + + + + + Stereo + + + + + Peak hold + + + + + Logarithmic frequency + + + + + Logarithmic amplitude + + + + + Frequency range + + + + + Amplitude range + + + + + FFT block size + + + + + FFT window type + + + + + Peak envelope resolution + + + + + Spectrum display resolution + + + + + Peak decay multiplier + + + + + Averaging weight + + + + + Waterfall history size + + + + + Waterfall gamma correction + + + + + FFT window overlap + + + + + FFT zero padding + + + + + + Full (auto) + + + + + + + Audible + + + + + Bass + + + + + Mids + + + + + High + + + + + Extended + + + + + Loud + + + + + Silent + + + + + (High time res.) + + + + + (High freq. res.) + + + + + Rectangular (Off) + + + + + + Blackman-Harris (Default) + + + + + Hamming + + + + + Hanning + + + + + lmms::SampleClip + + + Sample not found + + + + + lmms::SampleTrack + + + Volume + + + + + Panning + + + + + Mixer channel + + + + + + Sample track + + + + + lmms::Scale + + + empty + + + + + lmms::Sf2Instrument + + + Bank + + + + + Patch + + + + + Gain + + + + + Reverb + + + + + Reverb room size + + + + + Reverb damping + + + + + Reverb width + + + + + Reverb level + + + + + Chorus + + + + + Chorus voices + + + + + Chorus level + + + + + Chorus speed + + + + + Chorus depth + + + + + A soundfont %1 could not be loaded. + + + + + lmms::SfxrInstrument + + + Wave + + + + + lmms::SidInstrument + + + Cutoff frequency + + + + + Resonance + + + + + Filter type + + + + + Voice 3 off + + + + + Volume + + + + + Chip model + + + + + lmms::SlicerT + + + Note threshold + + + + + FadeOut + + + + + Original bpm + + + + + Slice snap + + + + + BPM sync + + + + + + slice_%1 + + + + + Sample not found: %1 + + + + + lmms::Song + + + Tempo + + + + + Master volume + + + + + Master pitch + + + + + Aborting project load + + + + + Project file contains local paths to plugins, which could be used to run malicious code. + + + + + Can't load project: Project file contains local paths to plugins. + + + + + LMMS Error report + + + + + (repeated %1 times) + + + + + The following errors occurred while loading: + + + + + lmms::StereoEnhancerControls + + + Width + + + + + lmms::StereoMatrixControls + + + Left to Left + + + + + Left to Right + + + + + Right to Left + + + + + Right to Right + + + + + lmms::Track + + + Mute + + + + + Solo + + + + + lmms::TrackContainer + + + Couldn't import file + + + + + Couldn't find a filter for importing file %1. +You should convert this file into a format supported by LMMS using another software. + + + + + Couldn't open file + + + + + Couldn't open file %1 for reading. +Please make sure you have read-permission to the file and the directory containing the file and try again! + + + + + Loading project... + + + + + + Cancel + + + + + + Please wait... + + + + + Loading cancelled + + + + + Project loading was cancelled. + + + + + Loading Track %1 (%2/Total %3) + + + + + Importing MIDI-file... + + + + + lmms::TripleOscillator + + + Sample not found + + + + + lmms::VecControls + + + Display persistence amount + + + + + Logarithmic scale + + + + + High quality + + + + + lmms::VestigeInstrument + + + Loading plugin + + + + + Please wait while loading the VST plugin... + + + + + lmms::Vibed + + + String %1 volume + + + + + String %1 stiffness + + + + + Pick %1 position + + + + + Pickup %1 position + + + + + String %1 panning + + + + + String %1 detune + + + + + String %1 fuzziness + + + + + String %1 length + + + + + Impulse %1 + + + + + String %1 + + + + + lmms::VoiceObject + + + Voice %1 pulse width + + + + + Voice %1 attack + + + + + Voice %1 decay + + + + + Voice %1 sustain + + + + + Voice %1 release + + + + + Voice %1 coarse detuning + + + + + Voice %1 wave shape + + + + + Voice %1 sync + + + + + Voice %1 ring modulate + + + + + Voice %1 filtered + + + + + Voice %1 test + + + + + lmms::VstPlugin + + + + The VST plugin %1 could not be loaded. + + + + + Open Preset + + + + + + VST Plugin Preset (*.fxp *.fxb) + + + + + : default + + + + + Save Preset + + + + + .fxp + + + + + .FXP + + + + + .FXB + + + + + .fxb + + + + + Loading plugin + + + + + Please wait while loading VST plugin... + + + + + lmms::WatsynInstrument + + + Volume A1 + + + + + Volume A2 + + + + + Volume B1 + + + + + Volume B2 + + + + + Panning A1 + + + + + Panning A2 + + + + + Panning B1 + + + + + Panning B2 + + + + + Freq. multiplier A1 + + + + + Freq. multiplier A2 + + + + + Freq. multiplier B1 + + + + + Freq. multiplier B2 + + + + + Left detune A1 + + + + + Left detune A2 + + + + + Left detune B1 + + + + + Left detune B2 + + + + + Right detune A1 + + + + + Right detune A2 + + + + + Right detune B1 + + + + + Right detune B2 + + + + + A-B Mix + + + + + A-B Mix envelope amount + + + + + A-B Mix envelope attack + + + + + A-B Mix envelope hold + + + + + A-B Mix envelope decay + + + + + A1-B2 Crosstalk + + + + + A2-A1 modulation + + + + + B2-B1 modulation + + + + + Selected graph + + + + + lmms::WaveShaperControls + + + Input gain + + + + + Output gain + + + + + lmms::Xpressive + + + Selected graph + + + + + A1 + + + + + A2 + + + + + A3 + + + + + W1 smoothing + + + + + W2 smoothing + + + + + W3 smoothing + + + + + Panning 1 + + + + + Panning 2 + + + + + Rel trans + + + + + lmms::ZynAddSubFxInstrument + + + Portamento + + + + + Filter frequency + + + + + Filter resonance + + + + + Bandwidth + + + + + FM gain + + + + + Resonance center frequency + + + + + Resonance bandwidth + + + + + Forward MIDI control change events + + + + + lmms::graphModel + + + Graph + + + + + lmms::gui::AmplifierControlDialog + + + VOL + + + + + Volume: + + + + + PAN + + + + + Panning: + + + + + LEFT + + + + + Left gain: + + + + + RIGHT + + + + + Right gain: + + + + + lmms::gui::AudioAlsaSetupWidget + + + Device + + + + + Channels + + + + + lmms::gui::AudioFileProcessorView + + + Open sample + + + + + Reverse sample + + + + + Disable loop + + + + + Enable loop + + + + + Enable ping-pong loop + + + + + Continue sample playback across notes + + + + + Amplify: + + + + + Start point: + + + + + End point: + + + + + Loopback point: + + + + + lmms::gui::AudioFileProcessorWaveView + + + Sample length: + + + + + lmms::gui::AutomationClipView + + + Open in Automation editor + + + + + Clear + + + + + Reset name + + + + + Change name + + + + + Set/clear record + + + + + Flip Vertically (Visible) + + + + + Flip Horizontally (Visible) + + + + + %1 Connections + + + + + Disconnect "%1" + + + + + Model is already connected to this clip. + + + + + lmms::gui::AutomationEditor + + + Edit Value + + + + + New outValue + + + + + New inValue + + + + + Please open an automation clip by double-clicking on it! + + + + + lmms::gui::AutomationEditorWindow + + + Play/pause current clip (Space) + + + + + Stop playing of current clip (Space) + + + + + Edit actions + + + + + Draw mode (Shift+D) + + + + + Erase mode (Shift+E) + + + + + Draw outValues mode (Shift+C) + + + + + Edit tangents mode (Shift+T) + + + + + Flip vertically + + + + + Flip horizontally + + + + + Interpolation controls + + + + + Discrete progression + + + + + Linear progression + + + + + Cubic Hermite progression + + + + + Tension value for spline + + + + + Tension: + + + + + Zoom controls + + + + + Horizontal zooming + + + + + Vertical zooming + + + + + Quantization controls + + + + + Quantization + + + + + Clear ghost notes + + + + + + Automation Editor - no clip + + + + + + Automation Editor - %1 + + + + + Model is already connected to this clip. + + + + + lmms::gui::BassBoosterControlDialog + + + FREQ + + + + + Frequency: + + + + + GAIN + + + + + Gain: + + + + + RATIO + + + + + Ratio: + + + + + lmms::gui::BitInvaderView + + + Sample length + + + + + Draw your own waveform here by dragging your mouse on this graph. + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + + Smooth waveform + + + + + Interpolation + + + + + Normalize + + + + + lmms::gui::BitcrushControlDialog + + + IN + + + + + OUT + + + + + + GAIN + + + + + Input gain: + + + + + NOISE + + + + + Input noise: + + + + + Output gain: + + + + + CLIP + + + + + Output clip: + + + + + Rate enabled + + + + + Enable sample-rate crushing + + + + + Depth enabled + + + + + Enable bit-depth crushing + + + + + FREQ + + + + + Sample rate: + + + + + STEREO + + + + + Stereo difference: + + + + + QUANT + + + + + Levels: + + + + + lmms::gui::CPULoadWidget + + + DSP total: %1% + + + + + - Notes and setup: %1% + + + + + - Instruments: %1% + + + + + - Effects: %1% + + + + + - Mixing: %1% + + + + + lmms::gui::CarlaInstrumentView + + + Show GUI + + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Params + + + + + Available from Carla version 2.1 and up. + + + + + lmms::gui::CarlaParamsView + + + Search.. + + + + + Clear filter text + + + + + Only show knobs with a connection. + + + + + - Parameters + + + + + lmms::gui::ClipView + + + Current position + + + + + Current length + + + + + + %1:%2 (%3:%4 to %5:%6) + + + + + Press <%1> and drag to make a copy. + + + + + Press <%1> for free resizing. + + + + + Hint + + + + + Delete (middle mousebutton) + + + + + Delete selection (middle mousebutton) + + + + + Cut + + + + + Cut selection + + + + + Merge Selection + + + + + Copy + + + + + Copy selection + + + + + Paste + + + + + Mute/unmute (<%1> + middle click) + + + + + Mute/unmute selection (<%1> + middle click) + + + + + Clip color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + lmms::gui::CompressorControlDialog + + + Threshold: + + + + + Volume at which the compression begins to take place + + + + + Ratio: + + + + + How far the compressor must turn the volume down after crossing the threshold + + + + + Attack: + + + + + Speed at which the compressor starts to compress the audio + + + + + Release: + + + + + Speed at which the compressor ceases to compress the audio + + + + + Knee: + + + + + Smooth out the gain reduction curve around the threshold + + + + + Range: + + + + + Maximum gain reduction + + + + + Lookahead Length: + + + + + How long the compressor has to react to the sidechain signal ahead of time + + + + + Hold: + + + + + Delay between attack and release stages + + + + + RMS Size: + + + + + Size of the RMS buffer + + + + + Input Balance: + + + + + Bias the input audio to the left/right or mid/side + + + + + Output Balance: + + + + + Bias the output audio to the left/right or mid/side + + + + + Stereo Balance: + + + + + Bias the sidechain signal to the left/right or mid/side + + + + + Stereo Link Blend: + + + + + Blend between unlinked/maximum/average/minimum stereo linking modes + + + + + Tilt Gain: + + + + + Bias the sidechain signal to the low or high frequencies. -6 db is lowpass, 6 db is highpass. + + + + + Tilt Frequency: + + + + + Center frequency of sidechain tilt filter + + + + + Mix: + + + + + Balance between wet and dry signals + + + + + Auto Attack: + + + + + Automatically control attack value depending on crest factor + + + + + Auto Release: + + + + + Automatically control release value depending on crest factor + + + + + Output gain + + + + + + Gain + + + + + Output volume + + + + + Input gain + + + + + Input volume + + + + + Root Mean Square + + + + + Use RMS of the input + + + + + Peak + + + + + Use absolute value of the input + + + + + Left/Right + + + + + Compress left and right audio + + + + + Mid/Side + + + + + Compress mid and side audio + + + + + Compressor + + + + + Compress the audio + + + + + Limiter + + + + + Set Ratio to infinity (is not guaranteed to limit audio volume) + + + + + Unlinked + + + + + Compress each channel separately + + + + + Maximum + + + + + Compress based on the loudest channel + + + + + Average + + + + + Compress based on the averaged channel volume + + + + + Minimum + + + + + Compress based on the quietest channel + + + + + Blend + + + + + Blend between stereo linking modes + + + + + Auto Makeup Gain + + + + + Automatically change makeup gain depending on threshold, knee, and ratio settings + + + + + + Soft Clip + + + + + Play the delta signal + + + + + Use the compressor's output as the sidechain input + + + + + Lookahead Enabled + + + + + Enable Lookahead, which introduces 20 milliseconds of latency + + + + + lmms::gui::ControllerConnectionDialog + + + Connection Settings + + + + + MIDI CONTROLLER + + + + + Input channel + + + + + CHANNEL + + + + + Input controller + + + + + CONTROLLER + + + + + + Auto Detect + + + + + MIDI-devices to receive MIDI-events from + + + + + USER CONTROLLER + + + + + MAPPING FUNCTION + + + + + OK + + + + + Cancel + + + + + LMMS + + + + + Cycle Detected. + + + + + lmms::gui::ControllerRackView + + + Controller Rack + + + + + Add + + + + + Confirm Delete + + + + + Confirm delete? There are existing connection(s) associated with this controller. There is no way to undo. + + + + + lmms::gui::ControllerView + + + Controls + + + + + Rename controller + + + + + Enter the new name for this controller + + + + + LFO + + + + + Move &up + + + + + Move &down + + + + + &Remove this controller + + + + + Re&name this controller + + + + + lmms::gui::CrossoverEQControlDialog + + + Band 1/2 crossover: + + + + + Band 2/3 crossover: + + + + + Band 3/4 crossover: + + + + + Band 1 gain + + + + + Band 1 gain: + + + + + Band 2 gain + + + + + Band 2 gain: + + + + + Band 3 gain + + + + + Band 3 gain: + + + + + Band 4 gain + + + + + Band 4 gain: + + + + + Band 1 mute + + + + + Mute band 1 + + + + + Band 2 mute + + + + + Mute band 2 + + + + + Band 3 mute + + + + + Mute band 3 + + + + + Band 4 mute + + + + + Mute band 4 + + + + + lmms::gui::DelayControlsDialog + + + DELAY + + + + + Delay time + + + + + FDBK + + + + + Feedback amount + + + + + RATE + + + + + LFO frequency + + + + + AMNT + + + + + LFO amount + + + + + Out gain + + + + + Gain + + + + + lmms::gui::DispersionControlDialog + + + AMOUNT + + + + + Number of all-pass filters + + + + + FREQ + + + + + Frequency: + + + + + RESO + + + + + Resonance: + + + + + FEED + + + + + Feedback: + + + + + DC Offset Removal + + + + + Remove DC Offset + + + + + lmms::gui::DualFilterControlDialog + + + + FREQ + + + + + + Cutoff frequency + + + + + + RESO + + + + + + Resonance + + + + + + GAIN + + + + + + Gain + + + + + MIX + + + + + Mix + + + + + Filter 1 enabled + + + + + Filter 2 enabled + + + + + Enable/disable filter 1 + + + + + Enable/disable filter 2 + + + + + lmms::gui::DynProcControlDialog + + + INPUT + + + + + Input gain: + + + + + OUTPUT + + + + + Output gain: + + + + + ATTACK + + + + + Peak attack time: + + + + + RELEASE + + + + + Peak release time: + + + + + + Reset wavegraph + + + + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Stereo mode: maximum + + + + + Process based on the maximum of both stereo channels + + + + + Stereo mode: average + + + + + Process based on the average of both stereo channels + + + + + Stereo mode: unlinked + + + + + Process each stereo channel independently + + + + + lmms::gui::Editor + + + Transport controls + + + + + Play (Space) + + + + + Stop (Space) + + + + + Record + + + + + Record while playing + + + + + Toggle Step Recording + + + + + lmms::gui::EffectRackView + + + EFFECTS CHAIN + + + + + Add effect + + + + + lmms::gui::EffectSelectDialog + + + Add effect + + + + + + Name + + + + + Type + + + + + All + + + + + Search + + + + + Description + + + + + Author + + + + + lmms::gui::EffectView + + + On/Off + + + + + W/D + + + + + Wet Level: + + + + + DECAY + + + + + Time: + + + + + GATE + + + + + Gate: + + + + + Controls + + + + + Move &up + + + + + Move &down + + + + + &Remove this plugin + + + + + lmms::gui::EnvelopeAndLfoView + + + + AMT + + + + + + Modulation amount: + + + + + + DEL + + + + + + Pre-delay: + + + + + + ATT + + + + + + Attack: + + + + + HOLD + + + + + Hold: + + + + + DEC + + + + + Decay: + + + + + SUST + + + + + Sustain: + + + + + REL + + + + + Release: + + + + + SPD + + + + + Frequency: + + + + + FREQ x 100 + + + + + Multiply LFO frequency by 100 + + + + + MOD ENV AMOUNT + + + + + Control envelope amount by this LFO + + + + + Hint + + + + + Drag and drop a sample into this window. + + + + + lmms::gui::EnvelopeGraph + + + Scaling + + + + + Dynamic + + + + + Uses absolute spacings but switches to relative spacing if it's running out of space + + + + + Absolute + + + + + Provides enough potential space for each segment but does not scale + + + + + Relative + + + + + Always uses all of the available space to display the envelope graph + + + + + lmms::gui::EqControlsDialog + + + HP + + + + + Low-shelf + + + + + Peak 1 + + + + + Peak 2 + + + + + Peak 3 + + + + + Peak 4 + + + + + High-shelf + + + + + LP + + + + + Input gain + + + + + + + Gain + + + + + Output gain + + + + + Bandwidth: + + + + + Octave + + + + + Resonance: + + + + + Frequency: + + + + + LP group + + + + + HP group + + + + + lmms::gui::EqHandle + + + Reso: + + + + + BW: + + + + + + Freq: + + + + + lmms::gui::ExportProjectDialog + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Export project to %1 + + + + + ( Fastest - biggest ) + + + + + ( Slowest - smallest ) + + + + + Error + + + + + Error while determining file-encoder device. Please try to choose a different output format. + + + + + Rendering: %1% + + + + + lmms::gui::Fader + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + Volume: %1 dBFS + + + + + lmms::gui::FileBrowser + + + Browser + + + + + Search + + + + + Refresh list + + + + + User content + + + + + Factory content + + + + + Hidden content + + + + + lmms::gui::FileBrowserTreeWidget + + + Send to active instrument-track + + + + + Open containing folder + + + + + Song Editor + + + + + Pattern Editor + + + + + Send to new AudioFileProcessor instance + + + + + Send to new instrument track + + + + + (%2Enter) + + + + + Send to new sample track (Shift + Enter) + + + + + Loading sample + + + + + Please wait, loading sample for preview... + + + + + Error + + + + + %1 does not appear to be a valid %2 file + + + + + --- Factory files --- + + + + + lmms::gui::FileDialog + + + %1 files + + + + + All audio files + + + + + Other files + + + + + lmms::gui::FlangerControlsDialog + + + DELAY + + + + + Delay time: + + + + + RATE + + + + + Period: + + + + + AMNT + + + + + Amount: + + + + + PHASE + + + + + Phase: + + + + + FDBK + + + + + Feedback amount: + + + + + NOISE + + + + + White noise amount: + + + + + Invert + + + + + lmms::gui::FloatModelEditorBase + + + Set linear + + + + + Set logarithmic + + + + + + Set value + + + + + Please enter a new value between -96.0 dBFS and 6.0 dBFS: + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::FreeBoyInstrumentView + + + Sweep time: + + + + + Sweep time + + + + + Sweep rate shift amount: + + + + + Sweep rate shift amount + + + + + + Wave pattern duty cycle: + + + + + + Wave pattern duty cycle + + + + + Square channel 1 volume: + + + + + Square channel 1 volume + + + + + + + Length of each step in sweep: + + + + + + + Length of each step in sweep + + + + + Square channel 2 volume: + + + + + Square channel 2 volume + + + + + Wave pattern channel volume: + + + + + Wave pattern channel volume + + + + + Noise channel volume: + + + + + Noise channel volume + + + + + SO1 volume (Right): + + + + + SO1 volume (Right) + + + + + SO2 volume (Left): + + + + + SO2 volume (Left) + + + + + Treble: + + + + + Treble + + + + + Bass: + + + + + Bass + + + + + Sweep direction + + + + + + + + + Volume sweep direction + + + + + Shift register width + + + + + Channel 1 to SO1 (Right) + + + + + Channel 2 to SO1 (Right) + + + + + Channel 3 to SO1 (Right) + + + + + Channel 4 to SO1 (Right) + + + + + Channel 1 to SO2 (Left) + + + + + Channel 2 to SO2 (Left) + + + + + Channel 3 to SO2 (Left) + + + + + Channel 4 to SO2 (Left) + + + + + Wave pattern graph + + + + + lmms::gui::GigInstrumentView + + + + Open GIG file + + + + + Choose patch + + + + + Gain: + + + + + GIG Files (*.gig) + + + + + lmms::gui::GranularPitchShifterControlDialog + + + Grain Size: + + + + + Spray: + + + + + Jitter: + + + + + Twitch: + + + + + Spray Stereo Spread: + + + + + Grain Shape: + + + + + Fade Length: + + + + + Feedback: + + + + + Minimum Allowed Latency: + + + + + Density: + + + + + Glide: + + + + + + Pitch + + + + + + Pitch Stereo Spread + + + + + Open help window + + + + + + Prefilter + + + + + lmms::gui::GuiApplication + + + Working directory + + + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + + + + + Preparing UI + + + + + Preparing song editor + + + + + Preparing mixer + + + + + Preparing controller rack + + + + + Preparing project notes + + + + + Preparing microtuner + + + + + Preparing pattern editor + + + + + Preparing piano roll + + + + + Preparing automation editor + + + + + lmms::gui::InstrumentFunctionArpeggioView + + + ARPEGGIO + + + + + RANGE + + + + + Arpeggio range: + + + + + octave(s) + + + + + REP + + + + + Note repeats: + + + + + time(s) + + + + + CYCLE + + + + + Cycle notes: + + + + + note(s) + + + + + SKIP + + + + + Skip rate: + + + + + + + % + + + + + MISS + + + + + Miss rate: + + + + + TIME + + + + + Arpeggio time: + + + + + ms + + + + + GATE + + + + + Arpeggio gate: + + + + + Chord: + + + + + Direction: + + + + + Mode: + + + + + lmms::gui::InstrumentFunctionNoteStackingView + + + STACKING + + + + + Chord: + + + + + RANGE + + + + + Chord range: + + + + + octave(s) + + + + + lmms::gui::InstrumentMidiIOView + + + ENABLE MIDI INPUT + + + + + + CHAN + This string must be be short, its width must be less than * width of LCD spin-box of two digits + + + + + + VELOC + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + ENABLE MIDI OUTPUT + + + + + PROG + This string must be be short, its width must be less than the * width of LCD spin-box of three digits + + + + + NOTE + This string must be be short, its width must be less than * width of LCD spin-box of three digits + + + + + MIDI devices to receive MIDI events from + + + + + MIDI devices to send MIDI events to + + + + + VELOCITY MAPPING + + + + + MIDI VELOCITY + + + + + MIDI notes at this velocity correspond to 100% note velocity. + + + + + lmms::gui::InstrumentSoundShapingView + + + TARGET + + + + + FILTER + + + + + FREQ + + + + + Cutoff frequency: + + + + + Hz + + + + + Q/RESO + + + + + Q/Resonance: + + + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + lmms::gui::InstrumentTrackView + + + Mixer channel + + + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + MIDI + + + + + Input + + + + + Output + + + + + Open/Close MIDI CC Rack + + + + + %1: %2 + + + + + lmms::gui::InstrumentTrackWindow + + + Volume + + + + + Volume: + + + + + VOL + + + + + Panning + + + + + Panning: + + + + + PAN + + + + + Pitch + + + + + Pitch: + + + + + cents + + + + + PITCH + + + + + Pitch range (semitones) + + + + + RANGE + + + + + Mixer channel + + + + + CHANNEL + + + + + Save current instrument track settings in a preset file + + + + + SAVE + + + + + Envelope, filter & LFO + + + + + Chord stacking & arpeggio + + + + + Effects + + + + + MIDI + + + + + Tuning and transposition + + + + + Save preset + + + + + XML preset file (*.xpf) + + + + + Plugin + + + + + lmms::gui::InstrumentTuningView + + + GLOBAL TRANSPOSITION + + + + + Enables the use of global transposition + + + + + Microtuner is not available for MIDI-based instruments. + + + + + MICROTUNER + + + + + Active scale: + + + + + + Edit scales and keymaps + + + + + Active keymap: + + + + + Import note ranges from keymap + + + + + When enabled, the first, last and base notes of this instrument will be overwritten with values specified by the selected keymap. + + + + + lmms::gui::KickerInstrumentView + + + Start frequency: + + + + + End frequency: + + + + + Frequency slope: + + + + + Gain: + + + + + Envelope length: + + + + + Envelope slope: + + + + + Click: + + + + + Noise: + + + + + Start distortion: + + + + + End distortion: + + + + + lmms::gui::LOMMControlDialog + + + Depth: + + + + + Compression amount for all bands + + + + + Time: + + + + + Attack/release scaling for all bands + + + + + Input Volume: + + + + + Input volume + + + + + Output Volume: + + + + + Output volume + + + + + Upward Depth: + + + + + Upward compression amount for all bands + + + + + Downward Depth: + + + + + Downward compression amount for all bands + + + + + High/Mid Crossover + + + + + Mid/Low Crossover + + + + + High/mid band split + + + + + Mid/low band split + + + + + Enable High Band + + + + + Enable Mid Band + + + + + Enable Low Band + + + + + High Input Volume: + + + + + Input volume for high band + + + + + Mid Input Volume: + + + + + Input volume for mid band + + + + + Low Input Volume: + + + + + Input volume for low band + + + + + High Output Volume: + + + + + Output volume for high band + + + + + Mid Output Volume: + + + + + Output volume for mid band + + + + + Low Output Volume: + + + + + Output volume for low band + + + + + Above Threshold High + + + + + Downward compression threshold for high band + + + + + Above Threshold Mid + + + + + Downward compression threshold for mid band + + + + + Above Threshold Low + + + + + Downward compression threshold for low band + + + + + Above Ratio High + + + + + Downward compression ratio for high band + + + + + Above Ratio Mid + + + + + Downward compression ratio for mid band + + + + + Above Ratio Low + + + + + Downward compression ratio for low band + + + + + Below Threshold High + + + + + Upward compression threshold for high band + + + + + Below Threshold Mid + + + + + Upward compression threshold for mid band + + + + + Below Threshold Low + + + + + Upward compression threshold for low band + + + + + Below Ratio High + + + + + Upward compression ratio for high band + + + + + Below Ratio Mid + + + + + Upward compression ratio for mid band + + + + + Below Ratio Low + + + + + Upward compression ratio for low band + + + + + Attack High: + + + + + Attack time for high band + + + + + Attack Mid: + + + + + Attack time for mid band + + + + + Attack Low: + + + + + Attack time for low band + + + + + Release High: + + + + + Release time for high band + + + + + Release Mid: + + + + + Release time for mid band + + + + + Release Low: + + + + + Release time for low band + + + + + RMS Time: + + + + + RMS size for sidechain signal (set to 0 for Peak mode) + + + + + Knee: + + + + + Knee size for all compressors + + + + + Range: + + + + + Maximum gain increase for all bands + + + + + Balance: + + + + + Bias input volume towards one channel + + + + + Scale output volume with Depth + + + + + Scale output volume with Depth parameter + + + + + Stereo Link + + + + + Apply same gain change to both channels + + + + + Auto Time: + + + + + Speed up attack and release times when transients occur + + + + + Mix: + + + + + Wet/Dry of all bands + + + + + Feedback + + + + + Use output as sidechain signal instead of input + + + + + Mid/Side + + + + + Compress mid/side channels instead of left/right + + + + + + Suppress upward compression for side band + + + + + + Lookahead + + + + + Lookahead length + + + + + Clear all parameters + + + + + lmms::gui::LadspaBrowserView + + + + Available Effects + + + + + + Unavailable Effects + + + + + + Instruments + + + + + + Analysis Tools + + + + + + Don't know + + + + + Type: + + + + + lmms::gui::LadspaControlDialog + + + Link Channels + + + + + Channel + + + + + lmms::gui::LadspaControlView + + + Link channels + + + + + Value: + + + + + lmms::gui::LadspaDescription + + + Plugins + + + + + Description + + + + + Name: + + + + + Maker: + + + + + Copyright: + + + + + Requires Real Time: + + + + + + + Yes + + + + + + + No + + + + + Real Time Capable: + + + + + In Place Broken: + + + + + Channels In: + + + + + Channels Out: + + + + + lmms::gui::LadspaMatrixControlDialog + + + Link Channels + + + + + Link + + + + + Channel %1 + + + + + Link channels + + + + + lmms::gui::LadspaPortDialog + + + Ports + + + + + Name + + + + Rate - - + + Direction + + + + + Type + + + + + Min < Default < Max + + + + + Logarithmic + + + + + SR Dependent + + + + + Audio + + + + + Control + + + + + Input + + + + + Output + + + + + Toggled + + + + + Integer + + + + + Float + + + + + + Yes + + + + + lmms::gui::Lb302SynthView + + + Cutoff Freq: + + + + + Resonance: + + + + + Env Mod: + + + + + Decay: + + + + + 303-es-que, 24dB/octave, 3 pole filter + + + + + Slide Decay: + + + + + DIST: + + + + + Saw wave + + + + + Click here for a saw-wave. + + + + + Triangle wave + + + + + Click here for a triangle-wave. + + + + + Square wave + + + + + Click here for a square-wave. + + + + + Rounded square wave + + + + + Click here for a square-wave with a rounded end. + + + + + Moog wave + + + + + Click here for a moog-like wave. + + + + + Sine wave + + + + + Click for a sine-wave. + + + + + + White noise wave + + + + + Click here for an exponential wave. + + + + + Click here for white-noise. + + + + + Bandlimited saw wave + + + + + Click here for bandlimited saw wave. + + + + + Bandlimited square wave + + + + + Click here for bandlimited square wave. + + + + + Bandlimited triangle wave + + + + + Click here for bandlimited triangle wave. + + + + + Bandlimited moog saw wave + + + + + Click here for bandlimited moog saw wave. + + + + + lmms::gui::LcdFloatSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LcdSpinBox + + + Set value + + + + + Please enter a new value between %1 and %2: + + + + + lmms::gui::LeftRightNav + + + + + Previous + + + + + + + Next + + + + + Previous (%1) + + + + + Next (%1) + + + + + lmms::gui::LfoControllerDialog + + + LFO + + + + + BASE + + + + + Base: + + + + + FREQ + + + + + LFO frequency: + + + + + AMNT + + + + + Modulation amount: + + + + + PHS + + + + + Phase offset: + + + + + degrees + + + + + Sine wave + + + + + Triangle wave + + + + + Saw wave + + + + + Square wave + + + + + Moog saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined shape. +Double click to pick a file. + + + + + Multiply modulation frequency by 1 + + + + + Multiply modulation frequency by 100 + + + + + Divide modulation frequency by 100 + + + + + lmms::gui::LfoGraph + + + %1 Hz + + + + + lmms::gui::MainWindow + + + Configuration file + + + + + Error while parsing configuration file at line %1:%2: %3 + + + + + Could not open file + + + + + Could not open file %1 for writing. +Please make sure you have write permission to the file and the directory containing the file and try again! + + + + + Project recovery + + + + + There is a recovery file present. It looks like the last session did not end properly or another instance of LMMS is already running. Do you want to recover the project of this session? + + + + + + Recover + + + + + Recover the file. Please don't run multiple instances of LMMS when you do this. + + + + + + Discard + + + + + Launch a default session and delete the restored files. This is not reversible. + + + + + Version %1 + + + + + Preparing plugin browser + + + + + Preparing file browsers + + + + + My Projects + + + + + My Samples + + + + + My Presets + + + + + My Home + + + + + Root Directory + + + + + Volumes + + + + + My Computer + + + + + Loading background picture + + + + + &File + + + + + &New + + + + + &Open... + + + + + &Save + + + + + Save &As... + + + + + Save as New &Version + + + + + Save as default template + + + + + Import... + + + + + E&xport... + + + + + E&xport Tracks... + + + + + Export &MIDI... + + + + + &Quit + + + + + &Edit + + + + + Undo + + + + + Redo + + + + + Scales and keymaps + + + + + Settings + + + + + &View + + + + + &Tools + + + + + &Help + + + + + Online Help + + + + + Help + + + + + About + + + + + Create new project + + + + + Create new project from template + + + + + Open existing project + + + + + Recently opened projects + + + + + Save current project + + + + + Export current project + + + + + Metronome + + + + + + Song Editor + + + + + + Pattern Editor + + + + + + Piano Roll + + + + + + Automation Editor + + + + + + Mixer + + + + + Show/hide controller rack + + + + + Show/hide project notes + + + + + Untitled + + + + + Recover session. Please save your work! + + + + + LMMS %1 + + + + + Recovered project not saved + + + + + This project was recovered from the previous session. It is currently unsaved and will be lost if you don't save it. Do you want to save it now? + + + + + Project not saved + + + + + The current project was modified since last saving. Do you want to save it now? + + + + + Open Project + + + + + LMMS (*.mmp *.mmpz) + + + + + Save Project + + + + + LMMS Project + + + + + LMMS Project Template + + + + + Save project template + + + + + Overwrite default template? + + + + + This will overwrite your current default template. + + + + + Help not available + + + + + Currently there's no help available in LMMS. +Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + + + + Controller Rack + + + + + Project Notes + + + + + Fullscreen + + + + + Volume as dBFS + + + + + Smooth scroll + + + + + Enable note labels in piano roll + + + + + MIDI File (*.mid) + + + + + + untitled + + + + + + Select file for project-export... + + + + + Select directory for writing exported tracks... + + + + + Save project + + + + + Project saved + + + + + The project %1 is now saved. + + + + + Project NOT saved. + + + + + The project %1 was not saved! + + + + + Import file + + + + + MIDI sequences + + + + + Hydrogen projects + + + + + All file types + + + + + lmms::gui::MalletsInstrumentView + + + Instrument + + + + + Spread + + + + + Spread: + + + + + Random + + + + + Random: + + + + + Missing files + + + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + + + + + Hardness + + + + + Hardness: + + + + + Position + + + + + Position: + + + + + Vibrato gain + + + + + Vibrato gain: + + + + + Vibrato frequency + + + + + Vibrato frequency: + + + + + Stick mix + + + + + Stick mix: + + + + + Modulator + + + + + Modulator: + + + + + Crossfade + + + + + Crossfade: + + + + + LFO speed + + + + + LFO speed: + + + + + LFO depth + + + + + LFO depth: + + + + + ADSR + + + + + ADSR: + + + + + Pressure + + + + + Pressure: + + + + + Speed + + + + + Speed: + + + + + lmms::gui::ManageVSTEffectView + + + - VST parameter control + + + + + VST sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::ManageVestigeInstrumentView + + + + - VST plugin control + + + + + VST Sync + + + + + + Automated + + + + + Close + + + + + lmms::gui::MeterDialog + + + + Meter Numerator + + + + + Meter numerator + + + + + + Meter Denominator + + + + + Meter denominator + + + + + TIME SIG + + + + + lmms::gui::MicrotunerConfig + + + Selected scale slot + + + + + Selected keymap slot + + + + + + First key + + + + + + Last key + + + + + + Middle key + + + + + + Base key + + + + + + + Base note frequency + + + + + Microtuner Configuration + + + + + Scale slot to edit: + + + + + Scale description. Cannot start with "!" and cannot contain a newline character. + + + + + + Load + + + + + + Save + + + + + Load scale definition from a file. + + + + + Save scale definition to a file. + + + + + Enter intervals on separate lines. Numbers containing a decimal point are treated as cents. +Other inputs are treated as integer ratios and must be in the form of 'a/b' or 'a'. +Unity (0.0 cents or ratio 1/1) is always present as a hidden first value; do not enter it manually. + + + + + Apply scale changes + + + + + Verify and apply changes made to the selected scale. To use the scale, select it in the settings of a supported instrument. + + + + + Keymap slot to edit: + + + + + Keymap description. Cannot start with "!" and cannot contain a newline character. + + + + + Load key mapping definition from a file. + + + + + Save key mapping definition to a file. + + + + + Enter key mappings on separate lines. Each line assigns a scale degree to a MIDI key, +starting with the middle key and continuing in sequence. +The pattern repeats for keys outside of the explicit keymap range. +Multiple keys can be mapped to the same scale degree. +Enter 'x' if you wish to leave the key disabled / not mapped. + + + + + FIRST + + + + + First MIDI key that will be mapped + + + + + LAST + + + + + Last MIDI key that will be mapped + + + + + MIDDLE + + + + + First line in the keymap refers to this MIDI key + + + + + BASE N. + + + + + Base note frequency will be assigned to this MIDI key + + + + + BASE NOTE FREQ + + + + + Apply keymap changes + + + + + Verify and apply changes made to the selected key mapping. To use the mapping, select it in the settings of a supported instrument. + + + + + Scale parsing error + + + + + Scale name cannot start with an exclamation mark + + + + + Scale name cannot contain a new-line character + + + + + Interval defined in cents cannot be converted to a number + + + + + Numerator of an interval defined as a ratio cannot be converted to a number + + + + + Denominator of an interval defined as a ratio cannot be converted to a number + + + + + Interval defined as a ratio cannot be negative + + + + + Keymap parsing error + + + + + Keymap name cannot start with an exclamation mark + + + + + Keymap name cannot contain a new-line character + + + + + Scale degree cannot be converted to a whole number + + + + + Scale degree cannot be negative + + + + + Invalid keymap + + + + + Base key is not mapped to any scale degree. No sound will be produced as there is no way to assign reference frequency to any note. + + + + + Open scale + + + + + + Scala scale definition (*.scl) + + + + + Scale load failure + + + + + + Unable to open selected file. + + + + + Open keymap + + + + + + Scala keymap definition (*.kbm) + + + + + Keymap load failure + + + + + Save scale + + + + + Scale save failure + + + + + + Unable to open selected file for writing. + + + + + Save keymap + + + + + Keymap save failure + + + + + lmms::gui::MidiCCRackView + + + + MIDI CC Rack - %1 + + + + + MIDI CC Knobs: + + + + + CC %1 + + + + + lmms::gui::MidiClipView + + + + Transpose + + + + + Semitones to transpose by: + + + + + Open in piano-roll + + + + + Set as ghost in piano-roll + + + + + Set as ghost in automation editor + + + + + Clear all notes + + + + + Reset name + + + + + Change name + + + + + Add steps + + + + + Remove steps + + + + + Clone Steps + + + + + lmms::gui::MidiSetupWidget + + + Device + + + + + lmms::gui::MixerChannelLcdSpinBox + + + Assign to: + + + + + New Mixer Channel + + + + + Please enter a new value between %1 and %2: + + + + + Set value + + + + + lmms::gui::MixerChannelView + + + Channel send amount + + + + + Mute + + + + + Mute this channel + + + + + Solo + + + + + Solo this channel + + + + + Fader %1 + + + + + Move &left + + + + + Move &right + + + + + Rename &channel + + + + + R&emove channel + + + + + Remove &unused channels + + + + + Color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + This Mixer Channel is being used. +Are you sure you want to remove this channel? + +Warning: This operation can not be undone. + + + + + Confirm removal + + + + + Don't ask again + + + + + lmms::gui::MixerView + + + Mixer + + + + + lmms::gui::MonstroView + + + Operators view + + + + + Matrix view + + + + + + + Volume + + + + + + + Panning + + + + + + + Coarse detune + + + + + + + semitones + + + + + + Fine tune left + + + + + + + + cents + + + + + + Fine tune right + + + + + + + Stereo phase offset + + + + + + + + + deg + + + + + Pulse width + + + + + Send sync on pulse rise + + + + + Send sync on pulse fall + + + + + Hard sync oscillator 2 + + + + + Reverse sync oscillator 2 + + + + + Sub-osc mix + + + + + Hard sync oscillator 3 + + + + + Reverse sync oscillator 3 + + + + + + + + Attack + + + + + + Rate + + + + + Phase - - + + Pre-delay - - + + Hold - 保持 + - - + + Decay - 衰減 + - - + + Sustain - 持續 + - - + + Release - 釋放 + - - + + Slope - - Mix 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 - 調製量 + - MultitapEchoControlDialog + lmms::gui::MultitapEchoControlDialog Length - 長度 + Step length: - 步進長度: + Dry - 幹聲 + - Dry Gain: - 幹聲增益: + Dry gain: + @@ -6346,7 +14825,7 @@ PM means phase modulation: Oscillator 3's phase is modulated by oscillator - Lowpass stages: + Low-pass stages: @@ -6356,920 +14835,854 @@ 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 + lmms::gui::NesInstrumentView - - Channel 1 Coarse detune - - - - - Channel 1 Volume - - - - - Channel 1 Envelope length - - - - - Channel 1 Duty cycle - - - - - Channel 1 Sweep amount - - - - - Channel 1 Sweep rate - - - - - Channel 2 Coarse detune - - - - - Channel 2 Volume - - - - - Channel 2 Envelope length - - - - - Channel 2 Duty cycle - - - - - Channel 2 Sweep amount - - - - - Channel 2 Sweep rate - - - - - Channel 3 Coarse detune - - - - - Channel 3 Volume - - - - - Channel 4 Volume - - - - - Channel 4 Envelope length - - - - - Channel 4 Noise frequency - - - - - Channel 4 Noise frequency sweep - - - - - Master volume - 主音量 - - - - Vibrato - - - - - NesInstrumentView - - - - - + + + + Volume - 音量 + - - - + + + Coarse detune - - - + + + Envelope length - + Enable channel 1 - + Enable envelope 1 - + Enable envelope 1 loop - + Enable sweep 1 - - + + Sweep amount - - + + Sweep rate - - + + 12.5% Duty cycle - - + + 25% Duty cycle - - + + 50% Duty cycle - - + + 75% Duty cycle - + Enable channel 2 - + Enable envelope 2 - + Enable envelope 2 loop - + Enable sweep 2 - + Enable channel 3 - + Noise Frequency - + Frequency sweep - + Enable channel 4 - + Enable envelope 4 - + Enable envelope 4 loop - + Quantize noise frequency when using note frequency - + Use note frequency for noise - + Noise mode - - Master Volume - 主音量 + + Master volume + - + Vibrato - OscillatorObject + lmms::gui::OpulenzInstrumentView - - Osc %1 waveform - Osc %1 波形 - - - - Osc %1 harmonic + + + Attack - - - Osc %1 volume - Osc %1 音量 - - - - - Osc %1 panning - Osc %1 聲像 - - - - - Osc %1 fine detuning left + + + Decay - - Osc %1 coarse detuning + + + Release - - Osc %1 fine detuning right - - - - - Osc %1 phase-offset - - - - - Osc %1 stereo phase-detuning - - - - - Osc %1 wave shape - - - - - Modulation type %1 + + + Frequency multiplier - PatchesDialog + lmms::gui::OrganicInstrumentView - - Qsynth: Channel Preset - Qsynth: 通道預設 - - - - Bank selector - 音色選擇器 - - - - Bank - - - - - Program selector + + Distortion: - - Patch - 音色 + + Volume: + - - Name - 名稱 + + Randomise + - - OK - 確定 + + + Osc %1 waveform: + - - Cancel - 取消 + + Osc %1 volume: + + + + + Osc %1 panning: + + + + + Osc %1 stereo detuning + + + + + cents + + + + + Osc %1 harmonic: + - PatmanView + lmms::gui::Oscilloscope - - Open other patch - 打開其他音色 + + Oscilloscope + - - Click here to open another patch-file. Loop and Tune settings are not reset. - 點擊這裏打開另一個音色文件。循環和調音設置不會被重設。 + + Click to enable + + + + + lmms::gui::PatmanView + + + 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 + lmms::gui::PatternClipView - - use mouse wheel to set velocity of a step + + Open in Pattern Editor - - double-click to open in Piano Roll - - - - - Open in piano-roll - 在鋼琴窗中打開 - - - - Clear all notes - 清除所有音符 - - - + Reset name - 重置名稱 + - + Change name - 修改名稱 + + + + + lmms::gui::PatternEditorWindow + + + Pattern Editor + - - Add steps - 添加音階 + + Play/pause current pattern (Space) + - + + Stop playback of current pattern (Space) + + + + + Pattern selector + + + + + Track and step actions + + + + + New pattern + + + + + Clone pattern + + + + + Add sample-track + + + + + Add automation-track + + + + Remove steps - 移除音階 + - + + Add steps + + + + Clone Steps - PeakController + lmms::gui::PeakControllerDialog - - Peak Controller - 峯值控制器 - - - - Peak Controller Bug - 峯值控制器 Bug - - - - Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - 由於在舊版 LMMS 中的錯誤,峰值控制器可能並未正確地連線。請確認峰值控制器正確地連線後再次儲存檔案。造成您的不便,深感抱歉。 - - - - PeakControllerDialog - - + PEAK - + LFO Controller - LFO 控制器 + - PeakControllerEffectControlDialog + lmms::gui::PeakControllerEffectControlDialog - + BASE - 基準 + - - Base amount: - 基礎值: + + Base: + - + AMNT - + Modulation amount: - 調製量: + - + MULT - - Amount Multiplicator: + + Amount multiplicator: - + ATCK - 打擊 + - + Attack: - 打擊聲: + - + DCAY - + Release: - 釋音: + - + TRSH - + Treshold: - - - PeakControllerEffectControls - - Base value - 基準值 - - - - Modulation amount - 調製量 - - - - Attack - 打進聲 - - - - Release - 釋放 - - - - Treshold - 閥值 - - - + Mute output - 輸出靜音 - - - - Abs Value - - Amount Multiplicator + + Absolute value - PianoRoll + lmms::gui::PeakIndicator - - Note Velocity - 音符音量 - - - - Note Panning - 音符聲相偏移 + + -inf + + + + lmms::gui::PianoRoll - Mark/unmark current semitone - 標記/取消標記當前半音 + 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 的值: + - PianoRollWindow + lmms::gui::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) - 停止當前片段(空格) - - - - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. + + Record notes from MIDI-device/channel-piano while playing song or pattern track - - 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. + + Record notes from MIDI-device/channel-piano, one step at the time - - 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. + + Stop playing of current clip (Space) - - 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 - - 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. + + 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 + + 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! + + 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. + + 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 + lmms::gui::PianoView - + Base note - 基本音 + + + + + First note + + + + + Last note + - Plugin - - - Plugin not found - 未找到插件 - - - - The plugin "%1" wasn't found or could not be loaded! -Reason: "%2" - 插件“%1”無法找到或無法載入! -原因:%2 - - - - Error while loading plugin - 載入插件時發生錯誤 - - - - Failed to load plugin "%1"! - 載入插件“%1”失敗! - - - - PluginBrowser + lmms::gui::PluginBrowser Instrument Plugins @@ -7278,5691 +15691,3064 @@ Reason: "%2" Instrument browser - 樂器瀏覽器 + - Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - 將樂器插件拖入歌曲編輯器, 節拍低音線編輯器, 或者現有的樂器軌道。 - - - - PluginFactory - - - Plugin not found. - 未找到插件。 + Drag an instrument into either the Song Editor, the Pattern Editor or an existing instrument track. + - - LMMS plugin %1 does not have a plugin descriptor named %2! + + Search - ProjectNotes + lmms::gui::PluginDescWidget - + + Send to new instrument track + + + + + lmms::gui::ProjectNotes + + Project Notes - 顯示/隱藏工程註釋 + - + Enter project notes here - + Edit Actions - 編輯功能 + - + &Undo - 撤銷(&U) + - + %1+Z - %1+Z + - + &Redo - 重做(&R) + - + %1+Y - %1+Y + - + &Copy - 複製(&C) + - + %1+C - %1+C + - + Cu&t - 剪切(&T) + - + %1+X - %1+X + - + &Paste - 粘貼(&P) + - + %1+V - %1+V + - + Format Actions - 格式功能 + - + &Bold - 加粗(&B) + - + %1+B - %1+B + - + &Italic - 斜體(&I) + - + %1+I - %1+I + - + &Underline - 下劃線(&U) + - + %1+U - %1+U + - + &Left - 左對齊(&L) + - + %1+L - %1+L + - + C&enter - 居中(&E) + - + %1+E - %1+E + - + &Right - 右對齊(&R) + - + %1+R - %1+R + - + &Justify - 勻齊(&J) + - + %1+J - %1+J + - + &Color... - 顏色(&C)... - - - - ProjectRenderer - - - WAV-File (*.wav) - WAV-文件 (*.wav) - - - - Compressed OGG-File (*.ogg) - 壓縮的 OGG 文件(*.ogg) - - - FLAC-File (*.flac) - - - - - Compressed MP3-File (*.mp3) - QWidget + lmms::gui::RecentProjectsMenu - - - - Name: - 名稱: - - - - - Maker: - 製作者: - - - - - Copyright: - 版權: - - - - - Requires Real Time: - 要求實時: - - - - - - - - - Yes - - - - - - - - - - No - - - - - - Real Time Capable: - 是否支持實時: - - - - - In Place Broken: + + &Recently Opened Projects - - - - Channels In: - 輸入通道: - - - - - Channels Out: - 輸出通道: - - - - File: %1 - 檔案:%1 - - - - File: - 檔案: - - RenameDialog + lmms::gui::RenameDialog - + Rename... - 重命名... + - ReverbSCControlDialog + lmms::gui::ReverbSCControlDialog - + Input - 輸入 - - - - Input Gain: - 輸入增益: + - Size + Input gain: - - Size: + + Size - Color + Size: - - Color: + + Color + Color: + + + + Output - 輸出 - - - - Output Gain: - 輸出增益: - - - - ReverbSCControls - - - Input Gain - - Size - - - - - Color - - - - - Output Gain + + Output gain: - SampleBuffer + lmms::gui::SaControlsDialog - - Fail to open file - 無法開啟檔案 + + Pause + - - Audio files are limited to %1 MB in size and %2 minutes of playing time - 音訊檔案的檔案大小已限制為 %1 MB,播放時間已限制為 %2 分鐘。 + + Pause data acquisition + - - Open audio file - 開啟音訊檔案 + + Reference freeze + - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) - 所有音訊檔案 (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + Freeze current input as a reference / disable falloff in peak-hold mode. + - - Wave-Files (*.wav) - Wave 波形檔案 (*.wav) + + Waterfall + - - OGG-Files (*.ogg) - OGG 檔案 (*.ogg) + + Display real-time spectrogram + - - DrumSynth-Files (*.ds) - DrumSynth 檔案 (*.ds) + + Averaging + - - FLAC-Files (*.flac) - FLAC 檔案 (*.flac) + + Enable exponential moving average + - - SPEEX-Files (*.spx) - SPEEX 檔案 (*.spx) + + Stereo + - - VOC-Files (*.voc) - VOC 檔案 (*.voc) + + Display stereo channels separately + - - AIFF-Files (*.aif *.aiff) - AIFF 檔案 (*.aif *.aiff) + + Peak hold + - - AU-Files (*.au) - AU 檔案 (*.au) + + Display envelope of peak values + - - RAW-Files (*.raw) - RAW 檔案 (*.raw) + + Logarithmic frequency + + + + + Switch between logarithmic and linear frequency scale + + + + + + Frequency range + + + + + Logarithmic amplitude + + + + + Switch between logarithmic and linear amplitude scale + + + + + + Amplitude range + + + + + + FFT block size + + + + + + FFT window type + + + + + Envelope res. + + + + + Increase envelope resolution for better details, decrease for better GUI performance. + + + + + Maximum number of envelope points drawn per pixel: + + + + + Spectrum res. + + + + + Increase spectrum resolution for better details, decrease for better GUI performance. + + + + + Maximum number of spectrum points drawn per pixel: + + + + + Falloff factor + + + + + Decrease to make peaks fall faster. + + + + + Multiply buffered value by + + + + + Averaging weight + + + + + Decrease to make averaging slower and smoother. + + + + + New sample contributes + + + + + Waterfall height + + + + + Increase to get slower scrolling, decrease to see fast transitions better. Warning: medium CPU usage. + + + + + Number of lines to keep: + + + + + Waterfall gamma + + + + + Decrease to see very weak signals, increase to get better contrast. + + + + + Gamma value: + + + + + Window overlap + + + + + Increase to prevent missing fast transitions arriving near FFT window edges. Warning: high CPU usage. + + + + + Number of times each sample is processed: + + + + + Zero padding + + + + + Increase to get smoother-looking spectrum. Warning: high CPU usage. + + + + + Processing buffer is + + + + + steps larger than input block + + + + + Advanced settings + + + + + Access advanced settings + - SampleTCOView + lmms::gui::SampleClipView - - double-click to select sample - 雙擊選擇採樣 + + Double-click to open sample + - - Delete (middle mousebutton) - 刪除 (鼠標中鍵) + + Reverse sample + - - Cut - 剪切 - - - - Copy - 複製 - - - - Paste - 粘貼 - - - - Mute/unmute (<%1> + middle click) - 靜音/取消靜音 (<%1> + 鼠標中鍵) + + Set as ghost in automation editor + - SampleTrack + lmms::gui::SampleTrackView - - Volume - 音量 + + Mixer channel + - - Panning - 聲相 - - - - - Sample track - 採樣軌道 - - - - SampleTrackView - - + Track volume - 軌道音量 + - + Channel volume: - 通道音量: + - + VOL - VOL + - + Panning - 聲相 + - + Panning: - 聲相: + - + PAN - PAN + + + + + %1: %2 + - SetupDialog + lmms::gui::SampleTrackWindow - - Setup LMMS - 設置LMMS + + Sample volume + - - - General settings - 常規設置 + + Volume: + - - BUFFER SIZE - 緩衝區大小 + + VOL + - - - Reset to default-value - 重置爲默認值 + + Panning + - - MISC - 雜項 + + Panning: + - - Enable tooltips - 啓用工具提示 + + PAN + - - Show restart warning after changing settings - 在改變設置後顯示重啓警告 + + Mixer channel + - + + CHANNEL + + + + + lmms::gui::SaveOptionsWidget + + + Discard MIDI connections + + + + + Save As Project Bundle (with resources) + + + + + lmms::gui::SetupDialog + + + Settings + + + + + + General + + + + + Graphical user interface (GUI) + + + + Display volume as dBFS - - 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 + + Enable tooltips - - PLUGIN EMBEDDING + + Enable master oscilloscope by default - + + Enable all note labels in piano roll + + + + + Enable compact track buttons + + + + + Enable one instrument-track-window mode + + + + + Show sidebar on the right-hand side + + + + + Let sample previews continue when mouse is released + + + + + Mute automation tracks during solo + + + + + Show warning when deleting tracks + + + + + Show warning when deleting a mixer channel that is in use + + + + + Dual-button + + + + + Grab closest + + + + + Handles + + + + + Loop edit mode + + + + + Projects + + + + + Compress project files by default + + + + + Create a backup file when saving a project + + + + + Reopen last project on startup + + + + + Language + + + + + + Performance + + + + + Autosave + + + + + Enable autosave + + + + + Allow autosave while playing + + + + + User interface (UI) effects vs. performance + + + + + Smooth scroll in song editor + + + + + Display playback cursor in AudioFileProcessor + + + + + Plugins + + + + + VST plugins embedding: + + + + No embedding - + Embed using Qt API - + Embed using native Win32 API - + Embed using XEmbed protocol - - LANGUAGE - 語言 + + Keep plugin windows on top when not embedded + - - + + Keep effects running even without input + + + + + + Audio + + + + + Audio interface + + + + + Buffer size + + + + + Reset to default value + + + + + + MIDI + + + + + MIDI interface + + + + + Automatically assign MIDI controller to selected track + + + + + Behavior when recording + + + + + Auto-quantize notes in Piano Roll + + + + + If enabled, notes will be automatically quantized when recording them from a MIDI controller. If disabled, they are always recorded at the highest possible resolution. + + + + + Paths - 路徑 + - - Directories - 目錄 - - - + 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 - - Allow auto-save while playing + + Default SF2 - - UI effects vs. performance - 界面特效 vs 性能 + + GIG directory + - - Smooth scroll in Song Editor - 歌曲編輯器中啓用平滑滾動 + + Theme directory + - - Show playback cursor in AudioFileProcessor - 在 AudioFileProcessor 中顯示播放指標 + + Background artwork + - - - Audio settings - 音頻設置 + + Some changes require restarting. + - - 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! - 請注意很多設置需要重啓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 - - Auto-save interval: %1 + + Autosave interval: %1 - - 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. + + The currently selected value is not a power of 2 (32, 64, 128, 256). Some plugins may not be available. - - 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 等選項。在下面的方框中你可以設置音頻接口的控制項目。 + + The currently selected value is less than or equal to 32. Some plugins may not be available. + - - 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 接口的控制項目。 + + Frames: %1 +Latency: %2 ms + + + + + Choose the LMMS working directory + + + + + Choose your VST plugins directory + + + + + Choose your LADSPA plugins directory + + + + + Choose your SF2 directory + + + + + Choose your default SF2 + + + + + Choose your GIG directory + + + + + Choose your theme directory + + + + + Choose your background picture + - Song + lmms::gui::Sf2InstrumentView - - Tempo - 節奏 - - - - Master volume - 主音量 - - - - Master pitch - 主音高 - - - - 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 + + + Open SoundFont file - - MIDI File (*.mid) - MIDI 檔案 (*.mid) + + Choose patch + - - The following errors occured while loading: - 載入時發生以下錯誤: + + Gain: + + + + + Apply reverb (if supported) + + + + + Room size: + + + + + Damping: + + + + + Width: + + + + + + Level: + + + + + Apply chorus (if supported) + + + + + Voices: + + + + + Speed: + + + + + Depth: + + + + + SoundFont Files (*.sf2 *.sf3) + - SongEditor + lmms::gui::SidInstrumentView - + + Volume: + + + + + Resonance: + + + + + + Cutoff frequency: + + + + + High-pass filter + + + + + Band-pass filter + + + + + Low-pass filter + + + + + Voice 3 off + + + + + MOS6581 SID + + + + + MOS8580 SID + + + + + + Attack: + + + + + + Decay: + + + + + Sustain: + + + + + + Release: + + + + + Pulse Width: + + + + + Coarse: + + + + + Pulse wave + + + + + Triangle wave + + + + + Saw wave + + + + + Noise + + + + + Sync + + + + + Ring modulation + + + + + Filtered + + + + + Test + + + + + Pulse width: + + + + + lmms::gui::SideBarWidget + + + Close + + + + + lmms::gui::SlicerTView + + + Slice snap + + + + + Set slice snapping for detection + + + + + Sync sample + + + + + Enable BPM sync + + + + + Original sample BPM + + + + + Threshold used for slicing + + + + + Fade Out per note in milliseconds + + + + + Copy midi pattern to clipboard + + + + + Open sample selector + + + + + Reset slices + + + + + Threshold + + + + + Fade Out + + + + + Reset + + + + + Midi + + + + + BPM + + + + + Snap + + + + + lmms::gui::SlicerTWaveform + + + Click to load sample + + + + + lmms::gui::SongEditor + + Could not open file - 無法開啟檔案 + - + Could not open file %1. You probably have no permissions to read this file. Please make sure to have at least read permissions to the file and try again. - 無法開啟 %1。 -請確認您至少有權限讀取此檔案後再試一次。 + - + + Operation denied + + + + + A bundle folder with that name already eists on the selected path. Can't overwrite a project bundle. Please select a different name. + + + + + + + Error + + + + + Couldn't create bundle folder. + + + + + Couldn't create resources folder. + + + + + Failed to copy resources. + + + + + Could not write file - 無法寫入檔案 + - + Could not open %1 for writing. You probably are not permitted to write to this file. Please make sure you have write-access to the file and try again. - 無法開啟 %1 以進行寫入。請確認您有權限寫入此檔案後再試一次。 + - + + An unknown error has occurred and the file could not be saved. + + + + Error in file - 於檔案中發現錯誤 + - + The file %1 seems to contain errors and therefore can't be loaded. - 檔案 %1 似乎包含錯誤,無法進行載入。 - - - - Version difference - - 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). + + Version difference - - High quality mode - 高質量模式 + + This %1 was created with LMMS %2 + - - + + Zoom + + + + + Tempo + + + + + TEMPO + + + + + Tempo in BPM + + + + + + Master volume - 主音量 + - - master volume - 主音量 + + + + Global transposition + - - - Master pitch - 主音高 + + 1/%1 Bar + - - master pitch - 主音高 + + %1 Bars + - + Value: %1% - 值: %1% + - - Value: %1 semitones - 值: %1 半音程 + + Value: %1 keys + - SongEditorWindow + lmms::gui::SongEditorWindow - + Song-Editor - 歌曲編輯器 + - + Play song (Space) - 播放歌曲(空格) + - + Record samples from Audio-device - 從音頻設備錄製樣本 + - - Record samples from Audio-device while playing song or BB track - 在播放歌曲或BB軌道時從音頻設備錄入樣本 + + Record samples from Audio-device while playing song or pattern 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 - 添加節拍/Bassline + + Add pattern-track + - + Add sample-track - 添加採樣軌道 + - + Add automation-track - 添加自動控制軌道 + - + Edit actions - 編輯動作 + - + Draw mode - 繪製模式 + - + + Knife mode (split sample clips) + + + + Edit mode (select and move) - 編輯模式(選定和移動) + - + Timeline controls - 時間線控制 + - + + Bar insert controls + + + + + Insert bar + + + + + Remove bar + + + + Zoom controls - 縮放控制 + + + + + + Zoom + + + + + Snap controls + + + + + + Clip snapping size + + + + + Toggle proportional snap on/off + + + + + Base snapping size + - SpectrumAnalyzerControlDialog + lmms::gui::StepRecorderWidget - - Linear spectrum - 線性頻譜圖 + + Hint + - - Linear Y axis - 線性 Y 軸 + + Move recording curser using <Left/Right> arrows + - SpectrumAnalyzerControls + lmms::gui::StereoEnhancerControlDialog - - Linear spectrum - 線性頻譜圖 + + WIDTH + - - Linear Y axis - 線性 Y 軸 - - - - Channel mode - 通道模式 + + Width: + - SubWindow + lmms::gui::StereoMatrixControlDialog - + + Left to Left Vol: + + + + + Left to Right Vol: + + + + + Right to Left Vol: + + + + + Right to Right Vol: + + + + + lmms::gui::SubWindow + + Close - + Maximize - + Restore - TabWidget + lmms::gui::TapTempoView - - - Settings for %1 - %1 的設定 + + 0 + + + + + + Precision + + + + + Display in high precision + + + + + 0.0 ms + + + + + Mute metronome + + + + + Mute + + + + + BPM in milliseconds + + + + + 0 ms + + + + + Frequency of BPM + + + + + 0.0000 hz + + + + + Reset + + + + + Reset counter and sidebar information + + + + + Sync + + + + + Sync with project tempo + + + + + %1 ms + + + + + %1 hz + - TempoSyncKnob + lmms::gui::TemplatesMenu - - + + New from template + + + + + lmms::gui::TempoSyncBarModelEditor + + + Tempo Sync - + No Sync - 無同步 + - + Eight beats - + Whole note - + Half note - + Quarter note - + 8th note - + 16th note - + 32nd note - + Custom... - + Custom - + Synced to Eight Beats - + Synced to Whole Note - + Synced to Half Note - + Synced to Quarter Note - + Synced to 8th Note - + Synced to 16th Note - + Synced to 32nd Note - TimeDisplayWidget + lmms::gui::TempoSyncKnob - - click to change time units - 點擊改變時間單位 + + + Tempo Sync + - + + No Sync + + + + + Eight beats + + + + + Whole note + + + + + Half note + + + + + Quarter note + + + + + 8th note + + + + + 16th note + + + + + 32nd note + + + + + Custom... + + + + + Custom + + + + + Synced to Eight Beats + + + + + Synced to Whole Note + + + + + Synced to Half Note + + + + + Synced to Quarter Note + + + + + Synced to 8th Note + + + + + Synced to 16th Note + + + + + Synced to 32nd Note + + + + + lmms::gui::TimeDisplayWidget + + + Time units + + + + MIN - + SEC - + MSEC - + BAR - + BEAT - + TICK - TimeLineWidget + lmms::gui::TimeLineWidget - - Enable/disable auto-scrolling - 啓用/禁用自動滾動 + + Auto scrolling + - - Enable/disable loop-points - 啓用/禁用循環點 + + Stepped auto scrolling + - - After stopping go back to begin - 停止後前往開頭 + + Continuous auto scrolling + - + + Auto scrolling disabled + + + + + Loop points + + + + + After stopping go back to beginning + + + + After stopping go back to position at which playing was started - 停止後前往播放開始的地方 + - + After stopping keep position - 停止後保持位置不變 + - - + Hint - 提示 + - + Press <%1> to disable magnetic loop points. - 按住 <%1> 禁用磁性吸附。 - - - - Hold <Shift> to move the begin loop point; Press <%1> to disable magnetic loop points. - 按住 <Shift> 移動起始循環點;按住 <%1> 禁用磁性吸附。 - - - - Track - - - Mute - 靜音 - - - - Solo - 獨奏 - - - - TrackContainer - - - Couldn't import file - 無法匯入檔案 - - - - Couldn't find a filter for importing file %1. -You should convert this file into a format supported by LMMS using another software. - 不支援 %1 的檔案類型。 -請使用其他軟體將此檔案轉換成 LMMS 支援的格式。 - - - - Couldn't open file - 無法開啟檔案 - - - - Couldn't open file %1 for reading. -Please make sure you have read-permission to the file and the directory containing the file and try again! - 無法開啟 %1。 -請確認您有權限讀取此檔案,以及包含此檔案的目錄後再試一次。 - - - - Loading project... - 正在加載工程... - - - - - Cancel - 取消 - - - - - Please wait... - 請稍等... - - - - Loading cancelled - - Project loading was cancelled. + + Set loop begin here - - Loading Track %1 (%2/Total %3) + + Set loop end here - - Importing MIDI-file... - 正在匯入 MIDI 檔案… + + Loop edit mode (hold shift) + + + + + Dual-button + + + + + Grab closest + + + + + Handles + - TrackContentObject + lmms::gui::TrackContentWidget - - Mute - 靜音 - - - - TrackContentObjectView - - - 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) - - - - Delete (middle mousebutton) - 刪除 (鼠標中鍵) - - - - Cut - 剪切 - - - - Copy - 複製 - - - + Paste - 粘貼 - - - - Mute/unmute (<%1> + middle click) - 靜音/取消靜音 (<%1> + 鼠標中鍵) + - TrackOperationsWidget + lmms::gui::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 - + + + 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 - 效果 %1: %2 - - - - Assign to new FX Channel + + Channel %1: %2 - + + Assign to new Mixer Channel + + + + Turn all recording on - + Turn all recording off + + + Track color + + + + + Change + + + + + Reset + + + + + Pick random + + + + + Reset clip colors + + - TripleOscillatorView + lmms::gui::TripleOscillatorView - - 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 - - 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. + + Triangle wave - - Use an exponential wave for current oscillator. + + Saw wave - - Use white-noise for current oscillator. - 爲當前振盪器使用白噪音。 + + Square wave + - - Use a user-defined waveform for current oscillator. - 爲當前振盪器使用用戶自定波形。 + + Moog-like saw wave + + + + + Exponential wave + + + + + White noise + + + + + User-defined wave + + + + + Use alias-free wavetable oscillators. + - VersionedSaveDialog + lmms::gui::VecControlsDialog - + + HQ + + + + + Double the resolution and simulate continuous analog-like trace. + + + + + Log. scale + + + + + Display amplitude on logarithmic scale to better see small values. + + + + + Persist. + + + + + Trace persistence: higher amount means the trace will stay bright for longer time. + + + + + Trace persistence + + + + + lmms::gui::VersionedSaveDialog + + Increment version number - 遞增版本號 + - + Decrement version number - 遞減版本號 + - + + Save Options + + + + already exists. Do you want to replace it? - VestigeInstrumentView + lmms::gui::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. - + + Next (+) + + + + 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插件 + + SO-files (*.so) + - + + No VST plugin loaded + + + + Preset - 預置 + - + by - + - VST plugin control - - VST插件控制 + - VisualizationWidget + lmms::gui::VibedView - - click to enable/disable visualization of master-output - 點擊啓用/禁用視覺化主輸出 + + Enable waveform + - - Click to enable - 點擊啓用 + + + Smooth waveform + + + + + + Normalize waveform + + + + + + Sine wave + + + + + + Triangle wave + + + + + + Saw wave + + + + + + Square wave + + + + + + White noise + + + + + + User-defined wave + + + + + String volume: + + + + + String stiffness: + + + + + Pick position: + + + + + Pickup position: + + + + + String panning: + + + + + String detune: + + + + + String fuzziness: + + + + + String length: + + + + + Impulse Editor + + + + + Impulse + + + + + Enable/disable string + + + + + Octave + + + + + String + - VstEffectControlDialog + lmms::gui::VstEffectControlDialog - + Show/hide - 顯示/隱藏 - - - - Control VST-plugin from LMMS host - 從 LMMS 宿主控制 VST-插件 - - - - Click here, if you want to control VST-plugin from host. - - Open VST-plugin preset - 打開 VST-插件預設 - - - - Click here, if you want to open another *.fxp, *.fxb VST-plugin preset. + + Control VST plugin from LMMS host - + + 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 /> - VstPlugin + lmms::gui::WatsynView - - - The VST plugin %1 could not be loaded. - 無法載入VST插件 %1。 - - - - Open Preset - 打開預置 - - - - - Vst Plugin Preset (*.fxp *.fxb) - VST插件預置文件(*.fxp *.fxb) - - - - : default - : 默認 - - - - " - " - - - - ' - ' - - - - Save Preset - 保存預置 - - - - .fxp - .fxp - - - - .FXP - .FXP - - - - .FXB - .FXB - - - - .fxb - .fxb - - - - Loading plugin - 載入插件 - - - - Please wait while loading VST plugin... - 正在載入VST插件,請稍候…… - - - - WatsynInstrument - - - Volume A1 - - - - - Volume 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 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 - - Click for saw wave + + Saw wave - + + Square wave - 方波 - - - - Click for square wave - ZynAddSubFxInstrument + lmms::gui::WaveShaperControlDialog - - Portamento + + INPUT - - Filter Frequency + + Input gain: - - Filter Resonance + + OUTPUT - - Bandwidth - 帶寬 - - - - FM Gain - FM 增益 - - - - Resonance Center Frequency + + Output gain: - - Resonance Bandwidth + + + Reset wavegraph - - Forward MIDI Control Change Events + + + Smooth wavegraph + + + + + + Increase wavegraph amplitude by 1 dB + + + + + + Decrease wavegraph amplitude by 1 dB + + + + + Clip input + + + + + Clip input signal to 0 dB - ZynAddSubFxView + lmms::gui::XpressiveView - - 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 - - - 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 - - - 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 - - - - - 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 - - - - - 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 - 白噪音 - - - Click here for white-noise. + + + Square wave + + + + + + White noise + + + + WaveInterpolate + ExpressionValid + General purpose 1: + General purpose 2: + General purpose 3: + O1 panning: + O2 panning: + Release transition: + Smoothness - fxLineLcdSpinBox + lmms::gui::ZynAddSubFxView - - Assign to: - 分配給: - - - - New FX Channel - 新的效果通道 - - - - graphModel - - - Graph - 圖形 - - - - kickerInstrument - - - Start frequency - 起始頻率 - - - - End frequency - 結束頻率 - - - - Length - 長度 - - - - Distortion Start - 起始失真度 - - - - Distortion End - 結束失真度 - - - - 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: - 噪音: - - - - 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. - 這個對話框顯示 LMMS 找到的所有 LADSPA 插件信息。這些插件根據接口類型和名字被分爲五個類別。 - -"可用效果" 是指可以被 LMMS 使用的插件。爲了讓 LMMS 可以開啓效果, 首先, 這個插件需要是有效果的。也就是說, 這個插件需要有輸入和輸出通道。LMMS 會將音頻接口名稱中有 ‘in’ 的接口識別爲輸入接口, 將音頻接口名稱中有 ‘out’ 的接口識別爲輸出接口。並且, 效果插件需要有相同的輸入輸出通道, 還要能支持實時處理。 - -"不可用效果" 是指被識別爲效果插件的插件, 但是輸入輸出通道數不同或者不支持實時音頻處理。 - -"樂器" 是指只檢測到有輸出通道的插件。 - -"分析工具" 是指只檢測到有輸入通道的插件。 - -"未知" 是指沒有檢測到任何輸出或輸出通道的插件。 - -雙擊任意插件將會顯示接口信息。 - - - - Type: - 類型: - - - - ladspaDescription - - - Plugins - 插件 - - - - Description - 描述 - - - - ladspaPortDialog - - - Ports + + Portamento: - - Name - 名稱 - - - - Rate + + PORT - - Direction - 方向 - - - - Type - 類型 - - - - Min < Default < Max - 最小 < 默認 < 最大 - - - - Logarithmic - 對數 - - - - SR Dependent + + Filter frequency: - - Audio - 音頻 - - - - Control - 控制 - - - - Input - 輸入 - - - - Output - 輸出 - - - - Toggled + + FREQ - - Integer - 整型 - - - - Float - 浮點 - - - - - Yes - - - - - lb302Synth - - - VCF Cutoff Frequency + + Filter resonance: - - VCF Resonance + + RES - - VCF Envelope Mod + + Bandwidth: - - VCF Envelope Decay + + BW - - Distortion - 失真 - - - - Waveform - 波形 - - - - Slide Decay + + FM gain: - - Slide + + FM GAIN - - Accent + + Resonance center frequency: - - Dead + + RES CF - - 24dB/oct Filter + + Resonance bandwidth: + + + + + RES BW + + + + + Forward MIDI control changes + + + + + Show GUI - - lb302SynthView - - - Cutoff Freq: - - - - - Resonance: - 共鳴: - - - - Env Mod: - - - - - Decay: - 衰減: - - - - 303-es-que, 24dB/octave, 3 pole filter - - - - - Slide Decay: - - - - - DIST: - - - - - Saw wave - 鋸齒波 - - - - Click here for a saw-wave. - - - - - Triangle wave - 三角波 - - - - Click here for a triangle-wave. - 點擊這裡使用三角波。 - - - - Square wave - 方波 - - - - Click here for a square-wave. - 點擊這裡使用方形波。 - - - - Rounded square wave - - - - - Click here for a square-wave with a rounded end. - - - - - Moog wave - - - - - Click here for a moog-like wave. - - - - - Sine wave - 正弦波 - - - - Click for a sine-wave. - - - - - - White noise wave - 白噪音 - - - - Click here for an exponential wave. - - - - - Click here for white-noise. - - - - - Bandlimited saw wave - - - - - Click here for bandlimited saw wave. - - - - - Bandlimited square wave - - - - - Click here for bandlimited square wave. - - - - - Bandlimited triangle wave - - - - - Click here for bandlimited triangle wave. - - - - - Bandlimited moog saw wave - - - - - Click here for bandlimited moog saw wave. - - - - - 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 - - - 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: - - - - - Pressure - - - - - Pressure: - - - - - Speed - - - - - Speed: - - - - - manageVSTEffectView - - - - VST parameter 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 effect knob-controller window. - - - - - 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 - - - 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 - - - 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 - - - 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 - - - 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 Damping - 混響阻尼 - - - - Reverb Width - 混響寬度 - - - - Reverb Level - 混響級別 - - - - Chorus - 合唱 - - - - Chorus Lines - 合唱聲部 - - - - Chorus Level - 合唱電平 - - - - Chorus Speed - 合唱速度 - - - - 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: - 合唱深度: - - - - Open SoundFont file - 開啟 SoundFont 檔案 - - - - SoundFont2 Files (*.sf2) - SoundFont2 Files (*.sf2) - - - - 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. - - - - - stereoEnhancerControlDialog - - - WIDE - - - - - 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 VST-plugin... - 請等待VST插件加載完成... - - - - vibed - - - String %1 volume - - - - - String %1 stiffness - - - - - Pick %1 position - - - - - Pickup %1 position - - - - - Pan %1 - 聲相 %1 - - - - Detune %1 - 去諧 %1 - - - - Fuzziness %1 - 模糊度 %1 - - - - Length %1 - 長度 %1 - - - - Impulse %1 - - - - - Octave %1 - 八度音 %1 - - - - 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. - -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 - 正弦波 - - - - 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 - - - Voice %1 pulse width - - - - - Voice %1 attack - - - - - Voice %1 decay - - - - - Voice %1 sustain - - - - - Voice %1 release - - - - - Voice %1 coarse detuning - - - - - Voice %1 wave shape - 聲音 %1 波形形狀 - - - - Voice %1 sync - 聲音 %1 同步 - - - - Voice %1 ring modulate - - - - - Voice %1 filtered - - - - - Voice %1 test - 聲音 %1 測試 - - - - waveShaperControlDialog - - - INPUT - 輸入 - - - - Input gain: - 輸入增益: - - - - OUTPUT - 輸出 - - - - Output gain: - 輸出增益: - - - - Reset 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 - 將輸入信號限制到 0dB - - - - waveShaperControls - - - Input gain - 輸入增益 - - - - Output gain - 輸出增益 - - - + \ No newline at end of file diff --git a/data/presets/AudioFileProcessor/Bass-Mania.xpf b/data/presets/AudioFileProcessor/Bass-Mania.xpf index f6a016435..9c0d2f073 100644 --- a/data/presets/AudioFileProcessor/Bass-Mania.xpf +++ b/data/presets/AudioFileProcessor/Bass-Mania.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/AudioFileProcessor/Erazor.xpf b/data/presets/AudioFileProcessor/Erazor.xpf index a0481bbc4..c448829fa 100644 --- a/data/presets/AudioFileProcessor/Erazor.xpf +++ b/data/presets/AudioFileProcessor/Erazor.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf b/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf index 2609144de..001bd7462 100644 --- a/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf +++ b/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf b/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf index ac60499f7..808e27c4c 100644 --- a/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf +++ b/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/AudioFileProcessor/SString.xpf b/data/presets/AudioFileProcessor/SString.xpf index bcff41ef6..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 21b31dee0..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 f8e6cf1a5..938b4be36 100644 --- a/data/presets/BitInvader/alien_strings.xpf +++ b/data/presets/BitInvader/alien_strings.xpf @@ -3,7 +3,7 @@ - + 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 f142e64f8..58dd81ea6 100644 --- a/data/presets/BitInvader/bell.xpf +++ b/data/presets/BitInvader/bell.xpf @@ -3,7 +3,7 @@ - + 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 b69f60c30..d0ca7ed45 100644 --- a/data/presets/BitInvader/drama.xpf +++ b/data/presets/BitInvader/drama.xpf @@ -3,7 +3,7 @@ - + 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 db9335790..b71b696c1 100644 --- a/data/presets/BitInvader/pluck.xpf +++ b/data/presets/BitInvader/pluck.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/BitInvader/soft_pad.xpf b/data/presets/BitInvader/soft_pad.xpf index f36ba5401..f6f16550d 100644 --- a/data/presets/BitInvader/soft_pad.xpf +++ b/data/presets/BitInvader/soft_pad.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/BitInvader/spacefx.xpf b/data/presets/BitInvader/spacefx.xpf index 21b374b12..4bd980136 100644 --- a/data/presets/BitInvader/spacefx.xpf +++ b/data/presets/BitInvader/spacefx.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/BitInvader/subbass.xpf b/data/presets/BitInvader/subbass.xpf index 8af395d75..53d6bf838 100644 --- a/data/presets/BitInvader/subbass.xpf +++ b/data/presets/BitInvader/subbass.xpf @@ -3,7 +3,7 @@ - + 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 5928aa4ff..b2c0d9126 100644 --- a/data/presets/BitInvader/toy_piano.xpf +++ b/data/presets/BitInvader/toy_piano.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/BitInvader/wah_synth.xpf b/data/presets/BitInvader/wah_synth.xpf index c6d77a044..13c78c7ad 100644 --- a/data/presets/BitInvader/wah_synth.xpf +++ b/data/presets/BitInvader/wah_synth.xpf @@ -3,7 +3,7 @@ - + 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 12a0989cb..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 e0ccd7a70..4a6e69750 100644 --- a/data/presets/Kicker/HihatOpen.xpf +++ b/data/presets/Kicker/HihatOpen.xpf @@ -3,7 +3,7 @@ - + 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 0102f8cac..877aa94bf 100644 --- a/data/presets/Kicker/Shaker.xpf +++ b/data/presets/Kicker/Shaker.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Kicker/SnareLong.xpf b/data/presets/Kicker/SnareLong.xpf index 8c5202c05..ce5e5cd8a 100644 --- a/data/presets/Kicker/SnareLong.xpf +++ b/data/presets/Kicker/SnareLong.xpf @@ -3,7 +3,7 @@ - + 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 28827b946..19e648d91 100644 --- a/data/presets/Kicker/TrapKick.xpf +++ b/data/presets/Kicker/TrapKick.xpf @@ -3,7 +3,7 @@ - + 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 a539be35e..c6d3cf48b 100644 --- a/data/presets/LB302/STrash.xpf +++ b/data/presets/LB302/STrash.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Monstro/Growl.xpf b/data/presets/Monstro/Growl.xpf index 307343d48..d21804885 100644 --- a/data/presets/Monstro/Growl.xpf +++ b/data/presets/Monstro/Growl.xpf @@ -3,7 +3,7 @@ - + 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 5d516a215..1b277a596 100644 --- a/data/presets/OpulenZ/Clarinet.xpf +++ b/data/presets/OpulenZ/Clarinet.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Combo_organ.xpf b/data/presets/OpulenZ/Combo_organ.xpf index 06c9e0661..457c3f318 100644 --- a/data/presets/OpulenZ/Combo_organ.xpf +++ b/data/presets/OpulenZ/Combo_organ.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/OpulenZ/Epiano.xpf b/data/presets/OpulenZ/Epiano.xpf index 3478d7e3e..bd8380481 100644 --- a/data/presets/OpulenZ/Epiano.xpf +++ b/data/presets/OpulenZ/Epiano.xpf @@ -3,7 +3,7 @@ - + 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 5cf5ef983..6d1bfbe77 100644 --- a/data/presets/OpulenZ/Organ_leslie.xpf +++ b/data/presets/OpulenZ/Organ_leslie.xpf @@ -3,7 +3,7 @@ - + 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 8fba89a8b..349debf6b 100644 --- a/data/presets/OpulenZ/Square.xpf +++ b/data/presets/OpulenZ/Square.xpf @@ -3,7 +3,7 @@ - + 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 9b328541e..2e65f8c6e 100644 --- a/data/presets/Organic/Rubberband.xpf +++ b/data/presets/Organic/Rubberband.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Organic/organ_blues.xpf b/data/presets/Organic/organ_blues.xpf index c5cf9d04e..0ef0f6ffe 100644 --- a/data/presets/Organic/organ_blues.xpf +++ b/data/presets/Organic/organ_blues.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Organic/organ_risingsun.xpf b/data/presets/Organic/organ_risingsun.xpf index 311504acb..aa2f30329 100644 --- a/data/presets/Organic/organ_risingsun.xpf +++ b/data/presets/Organic/organ_risingsun.xpf @@ -3,7 +3,7 @@ - + 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 9c5088cdd..eaed65a78 100644 --- a/data/presets/Organic/puresine.xpf +++ b/data/presets/Organic/puresine.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Organic/sequencer_64.xpf b/data/presets/Organic/sequencer_64.xpf index f2d5016fb..1c59f8bde 100644 --- a/data/presets/Organic/sequencer_64.xpf +++ b/data/presets/Organic/sequencer_64.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/SID/Bass.xpf b/data/presets/SID/Bass.xpf index 24dd6ded2..61a428308 100644 --- a/data/presets/SID/Bass.xpf +++ b/data/presets/SID/Bass.xpf @@ -3,7 +3,7 @@ - + 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 38865bf9e..3796f312f 100644 --- a/data/presets/TripleOscillator/AnalogDreamz.xpf +++ b/data/presets/TripleOscillator/AnalogDreamz.xpf @@ -3,7 +3,7 @@ - + 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 ad600d138..edc441094 100644 --- a/data/presets/TripleOscillator/Arpeggio.xpf +++ b/data/presets/TripleOscillator/Arpeggio.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/ArpeggioPing.xpf b/data/presets/TripleOscillator/ArpeggioPing.xpf index e42604b8f..fd4dfd952 100644 --- a/data/presets/TripleOscillator/ArpeggioPing.xpf +++ b/data/presets/TripleOscillator/ArpeggioPing.xpf @@ -3,7 +3,7 @@ - + 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 593d1f4a1..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 6a8eea0dd..b12a57e8c 100644 --- a/data/presets/TripleOscillator/BrokenToy.xpf +++ b/data/presets/TripleOscillator/BrokenToy.xpf @@ -3,7 +3,7 @@ - + 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 d19280b28..e72a6e365 100644 --- a/data/presets/TripleOscillator/DetunedGhost.xpf +++ b/data/presets/TripleOscillator/DetunedGhost.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/DirtyReece.xpf b/data/presets/TripleOscillator/DirtyReece.xpf index 8a0dea3ad..095c3e665 100644 --- a/data/presets/TripleOscillator/DirtyReece.xpf +++ b/data/presets/TripleOscillator/DirtyReece.xpf @@ -3,7 +3,7 @@ - + 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 6b322280b..104c4066e 100644 --- a/data/presets/TripleOscillator/Drums_HardKick.xpf +++ b/data/presets/TripleOscillator/Drums_HardKick.xpf @@ -3,7 +3,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 51b2b457a..e1e1bed63 100644 --- a/data/presets/TripleOscillator/Drums_HihatO.xpf +++ b/data/presets/TripleOscillator/Drums_HihatO.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Drums_Kick.xpf b/data/presets/TripleOscillator/Drums_Kick.xpf index 7ef4d234a..30c8284e6 100644 --- a/data/presets/TripleOscillator/Drums_Kick.xpf +++ b/data/presets/TripleOscillator/Drums_Kick.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Drums_Snare.xpf b/data/presets/TripleOscillator/Drums_Snare.xpf index 08059d7b1..62f6c55db 100644 --- a/data/presets/TripleOscillator/Drums_Snare.xpf +++ b/data/presets/TripleOscillator/Drums_Snare.xpf @@ -3,7 +3,7 @@ - + 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 c0cf17037..82c3f72e5 100644 --- a/data/presets/TripleOscillator/FuzzyAnalogBass.xpf +++ b/data/presets/TripleOscillator/FuzzyAnalogBass.xpf @@ -3,7 +3,7 @@ - + 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 bbf07b156..90ea1fcea 100644 --- a/data/presets/TripleOscillator/GhostBoy.xpf +++ b/data/presets/TripleOscillator/GhostBoy.xpf @@ -3,7 +3,7 @@ - + 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 f1c7360f2..732571f86 100644 --- a/data/presets/TripleOscillator/Harp-of-a-Fairy.xpf +++ b/data/presets/TripleOscillator/Harp-of-a-Fairy.xpf @@ -3,7 +3,7 @@ - + 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 3289f9222..f0cad3577 100644 --- a/data/presets/TripleOscillator/Jupiter.xpf +++ b/data/presets/TripleOscillator/Jupiter.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/LFO-party.xpf b/data/presets/TripleOscillator/LFO-party.xpf index 30228d117..a2b58ce7e 100644 --- a/data/presets/TripleOscillator/LFO-party.xpf +++ b/data/presets/TripleOscillator/LFO-party.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/LovelyDream.xpf b/data/presets/TripleOscillator/LovelyDream.xpf index 52769caf8..4d061fe2a 100644 --- a/data/presets/TripleOscillator/LovelyDream.xpf +++ b/data/presets/TripleOscillator/LovelyDream.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/MoogArpeggio.xpf b/data/presets/TripleOscillator/MoogArpeggio.xpf index 987e7100d..11a3ee1ff 100644 --- a/data/presets/TripleOscillator/MoogArpeggio.xpf +++ b/data/presets/TripleOscillator/MoogArpeggio.xpf @@ -3,7 +3,7 @@ - + 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 8a8534b44..c19b3e352 100644 --- a/data/presets/TripleOscillator/OldComputerGames.xpf +++ b/data/presets/TripleOscillator/OldComputerGames.xpf @@ -3,7 +3,7 @@ - + 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 a707d2460..62ce53ab5 100644 --- a/data/presets/TripleOscillator/PMFMFTWbass.xpf +++ b/data/presets/TripleOscillator/PMFMFTWbass.xpf @@ -3,7 +3,7 @@ - + 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 efc47b516..b8e7deffc 100644 --- a/data/presets/TripleOscillator/PluckArpeggio.xpf +++ b/data/presets/TripleOscillator/PluckArpeggio.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/PluckBass.xpf b/data/presets/TripleOscillator/PluckBass.xpf index 4d4052dfa..f19113aca 100644 --- a/data/presets/TripleOscillator/PluckBass.xpf +++ b/data/presets/TripleOscillator/PluckBass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/PowerStrings.xpf b/data/presets/TripleOscillator/PowerStrings.xpf index b5ab04178..0fdbd6a56 100644 --- a/data/presets/TripleOscillator/PowerStrings.xpf +++ b/data/presets/TripleOscillator/PowerStrings.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/RaveBass.xpf b/data/presets/TripleOscillator/RaveBass.xpf index 2285dc370..c27e9c790 100644 --- a/data/presets/TripleOscillator/RaveBass.xpf +++ b/data/presets/TripleOscillator/RaveBass.xpf @@ -3,7 +3,7 @@ - + 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 d9873e5f8..57c735322 100644 --- a/data/presets/TripleOscillator/SawReso.xpf +++ b/data/presets/TripleOscillator/SawReso.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/SpaceBass.xpf b/data/presets/TripleOscillator/SpaceBass.xpf index 5a13266fd..b551cc8d4 100644 --- a/data/presets/TripleOscillator/SpaceBass.xpf +++ b/data/presets/TripleOscillator/SpaceBass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Square.xpf b/data/presets/TripleOscillator/Square.xpf index 49859adbc..3b0470990 100644 --- a/data/presets/TripleOscillator/Square.xpf +++ b/data/presets/TripleOscillator/Square.xpf @@ -3,7 +3,7 @@ - + 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 9c4e27be0..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 2de712527..3d65d0530 100644 --- a/data/presets/TripleOscillator/TheMaster.xpf +++ b/data/presets/TripleOscillator/TheMaster.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/TranceLead.xpf b/data/presets/TripleOscillator/TranceLead.xpf index 003739d39..8a6963e91 100644 --- a/data/presets/TripleOscillator/TranceLead.xpf +++ b/data/presets/TripleOscillator/TranceLead.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/WarmStack.xpf b/data/presets/TripleOscillator/WarmStack.xpf index d3ab54bf0..6b0855e39 100644 --- a/data/presets/TripleOscillator/WarmStack.xpf +++ b/data/presets/TripleOscillator/WarmStack.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/TripleOscillator/Whistle.xpf b/data/presets/TripleOscillator/Whistle.xpf index 545abd378..61bf8a546 100644 --- a/data/presets/TripleOscillator/Whistle.xpf +++ b/data/presets/TripleOscillator/Whistle.xpf @@ -3,7 +3,7 @@ - + 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 2d22169bc..3864514e9 100644 --- a/data/presets/Vibed/Harpsichord.xpf +++ b/data/presets/Vibed/Harpsichord.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Vibed/SadPad.xpf b/data/presets/Vibed/SadPad.xpf index b702d1896..00b9f1001 100644 --- a/data/presets/Vibed/SadPad.xpf +++ b/data/presets/Vibed/SadPad.xpf @@ -3,7 +3,7 @@ - + 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/Xpressive/Accordion.xpf b/data/presets/Xpressive/Accordion.xpf index a7a3a3b43..aa0957063 100644 --- a/data/presets/Xpressive/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 index fa3bc736d..9d90ca516 100644 --- a/data/presets/Xpressive/Ambition.xpf +++ b/data/presets/Xpressive/Ambition.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Baby Violin.xpf b/data/presets/Xpressive/Baby Violin.xpf index 45e407fc8..11f02c4d9 100644 --- a/data/presets/Xpressive/Baby Violin.xpf +++ b/data/presets/Xpressive/Baby Violin.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Bad Singer.xpf b/data/presets/Xpressive/Bad Singer.xpf index 10fe3b308..b303f590b 100644 --- a/data/presets/Xpressive/Bad Singer.xpf +++ b/data/presets/Xpressive/Bad Singer.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Cloud Bass.xpf b/data/presets/Xpressive/Cloud Bass.xpf index 15bf4188d..ac14b8fd5 100644 --- a/data/presets/Xpressive/Cloud Bass.xpf +++ b/data/presets/Xpressive/Cloud Bass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Creature.xpf b/data/presets/Xpressive/Creature.xpf index 8ae8a2794..10d443132 100644 --- a/data/presets/Xpressive/Creature.xpf +++ b/data/presets/Xpressive/Creature.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Dream.xpf b/data/presets/Xpressive/Dream.xpf index 3b5dd7da2..3eb20cf60 100644 --- a/data/presets/Xpressive/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 index 3f9aef104..65e4b35d8 100644 --- a/data/presets/Xpressive/Electric Shock.xpf +++ b/data/presets/Xpressive/Electric Shock.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Faded Colors - notes test.xpf b/data/presets/Xpressive/Faded Colors - notes test.xpf index de4938f4d..53b6ba726 100644 --- a/data/presets/Xpressive/Faded Colors - notes test.xpf +++ b/data/presets/Xpressive/Faded Colors - notes test.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Faded Colors.xpf b/data/presets/Xpressive/Faded Colors.xpf index a514ee438..469a0b51d 100644 --- a/data/presets/Xpressive/Faded Colors.xpf +++ b/data/presets/Xpressive/Faded Colors.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Fat Flute.xpf b/data/presets/Xpressive/Fat Flute.xpf index 76d9e2f84..ada0512d2 100644 --- a/data/presets/Xpressive/Fat Flute.xpf +++ b/data/presets/Xpressive/Fat Flute.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Frog.xpf b/data/presets/Xpressive/Frog.xpf index bf8b2b249..3dc3f6b29 100644 --- a/data/presets/Xpressive/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 index d44b332b2..2377f0566 100644 --- a/data/presets/Xpressive/Horn.xpf +++ b/data/presets/Xpressive/Horn.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Low Battery.xpf b/data/presets/Xpressive/Low Battery.xpf index 009c036cd..6b73b9db3 100644 --- a/data/presets/Xpressive/Low Battery.xpf +++ b/data/presets/Xpressive/Low Battery.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Piano-Gong.xpf b/data/presets/Xpressive/Piano-Gong.xpf index a8244b799..1be055702 100644 --- a/data/presets/Xpressive/Piano-Gong.xpf +++ b/data/presets/Xpressive/Piano-Gong.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Rubber Bass.xpf b/data/presets/Xpressive/Rubber Bass.xpf index db4026c5c..f3a5774d5 100644 --- a/data/presets/Xpressive/Rubber Bass.xpf +++ b/data/presets/Xpressive/Rubber Bass.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Space Echoes.xpf b/data/presets/Xpressive/Space Echoes.xpf index be6de3653..abeb7e20a 100644 --- a/data/presets/Xpressive/Space Echoes.xpf +++ b/data/presets/Xpressive/Space Echoes.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Speaker Swapper.xpf b/data/presets/Xpressive/Speaker Swapper.xpf index d4da5aa2f..9c9e4f416 100644 --- a/data/presets/Xpressive/Speaker Swapper.xpf +++ b/data/presets/Xpressive/Speaker Swapper.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Toss.xpf b/data/presets/Xpressive/Toss.xpf index 387e78fd9..9b765203c 100644 --- a/data/presets/Xpressive/Toss.xpf +++ b/data/presets/Xpressive/Toss.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Untuned Bell.xpf b/data/presets/Xpressive/Untuned Bell.xpf index 53de2358b..4a542b286 100644 --- a/data/presets/Xpressive/Untuned Bell.xpf +++ b/data/presets/Xpressive/Untuned Bell.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/Vibrato.xpf b/data/presets/Xpressive/Vibrato.xpf index a7dda25e9..23e816207 100644 --- a/data/presets/Xpressive/Vibrato.xpf +++ b/data/presets/Xpressive/Vibrato.xpf @@ -3,7 +3,7 @@ - + diff --git a/data/presets/Xpressive/X-Distorted.xpf b/data/presets/Xpressive/X-Distorted.xpf index b42495d75..61ee8b6bb 100644 --- a/data/presets/Xpressive/X-Distorted.xpf +++ b/data/presets/Xpressive/X-Distorted.xpf @@ -3,7 +3,7 @@ - + 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/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 bc2445e87..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/Oglsdl-Dr8v2.mmpz b/data/projects/demos/Oglsdl-Dr8v2.mmpz index 14b1b0e85..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 776aeea2b..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/Saber-FinalStep.mmpz b/data/projects/demos/Saber-FinalStep.mmpz index 05a5022a7..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 78e1d611d..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 3ec6a2cff..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/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 @@