diff --git a/.gitignore b/.gitignore index ef5183a3f..45d3a7e96 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,7 @@ .*.sw? *~ /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 diff --git a/.gitmodules b/.gitmodules new file mode 100644 index 000000000..e69de29bb diff --git a/.travis.yml b/.travis.yml index ecb14fd55..4dd7576f8 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,32 @@ language: cpp compiler: gcc -before_install: sudo apt-get update -install: sudo apt-get install libqt4-dev libsndfile-dev fftw3-dev libvorbis-dev libogg-dev libasound2-dev libjack-dev libsdl-dev libsamplerate0-dev libstk0-dev libfluidsynth-dev portaudio19-dev wine-dev g++-multilib libfltk1.3-dev -before_script: mkdir build && cd build -script: cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. && make -j8 VERBOSE=1 +env: + - TARGET_OS=linux + - TARGET_OS=win32 + - TARGET_OS=win64 +before_install: + - if [ $TARGET_OS != linux ]; then sudo add-apt-repository ppa:tobydox/mingw -y; fi + - sudo apt-get update -qq +install: + - if [ $TARGET_OS != linux ]; then sudo apt-get install -y nsis cloog-isl libmpc2 mingw32; fi + - if [ $TARGET_OS != linux ]; then sudo apt-get install -y mingw32-x-qt 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; fi + - if [ $TARGET_OS == win64 ]; then sudo apt-get install -y mingw64-x-qt 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; fi + - if [ $TARGET_OS == linux ]; then sudo apt-get install -y libqt4-dev libsndfile-dev fftw3-dev libvorbis-dev libogg-dev libasound2-dev libjack-dev libsdl-dev libsamplerate0-dev libstk0-dev libfluidsynth-dev portaudio19-dev wine-dev g++-multilib libfltk1.3-dev; fi +before_script: + - mkdir build && cd build +script: + - if [ $TARGET_OS == win32 ]; then ../build_mingw32 || ../build_mingw32; fi + - if [ $TARGET_OS == win64 ]; then ../build_mingw64 || ../build_mingw64; fi + - if [ $TARGET_OS == linux ]; then cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo .. && make -j4 VERBOSE=1; fi + - if [ $TARGET_OS != linux ]; then make; fi +before_deploy: make package +deploy: + provider: releases + api_key: + secure: d4a+x4Gugpss7JK2DcHjyBZDmEFFh4iVfKDfITSD50T6Mc6At4LMgojvEu+6qT6IyOY2vm3UVT6fhyeuWDTRDwW9tfFlaHVA0h8aTRD+eAXOA7pQ8rEMwQO3+WCKuKTfEqUkpL4wxhww8dpkv54tqeIs0S4TBqz9tk8UhzU7XbE= + file: lmms-${TRAVIS_TAG:1}-$TARGET_OS.exe + on: + tags: true + all_branches: true + condition: "$TARGET_OS != linux" + repo: LMMS/lmms diff --git a/CMakeLists.txt b/CMakeLists.txt index ba1536076..11e496475 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -13,9 +13,9 @@ INCLUDE(AddFileDependencies) INCLUDE(CheckIncludeFiles) INCLUDE(FindPkgConfig) -SET(VERSION_MAJOR "0") -SET(VERSION_MINOR "9") -SET(VERSION_PATCH "92") +SET(VERSION_MAJOR "1") +SET(VERSION_MINOR "0") +SET(VERSION_PATCH "98") #SET(VERSION_SUFFIX "") SET(VERSION "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}") IF(VERSION_SUFFIX) @@ -29,6 +29,7 @@ INCLUDE(DetectMachine) OPTION(WANT_ALSA "Include ALSA (Advanced Linux Sound Architecture) 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) OPTION(WANT_CMT "Include Computer Music Toolkit LADSPA plugins" ON) OPTION(WANT_JACK "Include JACK (Jack Audio Connection Kit) support" ON) OPTION(WANT_OGGVORBIS "Include OGG/Vorbis support" ON) @@ -43,6 +44,19 @@ OPTION(WANT_VST "Include VST support" ON) OPTION(WANT_VST_NOWINE "Include partial VST support (without wine)" OFF) OPTION(WANT_WINMM "Include WinMM MIDI support" OFF) + +IF(LMMS_BUILD_APPLE) + SET(WANT_SF2 OFF) + SET(WANT_ALSA OFF) + SET(WANT_PULSEAUDIO OFF) + SET(WANT_VST OFF) + SET(STATUS_ALSA "") + SET(STATUS_PULSEAUDIO "") + # MacPorts: /opt/local/lib + LINK_DIRECTORIES(${LINK_DIRECTORIES} /opt/local/lib) +ENDIF(LMMS_BUILD_APPLE) + + IF(LMMS_BUILD_WIN32) SET(WANT_ALSA OFF) SET(WANT_JACK OFF) @@ -144,6 +158,18 @@ SET(STATUS_TAP "not built as requested") ENDIF(WANT_TAP) +# check for CARLA +IF(WANT_CARLA) + PKG_CHECK_MODULES(CARLA carla-standalone>=1.9.5) + IF(CARLA_FOUND) + SET(LMMS_HAVE_CARLA TRUE) + SET(STATUS_CARLA "OK") + ELSE(CARLA_FOUND) + SET(STATUS_CARLA "not found, please install the latest carla") + ENDIF(CARLA_FOUND) +ENDIF(WANT_CARLA) + + # check for SDL IF(WANT_SDL) SET(SDL_BUILDING_LIBRARY TRUE) @@ -307,7 +333,16 @@ CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/lmms.rc.in" "${CMAKE_BINARY_DIR}/lmms.rc") CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/plugins/zynaddsubfx/zynaddsubfx.rc.in" "${CMAKE_BINARY_DIR}/plugins/zynaddsubfx/zynaddsubfx.rc") # set compiler flags -SET(WERROR_FLAGS "-Wall -Werror -Werror=unused-function -Wno-sign-compare -Wno-strict-overflow") +SET(WERROR_FLAGS "-Wall -Werror=unused-function -Wno-sign-compare -Wno-strict-overflow") +IF(NOT LMMS_BUILD_APPLE) + 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"))) + SET(WERROR_FLAGS "${WERROR_FLAGS} -Wno-array-bounds") +ENDIF() + SET(CMAKE_C_FLAGS "-O2 -g ${WERROR_FLAGS} ${CMAKE_C_FLAGS}") SET(CMAKE_CXX_FLAGS "-O2 -g -fno-exceptions ${WERROR_FLAGS} ${CMAKE_CXX_FLAGS}") set(CMAKE_C_FLAGS_DEBUG "-DLMMS_DEBUG") @@ -371,6 +406,18 @@ ELSE(WIN32) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fPIC -DPIC") ENDIF(WIN32) +# set up apple vars before traversing into data/scripts +SET(MACOSX_BUNDLE_ICON_FILE "lmms.icns") +SET(MACOSX_BUNDLE_GUI_IDENTIFIER "LMMS") +SET(MACOSX_BUNDLE_LONG_VERSION_STRING "${VERSION}") +SET(MACOSX_BUNDLE_BUNDLE_NAME "LMMS") +SET(MACOSX_BUNDLE_SHORT_VERSION_STRING "${VERSION}") +SET(MACOSX_BUNDLE_BUNDLE_VERSION "${VERSION}") +SET(MACOSX_BUNDLE_COPYRIGHT "Tobias Doerffel, 2008-2010") +SET(MACOSX_BUNDLE_MIMETYPE "application/x-lmms-project") +SET(MACOSX_BUNDLE_MIMETYPE_ICON "project.icns") +SET(MACOSX_BUNDLE_MIMETYPE_ID "net.sourceforge.lmms") +SET(MACOSX_BUNDLE_PROJECT_URL "http://lmms.io") # make sub-directories @@ -428,22 +475,26 @@ IF(LMMS_BUILD_WIN32) INSTALL(FILES "${MINGW_PREFIX}/bin/QtCore4.dll" "${MINGW_PREFIX}/bin/QtGui4.dll" + "${MINGW_PREFIX}/bin/QtSvg4.dll" "${MINGW_PREFIX}/bin/QtXml4.dll" "${MINGW_PREFIX}/bin/libsamplerate-0.dll" "${MINGW_PREFIX}/bin/libsndfile-1.dll" "${MINGW_PREFIX}/bin/libvorbis-0.dll" "${MINGW_PREFIX}/bin/libvorbisenc-2.dll" "${MINGW_PREFIX}/bin/libvorbisfile-3.dll" + "${MINGW_PREFIX}/bin/libjpeg-9.dll" "${MINGW_PREFIX}/bin/libogg-0.dll" + "${MINGW_PREFIX}/lib/libfltk.dll" "${MINGW_PREFIX}/bin/libfluidsynth.dll" "${MINGW_PREFIX}/bin/libfftw3f-3.dll" "${MINGW_PREFIX}/bin/libFLAC-8.dll" "${MINGW_PREFIX}/bin/libportaudio-2.dll" - "${MINGW_PREFIX}/bin/libpng15-15.dll" + "${MINGW_PREFIX}/bin/libpng16-16.dll" "${MINGW_PREFIX}/bin/SDL.dll" "${MINGW_PREFIX}/bin/libglib-2.0-0.dll" "${MINGW_PREFIX}/bin/libgthread-2.0-0.dll" "${MINGW_PREFIX}/bin/zlib1.dll" + "${MINGW_PREFIX}/${CMAKE_SYSTEM_PROCESSOR}-w64-mingw32/bin/libwinpthread-1.dll" DESTINATION .) ELSE(LMMS_BUILD_WIN32) @@ -568,6 +619,7 @@ MESSAGE( MESSAGE( "Optional plugins\n" "----------------\n" +"* Carla Patchbay & Rack : ${STATUS_CARLA}\n" "* SoundFont2 player : ${STATUS_FLUIDSYNTH}\n" "* Stk Mallets : ${STATUS_STK}\n" "* VST-instrument hoster : ${STATUS_VST}\n" @@ -613,8 +665,8 @@ SET(CPACK_PACKAGE_ICON "${CMAKE_SOURCE_DIR}/data/nsis_branding.bmp") SET(CPACK_NSIS_MUI_ICON "${CMAKE_SOURCE_DIR}/data/lmms.ico") SET(CPACK_NSIS_INSTALLED_ICON_NAME "lmms.exe") SET(CPACK_NSIS_DISPLAY_NAME "LMMS ${VERSION}") -SET(CPACK_NSIS_HELP_LINK "http:\\\\\\\\lmms.sourceforge.net") -SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\lmms.sourceforge.net") +SET(CPACK_NSIS_HELP_LINK "http:\\\\\\\\lmms.io") +SET(CPACK_NSIS_URL_INFO_ABOUT "http:\\\\\\\\lmms.io") SET(CPACK_NSIS_CONTACT "lmms-devel@lists.sourceforge.net") SET(CPACK_PACKAGE_EXECUTABLES "lmms.exe;LMMS") SET(CPACK_NSIS_MENU_LINKS "lmms.exe;LMMS") @@ -627,6 +679,8 @@ SET(CPACK_NSIS_EXTRA_INSTALL_COMMANDS " SET(CPACK_NSIS_EXTRA_UNINSTALL_COMMANDS " \\\${unregisterExtension} \\\".mmp\\\" \\\"LMMS Project\\\" \\\${unregisterExtension} \\\".mmpz\\\" \\\"LMMS Project (compressed)\\\" + DeleteRegKey HKCR \\\"LMMS Project\\\" + DeleteRegKey HKCR \\\"LMMS Project (compressed)\\\" ") ELSE(WIN32) SET(CPACK_STRIP_FILES "bin/lmms;${PLUGIN_DIR}/*.so") @@ -639,14 +693,6 @@ IF(WIN64) InstallDir \\\"\\\$PROGRAMFILES64\\\\${CPACK_PACKAGE_INSTALL_DIRECTORY}\\\"") ENDIF(WIN64) -SET(MACOSX_BUNDLE_ICON_FILE "${CMAKE_SOURCE_DIR}/data/themes/default/icon.png") -SET(MACOSX_BUNDLE_GUI_IDENTIFIER "LMMS") -SET(MACOSX_BUNDLE_LONG_VERSION_STRING "${VERSION}") -SET(MACOSX_BUNDLE_BUNDLE_NAME "LMMS") -SET(MACOSX_BUNDLE_SHORT_VERSION_STRING "${VERSION}") -SET(MACOSX_BUNDLE_BUNDLE_VERSION "${VERSION}") -SET(MACOSX_BUNDLE_COPYRIGHT "Tobias Doerffel, 2008-2010") - SET(CPACK_SOURCE_GENERATOR "TBZ2") SET(CPACK_SOURCE_PACKAGE_FILE_NAME "lmms-${VERSION}") INCLUDE(CPack) diff --git a/ChangeLog.old b/ChangeLog.old deleted file mode 100644 index f9ed32886..000000000 --- a/ChangeLog.old +++ /dev/null @@ -1,17877 +0,0 @@ -2009-02-23 Tobias Doerffel - - * README: - * CMakeLists.txt: - made 0.4.3 release - - * include/atomic_int.h: - - fixed typo - - added copy constructor implementation for AtomicInt class - fixes - build failure with Qt < 4.4.0 - - * CMakeLists.txt: - fixed typos - - * cmake/modules/FindSTK.cmake: - * CMakeLists.txt: - reflect changes in MinGW crosscompiling environment - -2009-02-19 Tobias Doerffel - - * include/fade_button.h: - * src/gui/widgets/fade_button.cpp: - rewrote timing of fading animation for not postponing updates of - hidden fadeButton until it becomes visible - - * src/gui/widgets/automatable_button.cpp: - * src/core/track.cpp: - make sure all buttons in trackOperationsWidget have focus-policy - set to Qt::NoFocus in order to make space play song even if you clicked - e.g. a mute-button (closes #2486211) - - * include/note.h: - * src/core/note.cpp: - - coding style fixes - - improved handling of shared detuningHelper object - - * include/instrument_track.h: - * include/piano_roll.h: - * src/gui/piano_roll.cpp: - * src/gui/song_editor.cpp: - * src/tracks/instrument_track.cpp: - fixed various bugs regarding recording: - - once recording has been started, stop it as soon as playMode of song - changes or similiar things happen (closes #2486341) - - fixed broken record-accompany in most use-cases other than using - record-while-playing-song by also tracking NoteOn events and remember - current play position to use the correct note postitions on NoteOff - events (play position might have wrapped around in the meantime due - to looppoints or end of BB track) (closes #2486299, #2486203) - - move timeLine marker in Piano Roll and autoscroll when recording while - playing song (closes #2486334) - -2009-02-14 Tobias Doerffel - - * src/3rdparty/samplerate/samplerate.h: - reverted rev 2037 as we have custom changes in this file - -2009-02-13 Tobias Doerffel - - * include/pattern.h: - * src/tracks/pattern.cpp: - - added missing slot declaration for abortFreeze(), fixes lockup when - freezing pattern (closes #2530320) - - update patternView after freezing - - fixed drawing of frozen pattern - - * include/sample_buffer.h: - * src/core/sample_buffer.cpp: - - when resampling whole sampleBuffer, set end_of_input = 1 in - libsamplerate data struct - fixes lots of zero samples at the end - of output buffer (closes #2531452) - - coding style fixes - - removed obsolete save/restore of EOF-property in libsample rate - data struct when resampling successively (always use 0) - - * src/3rdparty/samplerate/src_linear.c: - * src/3rdparty/samplerate/samplerate.h: - * src/3rdparty/samplerate/src_sinc.c: - * src/3rdparty/samplerate/src_zoh.c: - * src/3rdparty/samplerate/samplerate.c: - * CMakeLists.txt: - integrated latest libsamplerate which is both faster and more reliable - - * src/gui/widgets/visualization_widget.cpp: - disable output monitor per default and show click-hint - -2009-02-12 Tobias Doerffel - - * include/group_box.h: - * src/gui/widgets/effect_rack_view.cpp: - backport: manage effectRackView with a QVBoxLayout - - * src/gui/widgets/controller_rack_view.cpp: - * src/gui/widgets/effect_rack_view.cpp: - backport: prevent Horizontal bars from appearing in some cases - - * cmake/modules/Win32Toolchain.cmake: - reflect recent changes to MinGW cross compiling environment - - * plugins/sf2_player/sf2_player.cpp: - update patch after loading settings (closes #2486372) - - * src/gui/piano_roll.cpp: - ensure, cursor is never NULL when painting it in paintEvent() - - * src/core/sample_buffer.cpp: - do not load samples bigger than 100 MB (closes #2458375) - -2009-02-05 Tobias Doerffel - - * plugins/ladspa_effect/caps/dsp/Eq.h: - better workaround for optimizer bug in GCC >= 4.3 - - * plugins/sid/sid_instrument.cpp: - * plugins/flp_import/unrtf.cpp: - * src/core/track.cpp: - added missing header for compilation with GCC 4.4 - - * include/pattern.h: - * src/tracks/pattern.cpp: - cleanups - - * src/core/envelope_and_lfo_parameters.cpp: - - simplified formulas for calculating envelope array resulting in about - 3x performance with traditional FPU code - - loops now can be vectorized by GCC 4.4 - - * include/atomic_int.h: - * include/audio_port.h: - * include/mixer.h: - * src/core/mixer.cpp: - reworked mixer-threads (synchronization, realization of jobqueue etc.) - which results in a much better performance and stability - -2009-02-04 Andrew Kelley - - * src/gui/piano_roll.cpp: - fixed bug: you can use shift+left to move notes past the beginning - -2009-02-01 Andrew Kelley - - * src/core/track.cpp: - integrated pitanga's patch to fix unquantized BB dragging in - song editor. Changed ctrl modifier to alt to be consistent. - -2009-01-25 Paul Giblock - - * src/tracks/bb_track.cpp: - Integrate broken BB-clone bug from pitanga - -2009-01-25 Paul Giblock - - * src/gui/widgets/knob.cpp: - Fix infinite recursion on Mac OSX - - * plugins/flp_import/unrtf/html.c: - * plugins/flp_import/unrtf/output.h: - * plugins/flp_import/unrtf/convert.c: - Avoid compile warnings - -2009-01-03 Paul Giblock - - * src/gui/widgets/automatable_button.cpp: - fix drag support for button groups - -2008-12-22 Tobias Doerffel - - * CMakeLists.txt: - fixed plugins/ directory when updating localization file - - * plugins/flp_import/flp_import.cpp: - in FL_EffectChannel initialize isMuted member - fixes muted FX channels - when importing older FLP files - -2008-12-19 Tobias Doerffel - - * CMakeLists.txt: - * README: - made 0.4.2 release - - * plugins/vst_base/vst_plugin.h: - * plugins/vst_base/vst_plugin.cpp: - * plugins/vst_effect/vst_effect_control_dialog.cpp: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vestige/vestige.cpp: - fixed crash when adding VST effects - - * include/project_version.h: - * src/core/project_version.cpp: - fixed broken version comparing which indicated 0.x.y to be less than - 0.x.y-patch - fixes messed up projects when loading files created - with LMMS 0.4.0 - -2008-12-17 Tobias Doerffel - - * CMakeLists.txt: - * README: - made 0.4.1 release - - * cmake/modules/FindSTK.cmake: - * include/combobox_model.h: - * include/combobox.h: - * src/core/config_mgr.cpp: - * data/CMakeLists.txt: - * CMakeLists.txt: - added STK support to win32 version of LMMS - - * data/locale/ja.ts: - * data/locale/ja.qm: - added Japanese localization files by - Keishi Suenaga - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - backport: do not create a instrument track window just for calling - dragEnterEvent() - use a static method instead - -2008-12-17 Paul Giblock - - * include/track.h: - * src/core/track.cpp: - backport: cache background per-object instead of per-class - -2008-12-17 Andrew Kelley - - * AUTHORS: - backport: added Andrew Kelley as author - - * src/core/timeline.cpp: - * src/gui/automatable_model_view.cpp: - * src/gui/automation_editor.cpp: - * src/gui/piano_roll.cpp: - * src/gui/widgets/automatable_button.cpp: - * src/gui/widgets/automatable_slider.cpp: - * src/gui/widgets/combobox.cpp: - * src/gui/widgets/fader.cpp: - * src/gui/widgets/knob.cpp: - * src/gui/widgets/lcd_spinbox.cpp: - * src/tracks/sample_track.cpp: - backport: changed modifier detection from mainWindow::isCtrlPressed - etc to Qt framework detection. Fixes a bunch of little glitches and - enables horizontal scroll wheels. - - * include/midi.h: - * include/note.h: - * include/panning.h: - * include/panning_constants.h: - * include/pattern.h: - * include/piano_roll.h: - * src/core/note.cpp: - * src/core/piano.cpp: - * src/tracks/pattern.cpp: - backport: added support for panning editing of notes - -2008-12-15 Paul Giblock - - * src/core/track.cpp: - * include/track.h: - Cache background per-object instead of per-class. - -2008-12-14 Tobias Doerffel - - * CMakeLists.txt: - require at least Qt 4.3.0 - -2008-12-11 Tobias Doerffel - - * include/automation_pattern.h: - * src/core/automation_pattern.cpp: - do not disable automation when just editing first point of an - automation pattern (closes #2146230) - - * include/automation_pattern_view.h: - * src/gui/automation_pattern_view.cpp: - splitted view component out of automation_pattern.* - -2008-12-10 Tobias Doerffel - - * plugins/vst_base/communication.h: - * plugins/vst_base/vst_plugin.cpp: - * plugins/vst_base/remote_vst_plugin.cpp: - rewrote wide parts of LVSL backend: - - now supports two threading models which makes LMMS support plugins - like Sytrus, z3ta+ etc. - - on win32 create native widget as parent for plugin's GUI, fixes - warning message when loading KarmaSynth (closes #2276787) - - try more symbol names for entry procedure - - * include/aeffectx.h: - - made "int"s to "const int"s - - added CCONST macro - - * include/remote_plugin.h: - * src/core/remote_plugin.cpp: - added support for debug messages from remote plugin - -2008-12-08 Tobias Doerffel - - * plugins/vst_base/vst_plugin.cpp: - win32-version: fixed crash when using VST plugins without GUI - - * include/effect_chain.h: - export effectChain for properly building FLP import DLL - - * include/song_editor.h: - * src/gui/song_editor.cpp: - fixed recent commit (m_timeLine was not declared as member yet) - -2008-12-07 Andrew Kelley - - * src/gui/song_editor.cpp: - fixed glitch where it would auto-scroll even if it was off in - song-editor - -2008-12-04 Tobias Doerffel - - * plugins/vst_base/remote_vst_plugin.cpp: - explicitely declare updateSampleRate() and updateBufferSize() as virtual - - * src/tracks/instrument_track.cpp: - decreased step-property of volumeModel and panningModel from 1.0 to 0.1 - for allowing smoother transitions when automating etc. - -2008-12-02 Tobias Doerffel - - * data/locale/ja.ts: - * data/locale/ja.qm: - added Japanese localization files by - Keishi Suenaga - -2008-12-01 Tobias Doerffel - - * plugins/triple_oscillator/triple_oscillator.cpp: - per default play sub-octaves of first oscillator in osc 2 and 3 - -2008-11-22 Tobias Doerffel - - * src/core/automatable_model.cpp: - fixed wrong logic in automatableModel::setValue() which led to bugs when - changing linked controls to 0 - - * src/gui/file_browser.cpp: - do not allow to import unhandled file types, e.g. ZynAddSubFX presets if - plugin is not available (closes #2326384) - -2008-11-21 Tobias Doerffel - - * plugins/flp_import/flp_import.h: - * plugins/flp_import/flp_import.cpp: - completely rewrote FLP import filter since it didn't work at all - anymore - it now doesn't create or change any things in LMMS while - importing and instead builds up a complete data structure first - which represents the FL Studio project and then creates an LMMS - project based upon this data structure - - now supports projects from FL Studio 3 to 8 - - more verbose debug output - - import volume, panning, pitch and FX channel for instrument tracks - - import amplification, loop-mode and reverse-mode settings for - AudioFileProcessor - - import FX mixer settings and effects - - import automation data - - import channel- and pattern names - - import volume and panning settings of individual notes - - add notes of instrument layer master to each layer children for at - least having a complete sound - need to replace with real layering - support later - - map more instruments to various LMMS instruments - - fixed calculations of length and position of notes - - fixed importing steps/dots - - fixed scaling factor of various controls (arpeggio time, - envelope sustain and amount, filter cut/res, TripleOsc volumes etc.) - - if three user defined samples were found for TripleOscillator set - first oscillator to oscillator::SawWave - - * plugins/flp_import/unrtf.cpp: - * plugins/flp_import/CMakeLists.txt: - * plugins/flp_import/unrtf/error.h: - * plugins/flp_import/unrtf/output.c: - * plugins/flp_import/unrtf/html.c: - * plugins/flp_import/unrtf/output.h: - * plugins/flp_import/unrtf/malloc.c: - * plugins/flp_import/unrtf/html.h: - * plugins/flp_import/unrtf/attr.c: - * plugins/flp_import/unrtf/parse.c: - * plugins/flp_import/unrtf/word.c: - * plugins/flp_import/unrtf/malloc.h: - * plugins/flp_import/unrtf/util.c: - * plugins/flp_import/unrtf/attr.h: - * plugins/flp_import/unrtf/parse.h: - * plugins/flp_import/unrtf/convert.c: - * plugins/flp_import/unrtf/word.h: - * plugins/flp_import/unrtf/util.h: - * plugins/flp_import/unrtf/hash.c: - * plugins/flp_import/unrtf/convert.h: - * plugins/flp_import/unrtf/defs.h: - * plugins/flp_import/unrtf/hash.h: - * plugins/flp_import/unrtf/main.h: - * plugins/flp_import/unrtf/error.c: - updated to latest version of unrtf and improved string operations - - * src/core/main.cpp: - added support for importing file from commandline - - * include/effect_chain.h: - added method for enabling/disabling FX chain - - * include/file_browser.h: - * src/gui/file_browser.cpp: - enhanced support for importing various file types directly from browser - - * include/pattern.h: - * src/tracks/pattern.cpp: - added method for toggling steps - - * include/fx_mixer.h: - added method for accessing FX channels - - * plugins/midi_import/midi_import.cpp: - check for tempoAutomationPattern being NULL for not crashing when - importing to BB-Editor - - * include/instrument_track.h: - return pointers instead of references to various internal models - - * include/basic_filters.h: - * include/bb_track_container.h: - * include/instrument_track.h: - * include/pattern.h: - * include/track_container.h: - * src/core/instrument_functions.cpp: - * src/tracks/pattern.cpp: - * src/gui/track_container_view.cpp: - coding style fixes - -2008-11-11 Tobias Doerffel - - * src/core/track.cpp: - * src/core/timeline.cpp: - * src/core/piano.cpp: - * src/core/automation_pattern.cpp: - * src/gui/piano_roll.cpp: - * src/gui/fx_mixer_view.cpp: - * src/gui/widgets/track_label_button.cpp: - * src/gui/widgets/visualization_widget.cpp: - * src/gui/widgets/combobox.cpp: - * src/gui/widgets/tab_widget.cpp: - * src/gui/widgets/kmultitabbar.cpp: - * src/gui/widgets/envelope_and_lfo_view.cpp: - * src/gui/widgets/cpuload_widget.cpp: - * src/gui/widgets/fade_button.cpp: - * src/gui/widgets/lcd_spinbox.cpp: - * src/gui/widgets/group_box.cpp: - * src/gui/widgets/fader.cpp: - * src/gui/widgets/effect_rack_view.cpp: - * src/gui/widgets/effect_view.cpp: - * src/gui/automation_editor.cpp: - set OpaquePaintEvent attribute for all widgets where suitable - makes - whole GUI less sluggish :) - -2008-11-04 Tobias Doerffel - - * plugins/sf2_player/sf2_player.cpp: - fixed broken reference sharing - - * include/automatable_model.h: - * src/core/automatable_model.cpp: - fixed loops when adding a controller to a model which is linked to - another model - - * src/core/effect.cpp: - call saveSettings()/loadSettings() on model rather than loading/saving - value directly - fixes lost automation on basic effect controls - -2008-10-30 Tobias Doerffel - - * CMakeLists.txt: - made 0.4.0 release - - * CMakeLists.txt: - - include all necessary DLLs in win64 build - - fix versioning for CPack if no VERSION_SUFFIX is set - - * plugins/sid/sid_instrument.cpp: - * plugins/papu/papu_instrument.cpp: - * include/clipboard.h: - include QtXml/QDomElement rather than Qt/QtXml - fixes compilation on - OS X - -2008-10-29 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_effect.cpp: - limit processing of TAP Reflector to 192 KHz as it otherwise crashes - - * include/timeline.h: - * src/gui/piano_roll.cpp: - fixed autoscroll feature in piano-roll (closes #2204508) - -2008-10-28 Tobias Doerffel - - * CMakeLists.txt: - disabled PortAudio support until a fix for the crash when accepting - setup-dialog is available - -2008-10-27 Tobias Doerffel - - * data/presets/TripleOscillator/SEGuitar.xpf: - * data/presets/TripleOscillator/SBass2.xpf: - * data/presets/TripleOscillator/STrash.xpf: - * data/presets/TripleOscillator/SString.xpf: - * data/presets/TripleOscillator/SBass.xpf: - added some cool presets by Skiessi - - * plugins/ladspa_effect/ladspa_effect.cpp: - added Freeverb to blacklist as it does not work samplerate independent - - * cmake/modules/Win64Toolchain.cmake: - * cmake/modules/DetectMachine.cmake: - * cmake/modules/BuildPlugin.cmake: - * plugins/ladspa_effect/swh/CMakeLists.txt: - * plugins/ladspa_effect/cmt/CMakeLists.txt: - * plugins/ladspa_effect/tap/CMakeLists.txt: - * plugins/ladspa_effect/caps/CMakeLists.txt: - * plugins/ladspa_effect/caps/dsp/windows.h: - * plugins/vst_base/remote_vst_plugin.cpp: - * plugins/vst_base/basename.c: - * plugins/vst_base/CMakeLists.txt: - * plugins/midi_import/portsmf/allegro.h: - * src/core/midi/midi_winmm.cpp: - * src/core/mixer.cpp: - * lmmsconfig.h.in: - * CMakeLists.txt: - various fixes for successfully building LMMS for win64 - -2008-10-25 Tobias Doerffel - - * include/mixer.h: - * src/core/mixer.cpp: - * src/core/project_renderer.cpp: - - initial (not yet enabled) support for binding mixer threads to CPUs to - reduce scheduling overhead and cache misses (gives avg. 10% performance - boost) - - merged mixer-thread with first worker-thread - no more duplicate - code for single- and multicore processing and better scheduling - on multicore systems - - * include/automatable_model.h: - * src/core/automatable_model.cpp: - * src/core/audio/audio_alsa.cpp: - * src/core/audio/audio_oss.cpp: - * src/core/audio/audio_jack.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/piano.cpp: - * src/core/controller.cpp: - * src/gui/fx_mixer_view.cpp: - * src/gui/widgets/combobox.cpp: - * src/gui/widgets/envelope_and_lfo_view.cpp: - * src/gui/widgets/knob.cpp: - * src/gui/widgets/instrument_midi_io_view.cpp: - * src/gui/widgets/automatable_slider.cpp: - * src/gui/widgets/lcd_spinbox.cpp: - * src/gui/widgets/fader.cpp: - * src/gui/widgets/automatable_button.cpp: - * src/tracks/automation_track.cpp: - do not inline code for fetching value from controller and thus reduce - header dependencies - - * plugins/vst_effect/CMakeLists.txt: - * plugins/vestige/CMakeLists.txt: - * plugins/vst_base/CMakeLists.txt: - * CMakeLists.txt: - made building the WINE-part of VST Support Layer optional to allow - packaging it in separate package (e.g. on 64 bit platforms) - -2008-10-25 dieEasy - - * data/locale/it.qm: - * data/locale/it.ts: - updated Italian localization - -2008-10-25 Tobias Doerffel - - * data/locale/cs.qm: - * data/locale/pt_br.qm: - * data/locale/es.qm: - * data/locale/fr.qm: - * data/locale/nl.qm: - * data/locale/ir.qm: - * data/locale/en.ts: - * data/locale/cs.ts: - * data/locale/pt_br.ts: - * data/locale/es.ts: - * data/locale/fr.ts: - * data/locale/nl.ts: - * data/locale/ca.qm: - * data/locale/ir.ts: - * data/locale/ru.qm: - * data/locale/sv.qm: - * data/locale/ca.ts: - * data/locale/ru.ts: - * data/locale/sv.ts: - * data/locale/en.qm: - refreshed localization files - - * data/locale/de.ts: - * data/locale/de.qm: - updated German localization file - - * src/gui/lfo_controller_dialog.cpp: - fixed strings - - * include/file_browser.h: - * src/gui/file_browser.cpp: - renamed class "listView" to "fileBrowserTreeWidget" - - * cmake/modules/DetectMachine.cmake: - allow specifying destination directory for libs via CMAKE_INSTALL_LIBDIR - - * src/core/sample_buffer.cpp: - - fixed out-of-boundary array access when reversing samples - - optimized loops for loading samples - -2008-10-21 Tobias Doerffel - - * include/plugin.h: - reverted to rev. 1766 - fixes broken label on LADSPA effects - - * include/knob.h: - * src/gui/widgets/knob.cpp: - track focusOutEvents in order to unhide cursor in certain situations - -2008-10-20 Tobias Doerffel - - * CMakeLists.txt: - made 0.4.0-rc3 release - - * README: - various fixes - - * src/gui/dialogs/about_dialog.ui: - use QTextEdit rather than QPlainTextEdit for Qt 4.3 compatibility - -2008-10-19 Tobias Doerffel - - * plugins/sid/sid_instrument.cpp: - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/patman/patman.cpp: - * plugins/lb302/lb302.cpp: - * plugins/organic/organic.cpp: - * plugins/lb303/lb303.cpp: - * plugins/stereo_matrix/stereo_matrix.cpp: - * plugins/bass_booster/bass_booster.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/peak_controller_effect/peak_controller_effect.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/stk/mallets/mallets.cpp: - * plugins/stereo_enhancer/stereo_enhancer.cpp: - * plugins/papu/papu_instrument.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/vestige/vestige.cpp: - * plugins/vst_base/vst_base.cpp: - * plugins/ladspa_browser/ladspa_browser.cpp: - * plugins/spectrum_analyzer/spectrum_analyzer.cpp: - * plugins/kicker/kicker.cpp: - * plugins/flp_import/flp_import.cpp: - * plugins/midi_import/midi_import.cpp: - * include/embed.h: - * include/lmms_basics.h: - * include/plugin.h: - * src/gui/embed.cpp: - made STRINGIFY_PLUGIN_NAME from embed.h a generic macro STRINGIFY in - lmms_basics.h - - * include/about_dialog.h: - * src/gui/about_dialog.cpp: - * src/gui/dialogs/about_dialog.ui: - designed-based about dialog - - * src/gui/widgets/rename_dialog.cpp: - initially select whole string so it can be overwritten easily - - * AUTHORS: - moved an item to lmms-extras/AUTHORS - - * plugins/vst_base/vst_plugin.h: - * plugins/vst_base/vst_plugin.cpp: - * plugins/vst_effect/vst_effect_control_dialog.cpp: - improved VST GUI embedding (closes #2167745) - - * src/gui/track_container_view.cpp: - do not call method on deleted trackView but fetch pointer to track - before deleting trackView (fixes crash when removing a track) - -2008-10-18 Tobias Doerffel - - * src/gui/widgets/track_label_button.cpp: - more checks before accessing icon - fixes crash when using ZynAddSubFX - plugin - - * plugins/vst_base/remote_vst_plugin.cpp: - various tweakings - - * src/core/piano.cpp: - check for focusWidget() being NULL before checking inheritance - fixes - crash for example when loading VST plugins - - * src/gui/main_window.cpp: - use "Root directory" rather than "My computer" in non-win32-version - - * cmake/modules/FindAlsa.cmake: - * CMakeLists.txt: - do not create alsaconfig.h - - * plugins/sf2_player/sf2_player.cpp: - do not mess around with global static pointers for a single instance - of patchesDialog - create a local object instead (closes #2139701) - - * include/file_browser.h: - * src/gui/file_browser.cpp: - added filter feature allowing quick file access - - * include/file_browser.h: - * src/gui/main_window.cpp: - * src/gui/file_browser.cpp: - * data/themes/default/computer.png: - * data/themes/default/home.png: - - renamed tab "root" to "My computer" - - on win32 allow browsing drives in "My computer" tab - - improved icons for home and "My computer" browser - - * include/embed.h: - * include/instrument_track.h: - * include/plugin.h: - * include/track_label_button.h: - * src/gui/widgets/track_label_button.cpp: - in instrument tracks draw icon of instrument rather than displaying the - full name of the instrument on track label button - - * src/tracks/instrument_track.cpp: - do not call trackView::dragEnterEvent() if instrument track window - already accepted drag event - fixes dragging of presets and - instruments onto track label button - - * src/core/piano.cpp: - do not reclaim keyboard focus if new focus widget is a QLineEdit - -2008-10-17 Tobias Doerffel - - * include/remote_plugin.h: - * src/core/remote_plugin.cpp: - added helper thread processWatcher which monitors the remote plugin - process - if it terminates unexpectedly, invalidate remotePlugin so - LMMS doesn't lock up - fixes crashes and lockups when using VST - plugins or ZynAddSubFX plugin - -2008-10-16 Tobias Doerffel - - * src/core/piano.cpp: - reclaim keyboard focus if the current focus-widget lives in the same - instrument-track-window as the previously active test piano - this way - running notes are not stopped when modifying a control in the same - instrument-track-window (closes #2139806) - - * include/file_browser.h: - * src/gui/file_browser.cpp: - heavily improved performance when adding items to file browser - tree-widget (closes #2146218) - -2008-10-15 dieEasy - - * data/locale/it.qm: - * data/locale/it.ts: - updated Italian localization - -2008-10-15 Tobias Doerffel - - * data/locale/cs.qm: - * data/locale/cs.ts: - added Czech localization by Ludek Cerny - - * src/core/timeline.cpp: - move position marker lines even if autoscrolling is disabled - - * include/envelope_and_lfo_parameters.h: - * src/core/envelope_and_lfo_parameters.cpp: - reverted to rev. 1479 as the optimizations lately completely screwed - up things... - - * plugins/flp_import/flp_import.cpp: - * include/basic_filters.h: - cleanups - -2008-10-14 Tobias Doerffel - - * tests/README: - * tests/emptyproject.mmp: - first initial "test" - - * src/core/mixer.cpp: - - use ordered memory semantics for atomic int - - more debug output when encountering bad jobqueue items - - * CMakeLists.txt: - improved dependency handling for building manpage - -2008-10-06 Tobias Doerffel - - * include/mmp.h: - * include/cpuload_widget.h: - * include/endian_handling.h: - * include/track.h: - * include/controller_rack_view.h: - * include/mixer.h: - * include/ladspa_manager.h: - * include/instrument_functions.h: - * include/sample_buffer.h: - * include/effect_lib.h: - * include/midi.h: - * include/effect_rack_view.h: - * include/graph.h: - * include/micro_timer.h: - * include/envelope_and_lfo_parameters.h: - * include/piano_roll.h: - * include/volume.h: - * include/midi_time.h: - * include/basic_filters.h: - * include/journalling_object.h: - * include/automation_editor.h: - * include/panning.h: - * include/project_journal.h: - * include/play_handle.h: - * plugins/bit_invader/bit_invader.h: - * plugins/vibed/vibrating_string.h: - * plugins/vibed/nine_button_selector.h: - * plugins/vibed/string_container.h: - * plugins/vst_base/remote_vst_plugin.cpp: - * src/core/base64.cpp: - * src/gui/widgets/side_bar_widget.cpp: - renamed types.h to lmms_basics.h - -2008-10-06 Attila Herman - - * plugins/papu/papu_intrument.cpp: - - renamed from PAPU to FreeBoy - - help added to the knobs - -2008-10-04 Tobias Doerffel - - * plugins/kicker/kicker.cpp: - moved constants out of loop - - * include/types.h: - set global alignment via a #define - - * src/gui/piano_roll.cpp: - - fixed typo - - do not crash when pressing right mouse button while moving a note - with left mouse button - - * src/core/song.cpp: - lock mixer while adjusting lengths of notePlayHandles after tempo change - - * src/gui/file_browser.cpp: - * src/core/note_play_handle.cpp: - * src/core/audio/audio_port.cpp: - coding style fixes - - * include/mixer.h: - * src/core/mixer.cpp: - removed fine-granular locking of various playHandle-vectors, just use - one global big lock for everything now - prevents various - deadlocks (e.g. when previewing samples in file browser) - - * src/gui/automation_editor.cpp: - in erase-mode do not remove values without clicking - - * src/core/envelope_and_lfo_parameters.cpp: - fixed what I broke a few hours ago.. (closes #2146864) - - * src/core/mmp.cpp: - fixed extension for presets - - * plugins/ladspa_effect/ladspa_effect.cpp: - * include/automatable_model.h: - * include/automation_pattern.h: - * src/core/automatable_model.cpp: - * src/core/ladspa_control.cpp: - * src/core/automation_pattern.cpp: - fixed lost automation relations when switching samplerate - - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - * plugins/bass_booster/bass_booster.cpp: - * plugins/bass_booster/bass_booster.h: - * plugins/bit_invader/bit_invader.cpp: - * plugins/vst_effect/vst_effect.cpp: - * plugins/peak_controller_effect/peak_controller_effect.cpp: - * plugins/stereo_enhancer/stereo_enhancer.cpp: - * plugins/stereo_enhancer/stereo_enhancer.h: - * plugins/spectrum_analyzer/spectrumanalyzer_control_dialog.cpp: - * plugins/kicker/kicker.cpp: - * include/sweep_oscillator.h: - * include/envelope_and_lfo_parameters.h: - * include/remote_plugin.h: - * include/types.h: - * src/core/midi/midi_client.cpp: - * src/core/journalling_object.cpp: - * src/core/audio/audio_pulseaudio.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/effect.cpp: - * src/core/ladspa_control.cpp: - * src/core/peak_controller.cpp: - * src/gui/widgets/visualization_widget.cpp: - * src/gui/widgets/tempo_sync_knob.cpp: - - added missing includes to compile with GCC 4.4 - - optimized various loops for getting tree-vectorized, especially with - upcoming GCC 4.4 - - * CMakeLists.txt: - use -ftree-vectorize per default - everyone compiling LMMS (which - needs Qt >= 4.3.0) will at least have GCC 4.1, anyways only makes - sense when setting C(XX)FLAGS=-march=... - - * include/effect_lib.h: - improved effectLib for not being based on virtual-functions rather than - direct function-inlining via template parameter - -2008-10-02 Tobias Doerffel - - * plugins/lb302/lb302.h: - * plugins/lb303/lb303.h: - removed obsolete supportsParallelizing() method - - * src/tracks/instrument_track.cpp: - fixed volume-scaling for IPH-based but not MIDI-based instruments - - * src/core/envelope_and_lfo_parameters.cpp: - use memset() rather than initializing the buffer in a loop with 0 - - * plugins/ladspa_effect/ladspa_effect.cpp: - fetch pointer to LADSPA port descriptor once outside the inner loops - - improves performance of ladspaEffect::processAudioBuffer() by 400% - - * include/types.h: - faster floating point comparison - - * data/locale/ru.ts: - added updated Russian localization by Alexey Kouznetsov - - * buildtools/bin2res.cpp: - * include/mmp.h: - * include/knob.h: - * include/effect.h: - * include/templates.h: - * include/track.h: - * include/note.h: - * include/automatable_model.h: - * include/import_filter.h: - * include/mixer.h: - * include/combobox_model.h: - * include/ladspa_manager.h: - * include/instrument.h: - * include/sample_buffer.h: - * include/midi.h: - * include/effect_lib.h: - * include/sample_record_handle.h: - * include/shared_object.h: - * include/plugin.h: - * include/note_play_handle.h: - * include/instrument_sound_shaping.h: - * include/oscillator.h: - * include/tempo_sync_knob.h: - * include/midi_time.h: - * include/remote_plugin.h: - * include/basic_filters.h: - * include/journalling_object.h: - * include/types.h: - * include/dummy_effect.h: - * include/automatable_model_view.h: - * include/inline_automation.h: - * include/audio_device.h: - * include/panning.h: - * include/combobox.h: - * include/ladspa_2_lmms.h: - * src/core/preset_preview_play_handle.cpp: - * src/core/note_play_handle.cpp: - * src/core/song.cpp: - * src/core/serializing_object.cpp: - * src/core/bb_track_container.cpp: - * src/core/remote_plugin.cpp: - * src/core/journalling_object.cpp: - * src/core/automatable_model.cpp: - * src/core/audio/audio_alsa.cpp: - * src/core/audio/audio_sdl.cpp: - * src/core/audio/audio_portaudio.cpp: - * src/core/audio/audio_jack.cpp: - * src/core/main.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/effect.cpp: - * src/core/instrument_functions.cpp: - * src/core/controller_connection.cpp: - * src/core/track.cpp: - * src/core/engine.cpp: - * src/core/piano.cpp: - * src/core/timeline.cpp: - * src/core/instrument.cpp: - * src/core/surround_area.cpp: - * src/core/sample_buffer.cpp: - * src/core/oscillator.cpp: - * src/core/automation_pattern.cpp: - * src/core/lfo_controller.cpp: - * src/core/sample_record_handle.cpp: - * src/gui/piano_roll.cpp: - * src/gui/plugin_browser.cpp: - * src/gui/main_window.cpp: - * src/gui/song_editor.cpp: - * src/gui/widgets/kmultitabbar.cpp: - * src/gui/widgets/knob.cpp: - * src/gui/widgets/lcd_spinbox.cpp: - * src/gui/automation_editor.cpp: - * src/tracks/sample_track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * plugins/ladspa_effect/tap/CMakeLists.txt: - * plugins/audio_file_processor/audio_file_processor.cpp: - fixed a bunch warnings and remarks issued by Intel Compiler - - * include/fx_mixer.h: - * src/core/fx_mixer.cpp: - * src/core/mixer.cpp: - - use one static jobqueue for not getting problems with cached pointers - - check for job being NULL - - improved performance of master mix - - * CMakeLists.txt: - allow overriding compiler flags - -2008-09-30 Tobias Doerffel - - * plugins/sid/sid_instrument.h: - * plugins/sid/sid_instrument.cpp: - * plugins/ladspa_effect/tap/CMakeLists.txt: - * plugins/ladspa_effect/caps/CMakeLists.txt: - * plugins/patman/patman.cpp: - * plugins/patman/patman.h: - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/lb303/lb303.cpp: - * plugins/lb303/lb303.h: - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/bit_invader.h: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vibed/vibed.h: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/stk/mallets/mallets.cpp: - * plugins/stk/mallets/mallets.h: - * plugins/papu/papu_instrument.h: - * plugins/papu/papu_instrument.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - * plugins/vestige/vestige.cpp: - * plugins/vestige/vestige.h: - * plugins/kicker/kicker.cpp: - * plugins/kicker/kicker.h: - * include/instrument_play_handle.h: - * include/instrument_track.h: - * include/instrument.h: - * include/sample_record_handle.h: - * include/plugin.h: - * include/note_play_handle.h: - * include/sample_play_handle.h: - * include/remote_plugin.h: - * include/preset_preview_play_handle.h: - * include/play_handle.h: - * src/core/plugin.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/note_play_handle.cpp: - * src/core/remote_plugin.cpp: - * src/core/sample_play_handle.cpp: - * src/core/mixer.cpp: - * src/core/instrument.cpp: - * src/core/sample_record_handle.cpp: - * src/tracks/instrument_track.cpp: - removed obsolete instrument-parallelization support as this is handled - much better by worker threads and adds unnecessary complexity - - * cmake/modules/FindPCHSupport.cmake: - * INSTALL: - * CMakeLists.txt: - - removed (buggy) PCH support - - added support for CFLAGS and CXXFLAGS environment variables - -2008-09-29 Tobias Doerffel - - * plugins/sf2_player/sf2_player.cpp: - use notePlayHandle::getMidiVelocty() rather than - notePlayHandle::getVolume() for allowing less bright sounds by - decreasing instrument-track's volume (if soundfont supports it) - - * plugins/sf2_player/sf2_player.h: - * plugins/vestige/vestige.h: - * plugins/vibed/vibed.h: - * include/instrument.h: - * include/note_play_handle.h: - * src/core/note_play_handle.cpp: - * src/tracks/instrument_track.cpp: - - replaced instrument::notePlayHandleBased() with - instrument::isMidiBased() - - renamed bendable() to isBendable() - - if the instrument is MIDI based and instrument-track's volume - is below 100, adjust velocity of MIDI events and scaling factor when - mixing sound - -2008-09-25 Tobias Doerffel - - * plugins/CMakeLists.txt: - moved LiveTool to LMMS-extras - - * plugins/live_tool/live_tool.h: - * plugins/live_tool/live_tool.cpp: - replaced X11-specific parts by platform independent code but still - does not work properly - - * src/gui/piano_roll.cpp: - play preview notes also while playing (closes #2089399) - - * src/gui/widgets/project_notes.cpp: - minor code improvements - -2008-09-24 Tobias Doerffel - - * plugins/ladspa_effect/cmt/src/syndrum.cpp: - * plugins/ladspa_effect/cmt/src/vcf303.cpp: - * plugins/ladspa_effect/cmt/src/canyondelay.cpp: - * plugins/ladspa_effect/cmt/src/lofi.cpp: - * plugins/ladspa_effect/cmt/src/phasemod.cpp: - * plugins/ladspa_effect/cmt/src/analogue.cpp: - * plugins/ladspa_effect/swh/CMakeLists.txt: - * CMakeLists.txt: - properly build on OS X - - * src/core/main.cpp: - do not show splash if environment variable NOSPLASH is set - - * include/audio_portaudio.h: - * src/core/audio/audio_portaudio.cpp: - * src/core/audio/audio_pulseaudio.cpp: - * src/core/sample_buffer.cpp: - * src/core/sample_record_handle.cpp: - * src/tracks/sample_track.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/sid/wave.cc: - * plugins/sid/sid.cc: - * plugins/sid/sid.h: - * plugins/sid/filter.cc: - fixed compiler warnings - - * src/gui/controller_connection_dialog.cpp: - do not crash when opening controller connection dialog and using a - non-sequenced (raw) MIDI-client - - * data/presets/TripleOscillator/SawLead.xpf: - fixed preset name - -2008-09-23 Tobias Doerffel - - * CMakeLists.txt: - made 0.4.0-rc2 release - - * src/gui/song_editor.cpp: - * data/themes/default/playpos_marker.png: - improved appearence of position line - - * src/gui/file_browser.cpp: - if adding play handle failed for some reason, set internal pointer to - it to NULL - - * include/play_handle.h: - made QThread pointer const - - * include/mixer.h: - * src/core/mixer.cpp: - - lock playHandle mutex in mixer::clear() - - moved implementation of mixer::removePlayHandle() from header to - source-file - - only delete play-handle in mixer::removePlayHandle() if it was - found in playHandle vector (fixes crash when previewing a preset - under high load) - -2008-09-22 Tobias Doerffel - - * CMakeLists.txt: - package ZynAddSubFX into win32 build - - * plugins/vst_base/remote_vst_plugin.cpp: - * include/remote_plugin.h: - made remotePluginClient::process() have no return value - - * src/core/main.cpp: - * data/locale/CMakeLists.txt: - install and load Qt translation files on win32 - - * src/core/song.cpp: - fixed file-dialog for choosing export filename - - * src/core/project_renderer.cpp: - start render-thread with normal priority on win32 as otherwise the - whole GUI is almost frozen - - * CMakeLists.txt: - removed -Wstrict-aliasing=2 warning - - * src/core/midi/midi_winmm.cpp: - cleanups - - * include/audio_sdl.h: - * src/core/audio/audio_sdl.cpp: - fixed deadlocks after projectRenderer ran - - * src/core/main.cpp: - set PaintOnScreen property for splash for not taking part of - compositing management - - * include/song_editor.h: - * include/timeline.h: - * src/core/timeline.cpp: - * src/gui/song_editor.cpp: - added a vertical position line - - * src/core/midi/midi_winmm.cpp: - added support for MIDI out in WinMM MIDI client - -2008-09-22 Paul Giblock - - * plugins/midi_import/portsmf/allegro.cpp: - fixed broken SVN on 64bit systems. Who needs these printfs anyways? - - * plugins/lb302/lb302.cpp: - max wave-shape model's max match the new total of wave-shapes. - - * include/peak_controller.h: - * src/core/peak_controller.cpp: - delete controller when effect is destroyed, but not the other way around - -2008-09-21 Tobias Doerffel - - * src/core/plugin.cpp: - always return a dummy model in plugin::getChildModel() for not - crashing if something goes wrong - - * include/controller_connection_dialog.h: - * src/gui/controller_connection_dialog.cpp: - automatically enable auto-detect LED when selecting a MIDI device - - * include/remote_plugin.h: - * src/core/audio/audio_device.cpp: - * src/core/audio/audio_oss.cpp: - * src/core/drumsynth.cpp: - * src/core/main.cpp: - * src/core/mixer.cpp: - * src/core/sample_record_handle.cpp: - * src/core/track_container.cpp: - * src/gui/widgets/lcd_spinbox.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/lb302/lb302.cpp: - * plugins/midi_import/portsmf/allegrosmfwr.cpp: - * plugins/midi_import/portsmf/allegro.cpp: - * plugins/midi_import/midi_import.cpp: - * plugins/papu/gb_apu/Blip_Buffer.cpp: - * plugins/papu/gb_apu/Blip_Synth.h: - * plugins/papu/gb_apu/blargg_source.h: - * plugins/papu/gb_apu/Blip_Buffer.h: - * plugins/sf2_player/sf2_player.cpp: - fixed compiler warnings - - * src/core/midi/midi_alsa_seq.cpp: - fixed subscription of output ports - - * include/group_box.h: - * include/midi.h: - * include/midi_port.h: - * include/instrument_midi_io_view.h: - * src/core/midi/midi_port.cpp: - * src/gui/widgets/instrument_midi_io_view.cpp: - * data/themes/default/midi_in.png: - * data/themes/default/midi_out.png: - refactored MIDI tab in instrumentTrackWindow which now also allows - setting arbitrary fixed velocity and defining a program for MIDI output - - * include/midi_mapper.h: - * src/core/midi/midi_mapper.cpp: - * data/midi-maps/gm.map: - * data/midi-maps/YamahaPSS790.map: - * data/midi-maps/YamahaPSR400.map: - * data/midi-maps/YamahaPSR500.map: - * data/midi-maps/YamahaQY10.map: - * data/midi-maps/README: - removed obsolete/unused support for MIDI maps - - * CMakeLists.txt: - enable all compiler warnings per default - - * include/audio_file_ogg.h: - * include/audio_file_device.h: - * src/gui/export_project_dialog.cpp: - * src/core/audio/audio_file_device.cpp: - * src/core/audio/audio_file_ogg.cpp: - fixed crashes when exporting as OGG and output file can't be created - or OGG encoding settings are wrong - - * src/core/automation_pattern.cpp: - fixed automationPattern::length() for cases where the key of the - last value was the first tick in a new tact - - * plugins/ladspa_effect/cmt/src/delay.cpp: - initialize CMT_PluginDescriptor with correct number of ports - - * plugins/ladspa_effect/cmt/src/freeverb/Components/allpass.h: - * plugins/ladspa_effect/cmt/src/freeverb/Components/comb.h: - * plugins/ladspa_effect/cmt/src/freeverb/Components/denormals.h: - fixed strict aliasing violation - - * plugins/ladspa_effect/cmt/src/analogue.cpp: - initialize members - - * plugins/ladspa_effect/swh/CMakeLists.txt: - * plugins/ladspa_effect/cmt/CMakeLists.txt: - * plugins/ladspa_effect/tap/CMakeLists.txt: - * plugins/ladspa_effect/caps/basics.h: - * plugins/ladspa_effect/CMakeLists.txt: - - build LADSPA-effect plugin after subdirs have been processed, - otherwise LADSPA plugins are linked against Qt4 and so on - - compile with -fno-strict-aliasing, fixes win32 builds of plugins - -2008-09-21 Paul Giblock - - * include/config_mgr.h: - * include/setup_dialog.h: - * src/gui/main_window.cpp: - * src/gui/setup_dialog.cpp: - * src/core/config_mgr.cpp: - Add support for user-configurable backgound artwork - - * src/core/mmp.cpp: - * data/samples/drumsynth/r_b: - * data/samples/drumsynth/r_n_b: - - Fix incorrect replacement for drumsynth/misc - - Replace r&b,r_b with r_n_b - - * src/core/main.cpp: - - Make "could not set realtime priority" sound less like an error - - Actually commit the file - - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - * src/core/mmp.cpp: - * data/themes/default/round_square_wave_inactive.png: - * data/themes/default/round_square_wave_active.png: - - Remove useless inverted-saw waveform - - Add Sine, Noise, and Exponential waveforms - - Use buttons instead of a knob - - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/bit_invader.h: - - Add support for pitch bend - - Move smoothing button to a more noticable location - - Some coding style changes - - * plugins/stk/mallets/mallets.cpp: - * plugins/stk/mallets/mallets.h: - Add support for pitch bend - - * src/tracks/instrument_track.cpp: - * include/instrument_track.h: - - Correctly update instrumentTrackView when changing the instrument plugin - - Add bendable property to hide pitchBend knob for Vibed - - * plugins/vibed/vibed.h: - * include/instrument.h: - * src/tracks/instrument_track.cpp: - Hide pitch bend one vibed instrument - - * src/gui/setup_dialog.cpp: - - Minor layout fix - - Fix incorrect starting directory for STK - - * data/CMakeLists.txt: - * data/backgrounds: - * data/backgrounds/CMakeLists.txt: - * data/backgrounds/lmms_tile.png: - * data/backgrounds/vinnie.png: - - Move llama theme background to backgrounds/ - - Resurrect the old background - - more to come.. - - * data/themes/llama: - * data/themes/llama/background_artwork.png: - - Remove llama theme - -2008-09-20 Paul Giblock - - * plugins/sf2_player/sf2_player.cpp: - Fix bug introduced in the last edit. Reference sharing was not working - at all because the check was performed with a different filename than - the insert - - * plugins/vibed/logo.png: - Add fabi's improved vibed logo - - * CMakeLists.txt: - Fix copy-and-paste error in a message - - * plugins/papu/papu_instrument.cpp: - - Unselect the noise-channel (ch4) by default - - Coding style changes - - * src/core/song.cpp: - Add hard-coded file-extension filters to the import file screen - -2008-09-20 Tobias Doerffel - - * src/core/config_mgr.cpp: - set default path if a path only contains of a dir-separator - - * data/presets/CMakeLists.txt: - fixed extension of presets - - * plugins/ladspa_effect/cmt/doc/bugs.html: - * plugins/ladspa_effect/cmt/doc/plugins.html: - * plugins/ladspa_effect/cmt/doc/installation.html: - * plugins/ladspa_effect/cmt/doc/license.html: - * plugins/ladspa_effect/cmt/doc/tasks.html: - * plugins/ladspa_effect/cmt/doc/COPYING: - * plugins/ladspa_effect/cmt/doc/overview.html: - * plugins/ladspa_effect/cmt/doc/index.html: - * plugins/ladspa_effect/cmt/doc/adding_plugins.html: - * plugins/ladspa_effect/cmt/doc/changes.html: - * plugins/ladspa_effect/cmt/src/sine.cpp: - * plugins/ladspa_effect/cmt/src/delay.cpp: - * plugins/ladspa_effect/cmt/src/syndrum.cpp: - * plugins/ladspa_effect/cmt/src/vcf303.cpp: - * plugins/ladspa_effect/cmt/src/utils.h: - * plugins/ladspa_effect/cmt/src/wshape_sine.cpp: - * plugins/ladspa_effect/cmt/src/canyondelay.cpp: - * plugins/ladspa_effect/cmt/src/noise.cpp: - * plugins/ladspa_effect/cmt/src/amp.cpp: - * plugins/ladspa_effect/cmt/src/disintegrator.cpp: - * plugins/ladspa_effect/cmt/src/run_adding.h: - * plugins/ladspa_effect/cmt/src/hardgate.cpp: - * plugins/ladspa_effect/cmt/src/cmt.cpp: - * plugins/ladspa_effect/cmt/src/mixer.cpp: - * plugins/ladspa_effect/cmt/src/filter.cpp: - * plugins/ladspa_effect/cmt/src/lofi.cpp: - * plugins/ladspa_effect/cmt/src/am.cpp: - * plugins/ladspa_effect/cmt/src/phasemod.cpp: - * plugins/ladspa_effect/cmt/src/grain.cpp: - * plugins/ladspa_effect/cmt/src/pink.cpp: - * plugins/ladspa_effect/cmt/src/init.cpp: - * plugins/ladspa_effect/cmt/src/ambisonic.cpp: - * plugins/ladspa_effect/cmt/src/pinknoise.h: - * plugins/ladspa_effect/cmt/src/organ.cpp: - * plugins/ladspa_effect/cmt/src/null.cpp: - * plugins/ladspa_effect/cmt/src/logistic.cpp: - * plugins/ladspa_effect/cmt/src/descriptor.cpp: - * plugins/ladspa_effect/cmt/src/freeverb/freeverb.cpp: - * plugins/ladspa_effect/cmt/src/freeverb/Components/allpass.cpp: - * plugins/ladspa_effect/cmt/src/freeverb/Components/comb.cpp: - * plugins/ladspa_effect/cmt/src/freeverb/Components/revmodel.h: - * plugins/ladspa_effect/cmt/src/freeverb/Components/allpass.h: - * plugins/ladspa_effect/cmt/src/freeverb/Components/comb.h: - * plugins/ladspa_effect/cmt/src/freeverb/Components/tuning.h: - * plugins/ladspa_effect/cmt/src/freeverb/Components/denormals.h: - * plugins/ladspa_effect/cmt/src/freeverb/Components/revmodel.cpp: - * plugins/ladspa_effect/cmt/src/freeverb/readme.txt: - * plugins/ladspa_effect/cmt/src/peak.cpp: - * plugins/ladspa_effect/cmt/src/pink_full.cpp: - * plugins/ladspa_effect/cmt/src/dynamic.cpp: - * plugins/ladspa_effect/cmt/src/cmt.h: - * plugins/ladspa_effect/cmt/src/pink_sh.cpp: - * plugins/ladspa_effect/cmt/src/analogue.cpp: - * plugins/ladspa_effect/cmt/src/sledgehammer.cpp: - * plugins/ladspa_effect/cmt/src/ladspa_types.h: - * plugins/ladspa_effect/cmt/CMakeLists.txt: - * plugins/ladspa_effect/CMakeLists.txt: - * CMakeLists.txt: - added CMT LADSPA plugins - should be enough then :) - - * plugins/ladspa_effect/swh/ladspa-util.h: - * plugins/ladspa_effect/swh/phasers_1217.c: - * plugins/ladspa_effect/swh/vynil_1905.c: - * plugins/ladspa_effect/swh/mbeq_1197.c: - * plugins/ladspa_effect/swh/fast_lookahead_limiter_1913.c: - * plugins/ladspa_effect/swh/flanger_1191.c: - * plugins/ladspa_effect/swh/comb_1190.c: - * plugins/ladspa_effect/swh/dc_remove_1207.c: - * plugins/ladspa_effect/swh/dj_eq_1901.c: - * plugins/ladspa_effect/swh/util/biquad.h: - * plugins/ladspa_effect/swh/CMakeLists.txt: - * plugins/ladspa_effect/swh/AUTHORS: - * plugins/ladspa_effect/swh/COPYING: - * plugins/ladspa_effect/swh/README: - * plugins/ladspa_effect/CMakeLists.txt: - * CMakeLists.txt: - added a selection of nice SWH LADSPA plugins - - * include/piano_roll.h: - * src/gui/piano_roll.cpp: - fixed quantization when moving selected notes (closes #2118371) - - * plugins/sid/envelope.h: - * plugins/sid/extfilt.h: - * plugins/sid/wave.h: - * plugins/sid/voice.h: - * plugins/sid/sid.cc: - * plugins/sid/sid.h: - * plugins/sid/filter.h: - * plugins/sid/sid_instrument.cpp: - renamed class SID to cSID for not conflicting with data structure SID - in win32 headers - - * include/ladspa_base.h: - * src/core/ladspa_control.cpp: - * src/gui/widgets/ladspa_control_view.cpp: - * plugins/ladspa_effect/ladspa_effect.cpp: - renamed FLOAT constant to FLOATING for not conflicting with FLOAT type - in win32 headers - - * include/midi_time.h: - export MIDI class - DLL version of midiImport plugin needs it - -2008-09-19 Tobias Doerffel - - * data/locale/pt_br.qm: - * data/locale/fr.qm: - * data/locale/es.qm: - * data/locale/nl.qm: - * data/locale/ir.qm: - * data/locale/en.ts: - * data/locale/it.qm: - * data/locale/pt_br.ts: - * data/locale/fr.ts: - * data/locale/es.ts: - * data/locale/nl.ts: - * data/locale/ir.ts: - * data/locale/ca.qm: - * data/locale/it.ts: - * data/locale/ru.qm: - * data/locale/de.qm: - * data/locale/sv.qm: - * data/locale/ca.ts: - * data/locale/ru.ts: - * data/locale/de.ts: - * data/locale/sv.ts: - * data/locale/en.qm: - refreshed localizations - - * CMakeLists.txt: - added "finalize-locales" target - - * include/config_mgr.h: - * src/core/config_mgr.cpp: - * src/core/main.cpp: - fixed paths when starting with no configuration file - - * src/core/timeline.cpp: - * src/core/track.cpp: - * data/themes/default/playpos_marker.png: - * data/themes/default/loop_points_on.png: - * data/themes/default/style.css: - * data/themes/default/loop_point_disabled.png: - * data/themes/default/autoscroll_off.png: - * data/themes/default/loop_point.png: - * data/themes/default/autoscroll_on.png: - * data/themes/default/loop_points_off.png: - improved visual appearence of timeline - - * CMakeLists.txt: - improved detection of Qt4 translation directory - -2008-09-18 Tobias Doerffel - - * src/gui/fx_mixer_view.cpp: - fixed tooltip of mute button - - * data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf: - * data/presets/AudioFileProcessor/orion.xpf: - * data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf: - * data/presets/AudioFileProcessor/Erazor.cs.xml: - * data/presets/AudioFileProcessor/Bass-Mania.xpf: - * data/presets/AudioFileProcessor/Fat-Reversed-Kick.cs.xml: - * data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.cs.xml: - * data/presets/AudioFileProcessor/Bass-Mania.cs.xml: - * data/presets/AudioFileProcessor/Erazor.xpf: - * data/presets/LB302/Oh: - * data/presets/LB302/GoodOldTimes.xpf: - * data/presets/LB302/Oh: - * data/presets/Organic/organ_swish.xpf: - * data/presets/Organic/pad_ethereal.cs.xml: - * data/presets/Organic/organ_swish.cs.xml: - * data/presets/Organic/puresine.xpf: - * data/presets/Organic/default.cs.xml: - * data/presets/Organic/organ_blues.xpf: - * data/presets/Organic/puresine.cs.xml: - * data/presets/Organic/sequencer_64.xpf: - * data/presets/Organic/organ_blues.cs.xml: - * data/presets/Organic/organ_risingsun.xpf: - * data/presets/Organic/pad_sweep.xpf: - * data/presets/Organic/pad_rich.xpf: - * data/presets/Organic/sequencer_64.cs.xml: - * data/presets/Organic/pad_ethereal.xpf: - * data/presets/Organic/pad_sweep.cs.xml: - * data/presets/Organic/organ_risingsun.cs.xml: - * data/presets/Organic/pad_rich.cs.xml: - * data/presets/BitInvader/drama.xpf: - * data/presets/BitInvader/pluck.cs.xml: - * data/presets/BitInvader/bell.cs.xml: - * data/presets/BitInvader/spacefx.xpf: - * data/presets/BitInvader/drama.cs.xml: - * data/presets/BitInvader/default.cs.xml: - * data/presets/BitInvader/cello.xpf: - * data/presets/BitInvader/soft_pad.xpf: - * data/presets/BitInvader/spacefx.cs.xml: - * data/presets/BitInvader/alien_strings.xpf: - * data/presets/BitInvader/toy_piano.xpf: - * data/presets/BitInvader/subbass.xpf: - * data/presets/BitInvader/wah_synth.xpf: - * data/presets/BitInvader/cello.cs.xml: - * data/presets/BitInvader/soft_pad.cs.xml: - * data/presets/BitInvader/sweep_pad.xpf: - * data/presets/BitInvader/beehive.xpf: - * data/presets/BitInvader/toy_piano.cs.xml: - * data/presets/BitInvader/alien_strings.cs.xml: - * data/presets/BitInvader/subbass.cs.xml: - * data/presets/BitInvader/wah_synth.cs.xml: - * data/presets/BitInvader/epiano.xpf: - * data/presets/BitInvader/sweep_pad.cs.xml: - * data/presets/BitInvader/beehive.cs.xml: - * data/presets/BitInvader/bell.xpf: - * data/presets/BitInvader/pluck.xpf: - * data/presets/BitInvader/epiano.cs.xml: - * data/presets/Vibed/SadPad.cs.xml: - * data/presets/Vibed/Harpsichord.xpf: - * data/presets/Vibed/SadPad.xpf: - * data/presets/Vibed/Harpsichord.cs.xml: - * data/presets/TripleOscillator/Short4.xpf: - * data/presets/TripleOscillator/Arpeggio_1.cs.xml: - * data/presets/TripleOscillator/Fat-FMish-Bells.cs.xml: - * data/presets/TripleOscillator/AmazingBubbles.xpf: - * data/presets/TripleOscillator/HiPad.xpf: - * data/presets/TripleOscillator/Whistle.cs.xml: - * data/presets/TripleOscillator/Plucked.xpf: - * data/presets/TripleOscillator/SawLead.cs.xml: - * data/presets/TripleOscillator/Harp-of-a-Fairy.cs.xml: - * data/presets/TripleOscillator/Short4.cs.xml: - * data/presets/TripleOscillator/ArpKing.xpf: - * data/presets/TripleOscillator/Dull-Bell-Arp.xpf: - * data/presets/TripleOscillator/Rough!.cs.xml: - * data/presets/TripleOscillator/Plucked.cs.xml: - * data/presets/TripleOscillator/Harmonium.xpf: - * data/presets/TripleOscillator/E-Organ.cs.xml: - * data/presets/TripleOscillator/Gong.cs.xml: - * data/presets/TripleOscillator/ArpKing.cs.xml: - * data/presets/TripleOscillator/AnalogDreamz.xpf: - * data/presets/TripleOscillator/Harmonium.cs.xml: - * data/presets/TripleOscillator/PowerStrings.xpf: - * data/presets/TripleOscillator/SpaceBass.cs.xml: - * data/presets/TripleOscillator/RaveBass.cs.xml: - * data/presets/TripleOscillator/ResonantPad.xpf: - * data/presets/TripleOscillator/SawLead.xpf: - * data/presets/TripleOscillator/Fat.cs.xml: - * data/presets/TripleOscillator/ResoBass.xpf: - * data/presets/TripleOscillator/LovelyDream.xpf: - * data/presets/TripleOscillator/AnalogTimes2.xpf: - * data/presets/TripleOscillator/RockOrgan.xpf: - * data/presets/TripleOscillator/TB303-Arpeggio.xpf: - * data/presets/TripleOscillator/Xylophon.cs.xml: - * data/presets/TripleOscillator/E-Organ.xpf: - * data/presets/TripleOscillator/Short3.cs.xml: - * data/presets/TripleOscillator/LovelyDream.cs.xml: - * data/presets/TripleOscillator/SoftStrings.cs.xml: - * data/presets/TripleOscillator/DeathBass.xpf: - * data/presets/TripleOscillator/Play-some-rock.xpf: - * data/presets/TripleOscillator/TranceLead.xpf: - * data/presets/TripleOscillator/MoveYourBody.xpf: - * data/presets/TripleOscillator/SpaceBass.xpf: - * data/presets/TripleOscillator/Harpsichord.xpf: - * data/presets/TripleOscillator/Freaky-Bass.xpf: - * data/presets/TripleOscillator/MoveYourBody.cs.xml: - * data/presets/TripleOscillator/PowerStrings.cs.xml: - * data/presets/TripleOscillator/Fat-FMish-Bells.xpf: - * data/presets/TripleOscillator/Arpeggio_1.xpf: - * data/presets/TripleOscillator/Freaky-Bass.cs.xml: - * data/presets/TripleOscillator/Bell.xpf: - * data/presets/TripleOscillator/Arpeggio_2.xpf: - * data/presets/TripleOscillator/Xylophon.xpf: - * data/presets/TripleOscillator/Jupiter.xpf: - * data/presets/TripleOscillator/SawReso.xpf: - * data/presets/TripleOscillator/LFO-party.cs.xml: - * data/presets/TripleOscillator/ResonantPad.cs.xml: - * data/presets/TripleOscillator/Rough!.xpf: - * data/presets/TripleOscillator/Distorted-FM-Bass.xpf: - * data/presets/TripleOscillator/Kick.cs.xml: - * data/presets/TripleOscillator/Short2.cs.xml: - * data/presets/TripleOscillator/SawReso.cs.xml: - * data/presets/TripleOscillator/TheFirstOne.xpf: - * data/presets/TripleOscillator/SoftBass.cs.xml: - * data/presets/TripleOscillator/AmazingBubbles.cs.xml: - * data/presets/TripleOscillator/HiPad.cs.xml: - * data/presets/TripleOscillator/TB303-Arpeggio.cs.xml: - * data/presets/TripleOscillator/Distorted-FM-Bass.cs.xml: - * data/presets/TripleOscillator/Analogous.cs.xml: - * data/presets/TripleOscillator/TheMaster.cs.xml: - * data/presets/TripleOscillator/WarmStack.cs.xml: - * data/presets/TripleOscillator/Ravemania.xpf: - * data/presets/TripleOscillator/PluckArpeggio.cs.xml: - * data/presets/TripleOscillator/Square.cs.xml: - * data/presets/TripleOscillator/Play-some-rock.cs.xml: - * data/presets/TripleOscillator/TranceLead.cs.xml: - * data/presets/TripleOscillator/Ravemania.cs.xml: - * data/presets/TripleOscillator/OldComputerGames.xpf: - * data/presets/TripleOscillator/Harpsichord.cs.xml: - * data/presets/TripleOscillator/MoogArpeggio.xpf: - * data/presets/TripleOscillator/Snare.cs.xml: - * data/presets/TripleOscillator/Harp-of-a-Fairy.xpf: - * data/presets/TripleOscillator/FutureBass.xpf: - * data/presets/TripleOscillator/Fat-TB303-Arp.xpf: - * data/presets/TripleOscillator/SoftBass.xpf: - * data/presets/TripleOscillator/Bell.cs.xml: - * data/presets/TripleOscillator/Arpeggio_2.cs.xml: - * data/presets/TripleOscillator/SoftStrings.xpf: - * data/presets/TripleOscillator/MoogArpeggio.cs.xml: - * data/presets/TripleOscillator/Short1.cs.xml: - * data/presets/TripleOscillator/FatCheese.xpf: - * data/presets/TripleOscillator/Analogous.xpf: - * data/presets/TripleOscillator/ResoBass.cs.xml: - * data/presets/TripleOscillator/Jupiter.cs.xml: - * data/presets/TripleOscillator/Fat-TB303-Arp.cs.xml: - * data/presets/TripleOscillator/FutureBass.cs.xml: - * data/presets/TripleOscillator/Gong.xpf: - * data/presets/TripleOscillator/TB303.xpf: - * data/presets/TripleOscillator/RockOrgan.cs.xml: - * data/presets/TripleOscillator/AnalogTimes2.cs.xml: - * data/presets/TripleOscillator/PluckArpeggio.xpf: - * data/presets/TripleOscillator/TheMaster.xpf: - * data/presets/TripleOscillator/WarmStack.xpf: - * data/presets/TripleOscillator/FatCheese.cs.xml: - * data/presets/TripleOscillator/Bell_2.xpf: - * data/presets/TripleOscillator/Square.xpf: - * data/presets/TripleOscillator/TheFirstOne.cs.xml: - * data/presets/TripleOscillator/TB303.cs.xml: - * data/presets/TripleOscillator/AnalogTimes.xpf: - * data/presets/TripleOscillator/Dull-Bell-Arp.cs.xml: - * data/presets/TripleOscillator/ChurchOrgan.xpf: - * data/presets/TripleOscillator/Kick2.xpf: - * data/presets/TripleOscillator/Bell_2.cs.xml: - * data/presets/TripleOscillator/RaveBass.xpf: - * data/presets/TripleOscillator/Snare.xpf: - * data/presets/TripleOscillator/ChurchOrgan.cs.xml: - * data/presets/TripleOscillator/Kick2.cs.xml: - * data/presets/TripleOscillator/AnalogTimes.cs.xml: - * data/presets/TripleOscillator/E-Organ2.xpf: - * data/presets/TripleOscillator/Fat.xpf: - * data/presets/TripleOscillator/AnalogDreamz.cs.xml: - * data/presets/TripleOscillator/LFO-party.xpf: - * data/presets/TripleOscillator/Whistle.xpf: - * data/presets/TripleOscillator/Short1.xpf: - * data/presets/TripleOscillator/OldComputerGames.cs.xml: - * data/presets/TripleOscillator/Kick.xpf: - * data/presets/TripleOscillator/Short2.xpf: - * data/presets/TripleOscillator/Short3.xpf: - * src/gui/main_window.cpp: - * src/gui/file_browser.cpp: - * src/tracks/instrument_track.cpp: - changed preset's extension from "*.cs.xml" to "*.xpf" - - * include/instrument_track.h: - * include/track.h: - * include/track_label_button.h: - * src/core/bb_track_container.cpp: - * src/core/track.cpp: - * src/gui/widgets/track_label_button.cpp: - * src/tracks/automation_track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - - when used on instrumentTrack, also show instrument name on - trackLabelButton - - removed obsolete support for choosing custom track icons - - * src/core/mixer.cpp: - when just rendering at console, use DEFAULT_BUFFER_SIZE - - * data/track_icons/harp02.png: - * data/track_icons/harp03.png: - * data/track_icons/cello01.png: - * data/track_icons/guitar_electric01.png: - * data/track_icons/piano01.png: - * data/track_icons/guitar_electric02.png: - * data/track_icons/maracas01.png: - * data/track_icons/guitar_electric03.png: - * data/track_icons/guitar_electric04.png: - * data/track_icons/connectors01.png: - * data/track_icons/drumset01_.png: - * data/track_icons/trombone01.png: - * data/track_icons/CMakeLists.txt: - * data/track_icons/african_drum01.png: - * data/track_icons/french_horn01.png: - * data/track_icons/african_drum02.png: - * data/track_icons/mouth01.png: - * data/track_icons/african_drum03.png: - * data/track_icons/african_drum04.png: - * data/track_icons/african_drum05.png: - * data/track_icons/gramophone01.png: - * data/track_icons/trumpet01.png: - * data/track_icons/violin01.png: - * data/track_icons/trumpet02.png: - * data/track_icons/violin02.png: - * data/track_icons/trumpet03.png: - * data/track_icons/microphone01.png: - * data/track_icons/guitar_bass01.png: - * data/track_icons/trumpet04.png: - * data/track_icons/microphone02.png: - * data/track_icons/microphone03.png: - * data/track_icons/microphone04.png: - * data/track_icons/flute01.png: - * data/track_icons/oboe01.png: - * data/track_icons/xylophone01.png: - * data/track_icons/guitar_accoustic01.png: - * data/track_icons/guitar_accoustic02.png: - * data/track_icons/speaker01.png: - * data/track_icons/harp01.png: - * data/track_icons/guitar_accoustic03.png: - * data/CMakeLists.txt: - finally removed obsolete track icons - -2008-09-17 Tobias Doerffel - - * plugins/sf2_player/sf2_player.cpp: - try to use relative paths for s_fonts map too as otherwise - s_fonts.remove( m_filename ) won't do anything if a full path was - inserted and m_filename was made relative - fixes crash when - re-opening a soundfont which was shared before - - * plugins/midi_import/portsmf/strparse.cpp: - fixed compilation issue - -2008-09-16 Paul Giblock - - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - * plugins/midi_import/portsmf: - * plugins/midi_import/portsmf/allegrowr.cpp: - * plugins/midi_import/portsmf/trace.cpp: - * plugins/midi_import/portsmf/algsmfrd_internal.h: - * plugins/midi_import/portsmf/trace.h: - * plugins/midi_import/portsmf/strparse.cpp: - * plugins/midi_import/portsmf/allegrosmfwr.cpp: - * plugins/midi_import/portsmf/mfmidi.cpp: - * plugins/midi_import/portsmf/strparse.h: - * plugins/midi_import/portsmf/mfmidi.h: - * plugins/midi_import/portsmf/allegrord.cpp: - * plugins/midi_import/portsmf/license.txt: - * plugins/midi_import/portsmf/allegrosmfrd.cpp: - * plugins/midi_import/portsmf/allegro.cpp: - * plugins/midi_import/portsmf/allegroserial.cpp: - * plugins/midi_import/portsmf/algrd_internal.h: - * plugins/midi_import/portsmf/allegro.h: - * plugins/midi_import/portsmf/README.txt: - * plugins/midi_import/CMakeLists.txt: - * plugins/midi_import/midi_import.cpp: - * include/meter_model.h: - * include/instrument_track.h: - * include/config_mgr.h: - * include/plugin.h: - * include/setup_dialog.h: - * src/gui/setup_dialog.cpp: - * src/core/plugin.cpp: - * src/core/config_mgr.cpp: - - Add Portsmf-based MIDI import to trunk - - Add default-sf2 to settings dialog, but currently only loads when - importing a MIDI - - * src/gui/piano_roll.cpp: - - Add new shortcuts for change Q and note length - - Add "Note lock" mode to keep Q equal to note length - -2008-09-16 Tobias Doerffel - - * src/gui/track_container_view.cpp: - * src/core/track.cpp: - disabled undo/redo of track/TCO addition/removal as not mature yet and - causes unnecessary crashes (closes #2014439, #2100407) - - * data/projects/cool_songs/Skiessi-TurningPoint.mmpz: - * data/projects/cool_songs/Skiessi-RandomProjectNumber14253.mmpz: - added two cool projects from Skiessi - more to come - - * src/core/track.cpp: - * src/core/automation_pattern.cpp: - - fixed cloning of automation-patterns (closes #2102218) - - allow dropping automation patterns onto existing automation patterns - - * src/core/project_journal.cpp: - improved usage of random number generator (closes #2109211) - - * plugins/ladspa_effect/tap/tap_pinknoise.c: - * plugins/ladspa_effect/caps/interface.cc: - * src/core/drumsynth.cpp: - * src/core/main.cpp: - don't mis-initialize random number generator with default value - - * src/core/journalling_object.cpp: - print name of object which uses ID if another object requests it - - * src/core/automation_pattern.cpp: - make sure we don't return NULL in automationPattern::firstObject() - - * plugins/ladspa_effect/ladspa_effect.cpp: - * include/engine.h: - * include/effect_rack_view.h: - * include/effect_chain.h: - * src/core/effect_chain.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/engine.cpp: - * src/gui/widgets/effect_rack_view.cpp: - - do not show messages about missing plugins when previewing - presets (closes #2110203) - - clear effect view before loading settings in effectChain - - * CMakeLists.txt: - improved out-of-tree builds - -2008-09-14 Csaba Hruska - - * src/core/audio/audio_portaudio.cpp: - Bugfix: Fixed segfault when other app uses and blocks the audio device - -2008-09-08 Paul Giblock - - * src/core/timeline.cpp: - Keep loop markers from being in same position - -2008-09-11 Tobias Doerffel - - * include/audio_port.h: - * include/midi.h: - * include/mixer.h: - * include/play_handle.h: - * include/sample_play_handle.h: - * include/track.h: - * src/core/audio/audio_port.cpp: - * src/core/effect_chain.cpp: - * src/core/mixer.cpp: - * src/core/sample_play_handle.cpp: - * src/core/track.cpp: - - ensure correct thread affinity when deleting play handles - fixes - crash when previewing samples and LMMS was linked against Qt 4.3.x - - renamed destroyed()-signals for not conflicting with - QObject::destroyed() in Qt 4.3 - - made effectChain creation in audioPort optional - - fixed various compiler warnings - -2008-09-08 Paul Giblock - - * plugins/papu/gb_abu/Blip_Buffer.cpp: - Fix PAPU for 64bit machines - -2008-09-08 Tobias Doerffel - - * CMakeLists.txt: - made 0.4.0-rc1 release - - * plugins/vst_base/CMakeLists.txt: - * CMakeLists.txt: - - fixed win32-specific build issues - - on Linux install manpage - - * include/gui_templates.h: - * src/core/instrument_sound_shaping.cpp: - * src/gui/widgets/instrument_sound_shaping_view.cpp: - * src/gui/widgets/lcd_spinbox.cpp: - * data/locale/de.qm: - * data/locale/de.ts: - further UI finetuning - - * include/midi_winmm.h: - * src/core/midi/midi_winmm.cpp: - finally made WinMM MIDI driver work properly by fixing internal data - structures - - * buildtools/bin2res.cpp: - * plugins/bit_invader/logo.png: - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/wavegraph.png: - * plugins/bit_invader/wavegraph3.png: - * plugins/bit_invader/artwork.png: - * plugins/lb302/artwork.png: - * plugins/papu/artwork.png: - * plugins/sf2_player/chorus_off.png: - * plugins/sf2_player/chorus_on.png: - * plugins/sf2_player/logo.png: - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/fileselect_off.png: - * plugins/sf2_player/fileselect_on.png: - * plugins/sf2_player/reverb_off.png: - * plugins/sf2_player/patches_off.png: - * plugins/sf2_player/patches_on.png: - * plugins/sf2_player/artwork.png: - * plugins/sid/3off.png: - * plugins/sid/8580red.png: - * plugins/sid/trianglered.png: - * plugins/sid/logo.png: - * plugins/sid/bp.png: - * plugins/sid/6581.png: - * plugins/sid/8580.png: - * plugins/sid/syncred.png: - * plugins/sid/hp.png: - * plugins/sid/lp.png: - * plugins/sid/sync.png: - * plugins/sid/noise.png: - * plugins/sid/test.png: - * plugins/sid/pulsered.png: - * plugins/sid/filter.png: - * plugins/sid/sawred.png: - * plugins/sid/3offred.png: - * plugins/sid/pulse.png: - * plugins/sid/artwork.png: - * plugins/sid/saw.png: - * plugins/sid/bpred.png: - * plugins/sid/6581red.png: - * plugins/sid/ring.png: - * plugins/sid/hpred.png: - * plugins/sid/triangle.png: - * plugins/sid/lpred.png: - * plugins/sid/noisered.png: - * plugins/sid/testred.png: - * plugins/sid/filterred.png: - * plugins/sid/ringred.png: - * plugins/spectrum_analyzer/log_x_axis.png: - * plugins/spectrum_analyzer/log_y_axis.png: - * plugins/spectrum_analyzer/background.png: - * plugins/spectrum_analyzer/spectrum_background.png: - * plugins/spectrum_analyzer/spectrum_background_plain.png: - * plugins/vestige/vestige.cpp: - * plugins/vst_base/remote_vst_plugin.cpp: - * data/themes/default/groupbox_led_bg.png: - * include/aeffectx.h: - * include/effect_rack_view.h: - * include/group_box.h: - * include/gui_templates.h: - * src/core/piano.cpp: - * src/gui/fx_mixer_view.cpp: - * src/gui/plugin_browser.cpp: - * src/gui/widgets/effect_rack_view.cpp: - * src/gui/widgets/group_box.cpp: - * src/gui/widgets/instrument_function_views.cpp: - * src/gui/widgets/instrument_midi_io_view.cpp: - * src/gui/widgets/instrument_sound_shaping_view.cpp: - * src/gui/widgets/knob.cpp: - * src/gui/widgets/tab_widget.cpp: - UI finetuning / recompression of some PNG-files - - * src/core/remote_plugin.cpp: - improved destruction - - * src/core/mixer.cpp: - re-enabled WinMM MIDI - - * include/midi_winmm.h: - * src/core/midi/midi_winmm.cpp: - create separate thread for WinMM MIDI - -2008-09-08 Paul Giblock - - * plugins/sid/logo.png: - Un-box the sid logo - - * plugins/papu: - * plugins/papu/Basic_Gb_Apu.cpp: - * plugins/papu/btn_off.png: - * plugins/papu/btn_on.png: - * plugins/papu/papu_instrument.h: - * plugins/papu/logo.png: - * plugins/papu/Basic_Gb_Apu.h: - * plugins/papu/btn_up.png: - * plugins/papu/btn_15.png: - * plugins/papu/btn_7.png: - * plugins/papu/artwork.png: - * plugins/papu/gb_apu: - * plugins/papu/gb_apu/Blip_Buffer.cpp: - * plugins/papu/gb_apu/Gb_Oscs.cpp: - * plugins/papu/gb_apu/Blip_Synth.h: - * plugins/papu/gb_apu/Gb_Apu.h: - * plugins/papu/gb_apu/blargg_source.h: - * plugins/papu/gb_apu/Multi_Buffer.cpp: - * plugins/papu/gb_apu/Blip_Buffer.h: - * plugins/papu/gb_apu/Gb_Oscs.h: - * plugins/papu/gb_apu/boost: - * plugins/papu/gb_apu/boost/config.hpp: - * plugins/papu/gb_apu/boost/cstdint.hpp: - * plugins/papu/gb_apu/boost/static_assert.hpp: - * plugins/papu/gb_apu/Multi_Buffer.h: - * plugins/papu/gb_apu/LGPL.txt: - * plugins/papu/gb_apu/blargg_common.h: - * plugins/papu/gb_apu/Gb_Apu.cpp: - * plugins/papu/btn_down.png: - * plugins/papu/CMakeLists.txt: - * plugins/papu/papu_instrument.cpp: - * plugins/CMakeLists.txt: - - Add Csaba and Attila's GameBoy emulator so it can be tested in RC1 - - Update artwork to something not trademarked. "Freeboy" is just for now - -2008-09-07 Tobias Doerffel - - * plugins/patman/patman.cpp: - * plugins/patman/patman.h: - - apply release of 128 frames - - enable loop mode per default - - * plugins/patman/patman.cpp: - * plugins/patman/patman.h: - * plugins/triple_oscillator/triple_oscillator.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - * plugins/vestige/vestige.cpp: - * plugins/vestige/vestige.h: - * plugins/flp_import/flp_import.cpp: - * plugins/midi_import/midi_import.cpp: - * include/engine.h: - * include/file_browser.h: - * include/preset_preview_play_handle.h: - * include/plugin.h: - * include/remote_plugin.h: - * include/sample_play_handle.h: - * src/core/engine.cpp: - * src/core/plugin.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/gui/file_browser.cpp: - * src/gui/main_window.cpp: - * src/gui/track_container_view.cpp: - - rewrote the way plugins can handle certain filetypes - - rewrote various parts of file-browser to be less redundant and - more stable (closes #2071891) - - * data/themes/default/sample_file.png: - renamed from sound_file.png - - * include/midi.h: - * src/core/midi/midi_client.cpp: - * src/core/midi/midi_port.cpp: - * src/core/midi/midi_alsa_seq.cpp: - fixed MIDI output channel issues (closes #2098722) - - * include/graph.h: - * src/gui/widgets/graph.cpp: - integrated patch by Attila Herman which adds support for colorized - graph and quantized values - - * src/core/config_mgr.cpp: - made default VST path to be inside LMMS working directory - - * src/gui/track_container_view.cpp: - changed size constraint for scrollArea-widget layout - fixes messed up - Song Editor after loading various projects - - * src/gui/main_window.cpp: - set QMdiArea::DontMaximizeSubWindowOnActivation option for not - crashing when loading project while a subwindow is maximized (this - looks like a bug in Qt) (closes #2077774) - - * src/gui/controller_connection_dialog.cpp: - fixed crash when closing controller select dialog and no controller - has been selected (closes #2078357) - - * include/track_container.h: - * src/core/song.cpp: - * src/core/track_container.cpp: - display message if project is empty and user tries to export - it (closes #2091056) - - * src/core/song.cpp: - - fixed freeze after adding BB-tracks (closes #2089337) - - replaced bad cast for calling projectNotes::save/restoreState by - proper C++ construct - - * include/controller_rack_view.h: - * include/fx_mixer_view.h: - * include/main_window.h: - * include/piano_roll.h: - * include/project_notes.h: - * include/track_container.h: - * include/track_container_view.h: - * src/core/song.cpp: - * src/core/track_container.cpp: - * src/gui/fx_mixer_view.cpp: - * src/gui/main_window.cpp: - * src/gui/track_container_view.cpp: - * src/gui/widgets/controller_rack_view.cpp: - * src/tracks/instrument_track.cpp: - properly save and restore position, size, visibility and state of - MDI-subwindows (closes #2072383) - - * src/core/serializing_object.cpp: - fixed hook-mechanism - - * include/song_editor.h: - * src/gui/song_editor.cpp: - * src/gui/fx_mixer_view.cpp: - * src/gui/widgets/visualization_widget.cpp: - * plugins/spectrum_analyzer/spectrumanalyzer_control_dialog.cpp: - moved peridic update-timer from songEditor to mainWindow - - * data/projects/cool_songs/Chris-HorizonRemix.mmp: - added song - -2008-09-06 Tobias Doerffel - - * data/themes/default/background_artwork.png: - added more decent background artwork - - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - * include/ladspa_base.h: - save LADSPA effect filenames without extension and add correct - one (depending on platform built for) when loading settings - fixes - missing effects when loading songs in Windows which were made in Linux - and vice versa - - * include/audio_pulseaudio.h: - added information about bad latency when using PulseAudio output - - * plugins/vestige/vestige.cpp: - * plugins/vestige/vestige.h: - only use MIDI anymore for controlling VST instruments - - * plugins/lb302/lb302.cpp: - * include/note.h: - * include/instrument_track.h: - * include/midi.h: - * include/note_play_handle.h: - * src/tracks/instrument_track.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/note_play_handle.cpp: - * src/core/instrument_functions.cpp: - * src/core/piano.cpp: - - improved the way, MIDI-events are internally sent and handled - - fixed names of various member methods of notePlayHandle class - - full MIDI velocity when pressing key on test piano - - send volume changes of a notePlayHandle as MidiKeyPressure events - - send pitch changes of instrument track as MidiPitchBend events - - added detection for running MIDI notes - - correct calculation of MIDI key - makes remotePlugins respect - base note settings - - * src/core/midi/midi_port.cpp: - * src/core/midi/midi_alsa_seq.cpp: - fixed broken MIDI-output (when masking output events it didn't match - against correct output MIDI channel) - -2008-09-06 Csaba Hruska - - * plugins/sid/sid_instrument.cpp: - Fixed overlapping notes distorsion SID bug. - Some warnings are also had removed. - -2008-09-05 Tobias Doerffel - - * include/lmms_style.h: - * src/gui/lmms_style.cpp: - * src/core/main.cpp: - - moved palette initialization into lmmsStyle class - - added a hack for making titlebar text colors in QMdiSubWindows - common on all platforms - -2008-09-04 Tobias Doerffel - - * plugins/vst_base/vst_plugin.cpp: - hold lock while dumping parameters - - * include/remote_plugin.h: - * lmmsconfig.h.in: - * CMakeLists.txt: - - set common numeric locale to make atof() work properly in Germany - - increased SHM_FIFO_SIZE from 4000 to 64000 for not getting stuck - when exchanging bigger messages (e.g. parameter dumps) - - * plugins/vst_base/vst_plugin.h: - * plugins/vst_base/remote_vst_plugin.cpp: - * plugins/vst_base/communication.h: - * plugins/vst_base/vst_plugin.cpp: - * plugins/vst_base/CMakeLists.txt: - * include/text_float.h: - * include/remote_plugin.h: - * CMakeLists.txt: - made VST support layer work on native win32 - -2008-09-03 Tobias Doerffel - - * plugins/vst_base/communication.h: - * plugins/vst_base/vst_plugin.h: - * plugins/vst_base/vst_plugin.cpp: - * plugins/vst_base/remote_vst_plugin.cpp: - * plugins/vst_base/CMakeLists.txt: - * plugins/vst_effect/vst_effect.h: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vestige/vestige.h: - * plugins/vestige/vestige.cpp: - * include/aeffectx.h: - rewrote VST support layer to use the new remotePlugin-framework - - * include/remote_plugin.h: - * src/core/remote_plugin.cpp: - - added channel splitting mode - - made initial wait optional - - messages now can be constructed and set inline - - * CMakeLists.txt: - added hint about removing CMakeCache.txt when libsndfile is missing - -2008-09-02 Tobias Doerffel - - * cmake/modules/Win32Toolchain.cmake: - added include and library-directory of cross compiling environment - - * include/remote_plugin.h: - use QSystemSemaphore in win32-version as libpthread-w32 does not - support process shared mutexes and semaphores - - * src/core/mixer.cpp: - disabled WinMM MIDI for the time being - -2008-09-02 Paul Giblock - - * src/gui/widgets/graph.cpp: - Display crosshair cursor as a hint to the user - - * src/gui/piano_roll.cpp: - Change Piano-Roll paste behavior. Instead of pasting at 0, paste at the - quantized location of the time-line's position-indicator - - * src/gui/main_window.cpp: - Display waiting cursor when loading project. Really only helps when - loading a large song while another is loaded. Provides feedback before - the loading dialog appears (I guess this is during project close) - - * src/core/automation_pattern.cpp: - Don't connect to the same model more than once - -2008-09-01 Paul Giblock - - * include/track_container.h: - * src/core/song.cpp: - * src/core/track_container.cpp: - * src/core/track.cpp: - Add locking to trackContainer::m_tracks and clean up some const-ness - This should fix most crashes causes by moving/adding TCOs. This also - seems to fix the no-sound bug that I hate so much - - * plugins/bit_invader/logo.png: - * plugins/bit_invader/artwork.png: - Improve BitInvader logo - - * data/lmms.desktop: - * lmms.1: - A more consise description for English - -2008-09-02 Csaba Hruska - - * include/song.h: - * src/core/song.cpp: - * src/gui/song_editor.cpp: - * src/tracks/sample_track.cpp: - added implementation for recordAndPlay button - record button is disabled because it is not handled yet - -2008-08-31 Tobias Doerffel - - * include/remote_plugin.h: - * src/core/remote_plugin.cpp: - * lmmsconfig.h.in: - * CMakeLists.txt: - added shmFifo class which replaces communication via pipes and is - portable as well - -2008-08-29 Tobias Doerffel - - * plugins/sid/sid_instrument.cpp: - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/patman/patman.cpp: - * plugins/lb302/lb302.cpp: - * plugins/organic/organic.cpp: - * plugins/stereo_matrix/stereo_matrix.cpp: - * plugins/bass_booster/bass_booster.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/live_tool/live_tool.cpp: - * plugins/peak_controller_effect/peak_controller_effect.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/stk/mallets/mallets.cpp: - * plugins/stereo_enhancer/stereo_enhancer.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - * plugins/vestige/vestige.cpp: - * plugins/ladspa_browser/ladspa_browser.cpp: - * plugins/spectrum_analyzer/spectrum_analyzer.cpp: - * plugins/kicker/kicker.cpp: - * plugins/flp_import/flp_import.cpp: - * plugins/midi_import/midi_import.cpp: - * include/plugin.h: - * include/instrument_track.h: - * include/instrument.h: - * include/file_browser.h: - * include/preset_preview_play_handle.h: - * src/core/engine.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/gui/file_browser.cpp: - - improved concept for file types supported by certain plugins - - various small improvements for an even better ZynAddSubFX integration - - * src/tracks/instrument_track.cpp: - pass all MIDI events to instrument - - * include/remote_plugin.h: - * src/core/remote_plugin.cpp: - added remotePlugin-framework allowing to easily write plugins which - actually run as external process - -2008-08-28 Tobias Doerffel - - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_base/lvsl_server.cpp: - * plugins/vst_base/CMakeLists.txt: - fixed broken VST-support - - * CMakeLists.txt: - completed information about packages needed for building VST support - on 64 bit machines (thanks to Stephane Thomas!) - -2008-08-28 Csaba Hruska - - * include/audio_portaudio.h: - * src/core/audio/audio_portaudio.cpp: - fixed segfault in PortAudio's setup widget - fixed hangon on PortAudio exit - -2008-08-27 Csaba Hruska - - * include/audio_portaudio.h: - * src/core/audio/audio_portaudio.cpp: - PortAudio V18 and V19 are supported now - - * cmake/modules/FindPortaudio.cmake: - * include/audio_portaudio.h: - * src/core/audio/audio_portaudio.cpp: - * src/gui/setup_dialog.cpp: - * lmmsconfig.h.in: - * CMakeLists.txt: - added support for PortAudio - - * include/mixer.h: - * include/sample_record_handle.h: - * include/song_editor.h: - * include/sample_track.h: - * include/audio_device.h: - * src/gui/song_editor.cpp: - * src/tracks/sample_track.cpp: - * src/core/audio/audio_device.cpp: - * src/core/mixer.cpp: - * src/core/engine.cpp: - * src/core/sample_record_handle.cpp: - added basic support for recording sound into sample tracks - -2008-08-27 Paul Giblock - - * include/controller_view.h: - * src/gui/widgets/controller_view.cpp: - Add stub for controller help - - * src/gui/piano_roll.cpp: - * data/themes/default/note_triplethalf.png: - * data/themes/default/note_tripleteighth.png: - * data/themes/default/note_tripletthirtysecond.png: - * data/themes/default/note_tripletquarter.png: - * data/themes/default/note_tripletsixteenth.png: - - Add support for directly entering triplet notes - - Add support for triplet Quantization - - Switch grid layout for triplets - - Add additional 32nd note grid resolution when zooming - -2008-08-26 Tobias Doerffel - - * cmake/modules/DetectMachine.cmake: - * plugins/vst_base/CMakeLists.txt: - * lmmsconfig.h.in: - * CMakeLists.txt: - improved detection of machine type - -2008-08-26 Paul Giblock - - * include/controller_connection.h: - * include/controller.h: - * include/controller_rack_view.h: - * include/automatable_model.h: - * include/controller_view.h: - * src/gui/widgets/controller_rack_view.cpp: - * src/gui/widgets/controller_view.cpp: - * src/core/automatable_model.cpp: - * src/core/controller_connection.cpp: - * src/core/controller.cpp: - Add basic support for delete. The controller dialogs probably leak, and - peakController isn't handled yet - -2008-08-24 Tobias Doerffel - - * CMakeLists.txt: - made 0.4.0-beta2 release - -2008-08-24 Paul Giblock - - * plugins/sid/sid_instrument.cpp: - Fix what's this text with extra arg value. - -2008-08-23 Tobias Doerffel - - * cmake/modules/BuildPlugin.cmake: - added missing dependency to bin2res-target in order to build properly - when using "make -jX" - - * CMakeLists.txt: - improved summary page (specific information on what to do if a certain - feature isn't enabled because something was missing) - -2008-08-23 Paul Giblock - - * plugins/bit_invader/bit_invader.cpp: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * src/gui/piano_roll.cpp: - * src/gui/lfo_controller_dialog.cpp: - * src/gui/main_window.cpp: - * src/gui/song_editor.cpp: - * src/gui/widgets/instrument_sound_shaping_view.cpp: - * src/gui/widgets/envelope_and_lfo_view.cpp: - * src/gui/widgets/instrument_function_views.cpp: - * src/gui/widgets/effect_view.cpp: - * src/gui/automation_editor.cpp: - * src/gui/bb_editor.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/mmp.cpp: - Fix English grammer, punctuation, and hard to read strings - -2008-08-23 Tobias Doerffel - - * src/gui/automatable_model_view.cpp: - coding style fixes - - * src/gui/string_pair_drag.cpp: - if no pixmap was given and parent-widget is valid, use a snapshot of - the widget as drag-icon - - * src/tracks/instrument_track.cpp: - added display-name for baseNoteModel - - * src/core/piano.cpp: - made base-note automatable via drag'n'drop - -2008-08-22 Paul Giblock - - * include/automatable_model.h: - * src/gui/automation_editor.cpp: - * src/gui/lmms_style.cpp: - * src/core/lfo_controller.cpp: - Fix various casting warnings - - * src/core/audio/audio_alsa.cpp: - Fix warning about obsolete snd_pcm_sw_params_set_xfer_align(). - ALSA >= 1.0.16 defaults to 1 now. - -2008-08-22 Tobias Doerffel - - * src/core/main.cpp: - fixed splash-screen for win32 - - * src/core/sample_buffer.cpp: - fixed sampleBuffer::tryToMakeRelative() for win32 - paths to samples - are now saved relative in win32-version too (if possible) - - * src/core/piano.cpp: - fixed keycodes for win32 version - - * include/midi_winmm.h: - fixed missing virtual method - - * include/bb_track_container.h: - * include/track.h: - * src/core/track.cpp: - * src/tracks/bb_track.cpp: - implemented correct behaviour when cloning BB-tracks (closes #2042409) - - * src/core/midi/midi_alsa_seq.cpp: - fixed strange ALSA-sequencer behaviour when using MIDI-controllers and - controlling intrument-tracks via MIDI (closes #2062907) - - * src/gui/piano_roll.cpp: - fixed notes appearing multiple times in pattern when recording from - MIDI-device (closes #2058971) - - * src/gui/automation_editor.cpp: - fixed selection of all bars via Ctrl+A (closes #2048163) - - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * include/sample_buffer.h: - * src/core/sample_buffer.cpp: - fixed crashes when automating start- and end-point in - AudioFileProcessor (closes #2048125) - - * include/oscillator.h: - made oscillator::userWaveSample() const - - * include/instrument_track.h: - * src/gui/file_browser.cpp: - * src/tracks/instrument_track.cpp: - fixed loading presets when dragging them onto existing - instrument-track-window (finally closes #2025902) - - * src/gui/piano_roll.cpp: - fixed moving selected notes (closes #2039248, #2039254, #2043463) - -2008-08-20 dieEasy - - * data/locale/it.qm: - * data/locale/it.ts: - updated Italian localization-file - -2008-08-20 Tobias Doerffel - - * include/automatable_model.h: - restored old controller-behaviour for all models whose step-size is - not 1, i.e. only round for integer models - - * plugins/sid/sid_instrument.h: - * plugins/sid/test.png: - * plugins/sid/sid_instrument.cpp: - * plugins/sid/testred.png: - integrated patch by Csaba Hruska - - * src/core/plugin.cpp: - fixed messages - - * src/core/config_mgr.cpp: - add trailing slashes to paths where necessary (closes #2056353) - - * data/locale/de.qm: - * data/locale/de.ts: - updated German localization file and fixed various messages - - * include/track.h: - * include/track_label_button.h: - * src/tracks/bb_track.cpp: - update combobox in BB-editor when renaming BB-track (closes #2056354) - - * include/controller.h: - * src/gui/widgets/knob.cpp: - only skip GUI-updates when connected to frequently changing controllers - - * include/automatable_model.h: - when connected to controller and returning current value, respect - step-property of automatableModel - - * src/gui/widgets/instrument_midi_io_view.cpp: - minor UI improvements - - * include/midi_winmm.h: - * include/mixer.h: - * src/core/midi/midi_controller.cpp: - * src/core/midi/midi_port.cpp: - * src/core/midi/midi_winmm.cpp: - * src/core/mixer.cpp: - * src/gui/controller_connection_dialog.cpp: - * src/tracks/instrument_track.cpp: - cleanups and coding-style fixes - - * src/core/midi/midi_alsa_seq.cpp: - * src/core/midi/midi_port.cpp: - - fixed crash when changing mode of midiPort - - various small improvements - - * include/instrument_track.h: - * src/core/note_play_handle.cpp: - made midiPort of instrumentTrack accessible via getMidiPort() - -2008-08-19 Tobias Doerffel - - * plugins/sf2_player/sf2_player.cpp: - fixed reverb/chorus after change of samplerate - - * src/core/main.cpp: - * lmms.1: - improved documentation of commandline options - - * src/core/main.cpp: - * src/core/project_renderer.cpp: - improved progress information when rendering at console - -2008-08-18 Paul Giblock - - * include/controller.h: - * src/core/controller.cpp: - * src/gui/automatable_model_view.cpp: - * src/gui/controller_connection_dialog.cpp: - Detect loops before allowing controller-connection - - * src/core/peak_controller.cpp: - Changes displayName from LFO to Peak - -2008-08-07 Tobias Doerffel - - * CMakeLists.txt: - made 0.4.0-beta1 release - - * plugins/sid/sid_instrument.h: - removed unused slot-definitions - - * CMakeLists.txt: - added missing lmmsconfig.h.in for dist target - -2008-08-05 Tobias Doerffel - - * plugins/sid/wave8580__ST.cc: - * plugins/sid/spline.h: - * plugins/sid/3off.png: - * plugins/sid/8580red.png: - * plugins/sid/trianglered.png: - * plugins/sid/logo.png: - * plugins/sid/bp.png: - * plugins/sid/6581.png: - * plugins/sid/wave.cc: - * plugins/sid/8580.png: - * plugins/sid/pot.h: - * plugins/sid/syncred.png: - * plugins/sid/hp.png: - * plugins/sid/sid_instrument.h: - * plugins/sid/lp.png: - * plugins/sid/sync.png: - * plugins/sid/noise.png: - * plugins/sid/wave8580_PST.cc: - * plugins/sid/envelope.cc: - * plugins/sid/extfilt.cc: - * plugins/sid/envelope.h: - * plugins/sid/extfilt.h: - * plugins/sid/pulsered.png: - * plugins/sid/siddefs.h: - * plugins/sid/filter.png: - * plugins/sid/sawred.png: - * plugins/sid/wave6581_PS_.cc: - * plugins/sid/3offred.png: - * plugins/sid/pulse.png: - * plugins/sid/artwork.png: - * plugins/sid/saw.png: - * plugins/sid/CMakeLists.txt: - * plugins/sid/wave8580_P_T.cc: - * plugins/sid/wave6581__ST.cc: - * plugins/sid/bpred.png: - * plugins/sid/6581red.png: - * plugins/sid/ring.png: - * plugins/sid/hpred.png: - * plugins/sid/pot.cc: - * plugins/sid/sid_instrument.cpp: - * plugins/sid/triangle.png: - * plugins/sid/wave.h: - * plugins/sid/voice.cc: - * plugins/sid/lpred.png: - * plugins/sid/noisered.png: - * plugins/sid/voice.h: - * plugins/sid/wave6581_PST.cc: - * plugins/sid/sid.cc: - * plugins/sid/filterred.png: - * plugins/sid/sid.h: - * plugins/sid/version.cc: - * plugins/sid/filter.cc: - * plugins/sid/filter.h: - * plugins/sid/wave6581_P_T.cc: - * plugins/sid/wave8580_PS_.cc: - * plugins/sid/ringred.png: - * plugins/CMakeLists.txt: - added SID instrument plugin by Attila Herman and Csaba Hruska - - * src/gui/widgets/automatable_button.cpp: - show context-menu of button-group if a button is part of it - - * plugins/sf2_player/sf2_player.cpp: - - query data from correct model when activating reverb (closes #2035134) - - convert from note-play-handle's volume to MIDI-velocity when calling - fluid_synth_noteon() - - set fluidsynth's internal interpolation-method to high-quality when - running LMMS in HQ-mode - -2008-08-04 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - * plugins/vst_effect/vst_subplugin_features.cpp: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vst_effect/vst_effect_controls.cpp: - * include/plugin.h: - * include/base64.h: - * include/ladspa_base.h: - * src/core/plugin.cpp: - * src/core/effect_chain.cpp: - * src/core/mmp.cpp: - * src/core/ladspa_manager.cpp: - * CMakeLists.txt: - use XML rather than binary blobs for saving plugin-/effect-key - - * src/core/project_journal.cpp: - use random-number-generator correctly - fixes predictable random - numbers and avoids used Journalling-Object-IDs upon loading - project (closes #2036745) - anyways this still might happen under rare - circumstances and needs a further fix - -2008-08-03 Tobias Doerffel - - * include/lmms_math.h: - * src/core/oscillator.cpp: - made oscillator-phase always being positive which allows further - optimizations of fraction()-method - -2008-08-01 Tobias Doerffel - - * include/visualization_widget.h: - * src/gui/widgets/visualization_widget.cpp: - improved anti-aliased visualization - - * src/core/sample_buffer.cpp: - heavily improved performance by using QPainter::drawPolylines and - disabling anti-aliasing if more than 60000 samples have to be - drawn (closes #1938413) - - * src/core/midi/midi_winmm.cpp: - added debug-code - - * src/core/song.cpp: - do not reset window title twice when creating new project - - * src/core/main.cpp: - when creating a new project, show main-window afterwards - fixes - behaviour when debugging win32-version via WINE - - * cmake/modules/BuildPlugin.cmake: - * plugins/ladspa_effect/tap/CMakeLists.txt: - * plugins/ladspa_effect/caps/CMakeLists.txt: - * data/CMakeLists.txt: - * data/nsis_branding.bmp: - * CMakeLists.txt: - * lmms.rc.in: - - made cmake-files ready for NSIS-packaging - - added win-resource-object to LMMS-binary - - * plugins/sf2_player/patches_dialog.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/patches_dialog.h: - * plugins/sf2_player/sf2_player.h: - * data/themes/default/style.css: - - integrated patch by Csaba Hruska - - fixed spinbox-ranges - - * plugins/vst_base/CMakeLists.txt: - fixed include-directories for lvsl_server-target for allowing - out-of-tree builds - -2008-07-31 Tobias Doerffel - - * CMakeLists.txt: - added win32-pkg target - - * include/fft_helpers.h: - added missing EXPORT-declarations - - * src/core/midi/midi_winmm.cpp: - removed some debugging code - -2008-07-30 Tobias Doerffel - - * include/track.h: - * src/core/track.cpp: - * src/gui/file_browser.cpp: - * src/tracks/instrument_track.cpp: - added simple-serializing mode which makes tracks not save their TCOs - - used for improved save and restore of presets (closes #2025902) - - * src/gui/widgets/effect_view.cpp: - do not cast model to effect for only calling displayName() - - * src/gui/widgets/effect_rack_view.cpp: - - initialize bool-map with correct size - fixes crashes under various - circumstances - - do not cast model of effectView as the effect might not exist - anymore - - * data/presets/TripleOscillator/Steel.cs.xml: - * data/presets/TripleOscillator/SawLead.cs.xml: - * data/presets/TripleOscillator/Bass.cs.xml: - * data/presets/TripleOscillator/E-Organ.cs.xml: - * data/presets/TripleOscillator/FM-Wood-Arp.cs.xml: - * data/presets/TripleOscillator/Harmonium.cs.xml: - * data/presets/TripleOscillator/NostalgicFeelings.cs.xml: - * data/presets/TripleOscillator/Moog.cs.xml: - * data/presets/TripleOscillator/SawLead2.cs.xml: - * data/presets/TripleOscillator/HardClipping.cs.xml: - * data/presets/TripleOscillator/RaveBass.cs.xml: - * data/presets/TripleOscillator/EvilHardcore.cs.xml: - * data/presets/TripleOscillator/Distorted-FM-Bass_2.cs.xml: - * data/presets/TripleOscillator/ShortBass.cs.xml: - * data/presets/TripleOscillator/Crystallo.cs.xml: - * data/presets/TripleOscillator/Fear.cs.xml: - * data/presets/TripleOscillator/HorrorBass.cs.xml: - * data/presets/TripleOscillator/Default.cs.xml: - * data/presets/TripleOscillator/SoftStrings.cs.xml: - * data/presets/TripleOscillator/RaveBass_2.cs.xml: - * data/presets/TripleOscillator/Warmth.cs.xml: - * data/presets/TripleOscillator/Beam.cs.xml: - * data/presets/TripleOscillator/SquareLead2.cs.xml: - * data/presets/TripleOscillator/Weird.cs.xml: - * data/presets/TripleOscillator/LFO-party.cs.xml: - * data/presets/TripleOscillator/Nice.cs.xml: - * data/presets/TripleOscillator/ChurchOrgan_2.cs.xml: - * data/presets/TripleOscillator/SoftBass.cs.xml: - * data/presets/TripleOscillator/Stranger.cs.xml: - * data/presets/TripleOscillator/TB303-Arpeggio.cs.xml: - * data/presets/TripleOscillator/E-Piano.cs.xml: - * data/presets/TripleOscillator/PluckArpeggio.cs.xml: - * data/presets/TripleOscillator/WarmStack.cs.xml: - * data/presets/TripleOscillator/Square.cs.xml: - * data/presets/TripleOscillator/MyComputer.cs.xml: - * data/presets/TripleOscillator/Simple-Acid-Bass.cs.xml: - * data/presets/TripleOscillator/MoogArpeggio.cs.xml: - * data/presets/TripleOscillator/Jupiter.cs.xml: - * data/presets/TripleOscillator/AnalogTimes2.cs.xml: - * data/presets/TripleOscillator/SquareLead.cs.xml: - * data/presets/TripleOscillator/TB303.cs.xml: - * data/presets/TripleOscillator/Detuned-Synced-FM-Bass.cs.xml: - * data/presets/TripleOscillator/ChurchOrgan.cs.xml: - * data/presets/TripleOscillator/SquareArp.cs.xml: - * data/presets/TripleOscillator/OldComputerGames.cs.xml: - removed old raw presets, tuned others and added a few new ones - - * plugins/stk/mallets/mallets.cpp: - detect incomplete Stk-installation in model rather than view for not - crashing when playing without opening the GUI before - - * src/core/main.cpp: - - added --dump parameter for easily uncompressing mmpz-files - - try to set realtime priority after command-line parsing as the - resulting warning might be annoying at this place - - moved initialization of RNG to top of main() - - * src/core/mmp.cpp: - quirks for loading drumsynth-samples whose directory-names have - changed from space to underscore - -2008-07-29 Tobias Doerffel - - * plugins/ladspa_effect/tap/CMakeLists.txt: - * plugins/ladspa_effect/caps/CMakeLists.txt: - fixed linker-flags - - * plugins/spectrum_analyzer/spectrum_analyzer.cpp: - * plugins/spectrum_analyzer/spectrum_analyzer.h: - * include/fft_helpers.h: - * src/core/fft_helpers.cpp: - * lmmsconfig.h.in: - moved FFT-helper functions from Spectrum Analyzer plugin to core to - make it also usable by other plugins - -2008-07-28 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_controls.cpp: - * plugins/lb302/lb302.cpp: - * plugins/lb303/lb303.cpp: - * plugins/stereo_matrix/stereomatrix_controls.cpp: - * plugins/bass_booster/bassbooster_controls.cpp: - * plugins/vst_effect/vst_effect_controls.cpp: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/peak_controller_effect/peak_controller_effect_controls.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/stereo_enhancer/stereoenhancer_controls.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_base/lvsl_client.h: - * plugins/kicker/kicker.cpp: - * plugins/flp_import/flp_import.cpp: - * plugins/midi_import/midi_import.cpp: - * include/mmp.h: - * include/effect.h: - * include/meter_model.h: - * include/automatable_slider.h: - * include/song.h: - * include/pch.h: - * src/gui/main_window.cpp: - * src/gui/song_editor.cpp: - * src/gui/widgets/tempo_sync_knob.cpp: - * src/gui/widgets/meter_dialog.cpp: - * src/tracks/sample_track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * src/core/effect_chain.cpp: - * src/core/midi/midi_controller.cpp: - * src/core/midi/midi_port.cpp: - * src/core/track_container.cpp: - * src/core/serializing_object.cpp: - * src/core/journalling_object.cpp: - * src/core/config_mgr.cpp: - * src/core/automatable_model.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/mmp.cpp: - * src/core/effect.cpp: - * src/core/instrument_functions.cpp: - * src/core/controller_connection.cpp: - * src/core/note.cpp: - * src/core/timeline.cpp: - * src/core/surround_area.cpp: - * src/core/automation_pattern.cpp: - * src/core/inline_automation.cpp: - * src/core/fx_mixer.cpp: - * src/core/controller.cpp: - * src/core/lfo_controller.cpp: - * src/core/peak_controller.cpp: - reduced header-dependencies - - * src/core/plugin.cpp: - - don't show messagebox if no GUI is running - - if plugin failed to load also tell about the reason - - * plugins/ladspa_effect/tap/CMakeLists.txt: - * plugins/ladspa_effect/caps/CMakeLists.txt: - * src/core/main.cpp: - * cmake/modules/BuildPlugin.cmake: - * lmmsconfig.h.in: - * CMakeLists.txt: - added support for building LMMS on OS X and generating a DMG-package - - * src/core/main.cpp: - win32-compatibility - - * data/projects/cool_songs/StrictProduction-DearJonDoe.mmp: - * data/projects/cool_songs/OrtalDj-FirstProyect.mmp: - * data/projects/cool_songs/TobyDox-Psycho.mmp: - * data/projects/cool_songs/TobyDox-Confused.mmp: - * data/projects/cool_songs/Djeezus-BeatRolls.mmp: - * data/projects/cool_songs/Lokori-Systematic_Chaos.mmp: - * data/projects/cool_songs/StrictProduction-Underline.mmp: - * data/projects/cool_songs/Djeezus-Oscilisous.mmp: - * data/projects/cool_songs/Chris-RaveRiff.mmpz: - * data/projects/cool_songs/TobyDox-TheFourthDimension.mmp: - * data/projects/cool_songs/Mart-Concave_flow.mmp: - * data/projects/cool_songs/MysthR-Living.mmpz: - * data/projects/cool_songs/Marfil-MarfilDrum01.mmp: - * data/projects/cool_songs/j1m-DingDong.mmp: - * data/projects/cool_songs/Malex-Horizon4.mmp: - * data/projects/cool_songs/Siegel-DreamWave.mmp: - * data/projects/cool_songs/BlueWolf-DreamTravel.mmp: - * data/projects/cool_songs/StrictProduction-Lamentelnes.mmp: - * data/projects/cool_songs/OrtalDj-FirstProyect.mmpz: - * data/projects/cool_songs/Silva-ElvesCall.mmp: - upgraded projects to match current file format - diffstat: 17 files changed, 12811 insertions(+), 37791 deletions(-) - - * include/song_editor.h: - * src/core/song.cpp: - make sure all TCOs are shown after loading project (closes #2016741) - - * src/core/automatable_model.cpp: - when loading legacy automation with only one value in, eliminate - global automation pattern right after loading data - - * src/core/main.cpp: - - initialize random-number generation - fixes problems with duplicate - JO-IDs - - show main-window before loading project given on command-line or - creating a new project (closes #2016741) - - * src/core/automation_pattern.cpp: - fixed some segfaults in case of invalid objects in object-vector - - * src/core/mmp.cpp: - - use QTextStream to save uncompressed XML-files - - when encountering problems while parsing XML-file, print line and - column of problem - -2008-07-27 Tobias Doerffel - - * src/gui/automation_editor.cpp: - also allow drawing new dots when clicking inside already existing - value (closes #2026120) - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - reverted previous change of some models from floatModel to intModel as - it caused crashes in knob-class - - * include/automation_pattern.h: - * src/core/automation_pattern.cpp: - when connecting object to automation-pattern which has no object - connected yet, set default-value (closes #2026102) - - * plugins/vst_base/CMakeLists.txt: - added missing support for out-of-tree builds - - * README: - * INSTALL: - updated documentation on how to build LMMS with cmake - -2008-07-26 Tobias Doerffel - - * data/locale/en.ts: - * data/locale/pt_br.ts: - * data/locale/es.ts: - * data/locale/fr.ts: - * data/locale/nl.ts: - * data/locale/ir.ts: - * data/locale/it.ts: - * data/locale/ca.ts: - * data/locale/de.ts: - * data/locale/sv.ts: - refreshed localizations - diffstat: 10 files changed, 34785 insertions(+), 6862 deletions(-) - - * data/locale/ru.ts: - added updated Russian localization by Alexey Kouznetsov - - * CMakeLists.txt: - - added locale targets - - added "update-locales" target - - added "distclean" target - - added "tarball" target - - * plugins/organic/organic.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * include/mixer.h: - * include/sample_buffer.h: - * include/oscillator.h: - * include/types.h: - * src/core/sample_play_handle.cpp: - * src/core/sample_buffer.cpp: - * src/core/oscillator.cpp: - * lmmsconfig.h.in: - * CMakeLists.txt: - less header-dependencies and moved some type-definitions - -2008-07-23 Tobias Doerffel - - * data/locale/fr.qm: - * data/locale/fr.ts: - updated French localization-files by Stephane Thomas - - * cmake/modules/FindPkgConfig.cmake: - * include/midi_winmm.h: - * include/midi_alsa_seq.h: - * CMakeLists.txt: - * cmake/modules/BuildPlugin.cmake: - support for cmake < 2.4.8 - - * plugins/ladspa_effect/caps/CMakeLists.txt: - do not compile with -O3 when using GCC 4.1.x as this version segfaults - while optimizing - - * plugins/spectrum_analyzer/spectrum_analyzer.cpp: - * include/effect_lib.h: - fixed compiler-warnings - - * src/core/midi/midi_winmm.cpp: - * src/core/midi/midi_alsa_seq.cpp: - fixed subscribe/unsubscribe-warnings - - * CMakeLists.txt: - fixes for cmake 2.4 - -2008-07-22 Tobias Doerffel - - * cmake/modules/BuildPlugin.cmake: - * plugins/patman/CMakeLists.txt: - * plugins/ladspa_effect/CMakeLists.txt: - * plugins/organic/CMakeLists.txt: - * plugins/lb302/CMakeLists.txt: - * plugins/lb303/CMakeLists.txt: - * plugins/bass_booster/CMakeLists.txt: - * plugins/stereo_matrix/CMakeLists.txt: - * plugins/bit_invader/CMakeLists.txt: - * plugins/vst_effect/CMakeLists.txt: - * plugins/vibed/CMakeLists.txt: - * plugins/triple_oscillator/CMakeLists.txt: - * plugins/live_tool/CMakeLists.txt: - * plugins/peak_controller_effect/CMakeLists.txt: - * plugins/audio_file_processor/CMakeLists.txt: - * plugins/stk/mallets/CMakeLists.txt: - * plugins/stereo_enhancer/CMakeLists.txt: - * plugins/sf2_player/CMakeLists.txt: - * plugins/vestige/CMakeLists.txt: - * plugins/ladspa_browser/CMakeLists.txt: - * plugins/spectrum_analyzer/CMakeLists.txt: - * plugins/kicker/CMakeLists.txt: - * plugins/flp_import/CMakeLists.txt: - * CMakeLists.txt: - various fixes for allowing out-of-tree builds - - * CMakeLists.txt: - - initial support for CPack - - remove old include/lmmsconfig.h from the autotools-era - - * cmake/modules/InstallHelpers.cmake: - fixed INSTALL_DATA_SUBDIRS-macro (use normal string-replace - instead of regex-replace) - - * include/project_renderer.h: - * src/core/project_renderer.cpp: - also compile without OGG/Vorbis-support - - * cmake/modules/Win32Toolchain.cmake: - * cmake/modules/BuildPlugin.cmake: - * src/3rdparty/samplerate/config.h: - * CMakeLists.txt: - fixes for successfully cross-compiling - - * cmake/modules/Win32Toolchain.cmake: - * cmake/modules/BuildPlugin.cmake: - * plugins/ladspa_effect/tap/CMakeLists.txt: - * plugins/ladspa_effect/caps/CMakeLists.txt: - * plugins/vst_effect/CMakeLists.txt: - * include/audio_sdl.h: - * src/core/midi/midi_winmm.cpp: - * build_mingw32: - * CMakeLists.txt: - initial support for mingw-cross-compiling - - * include/midi_alsa_seq.h: - * include/midi_client.h: - * include/midi_port.h: - * include/midi_winmm.h: - * src/core/mixer.cpp: - * src/core/midi/midi_alsa_raw.cpp: - * src/core/midi/midi_alsa_seq.cpp: - * src/core/midi/midi_client.cpp: - * src/core/midi/midi_oss.cpp: - * src/core/midi/midi_winmm.cpp: - * src/gui/setup_dialog.cpp: - added rudimentary WinMM MIDI support - - * src/core/mmp.cpp: - * plugins/lb302/lb302.h - * plugins/CMakeLists.txt: - switched back to LB302 as Paul wants LB303 for 0.4.1 - - * cmake/modules/FindAlsa.cmake: - * cmake/modules/FindOggVorbis.cmake: - * cmake/modules/FindSTK.cmake: - * cmake/modules/FindPCHSupport.cmake: - * cmake/modules/config-alsa.h.cmake: - * cmake/modules/InstallHelpers.cmake: - * cmake/modules/FindPulseAudio.cmake: - * cmake/modules/ChecksForLibSamplerate.cmake: - * cmake/modules/BuildPlugin.cmake: - * plugins/patman/patman.cpp: - * plugins/patman/CMakeLists.txt: - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/tap/tap_deesser.c: - * plugins/ladspa_effect/tap/tap_sigmoid.c: - * plugins/ladspa_effect/tap/tap_doubler.c: - * plugins/ladspa_effect/tap/ladspa-local.h: - * plugins/ladspa_effect/tap/tap_eqbw.c: - * plugins/ladspa_effect/tap/tap_pinknoise.c: - * plugins/ladspa_effect/tap/tap_chorusflanger.c: - * plugins/ladspa_effect/tap/tap_limiter.c: - * plugins/ladspa_effect/tap/tap_eq.c: - * plugins/ladspa_effect/tap/tap_vibrato.c: - * plugins/ladspa_effect/tap/tap_autopan.c: - * plugins/ladspa_effect/tap/tap_pitch.c: - * plugins/ladspa_effect/tap/tap_dynamics_st.c: - * plugins/ladspa_effect/tap/tap_echo.c: - * plugins/ladspa_effect/tap/tap_tremolo.c: - * plugins/ladspa_effect/tap/tap_tubewarmth.c: - * plugins/ladspa_effect/tap/tap_dynamics_m.c: - * plugins/ladspa_effect/tap/tap_reflector.c: - * plugins/ladspa_effect/tap/tap_reverb.c: - * plugins/ladspa_effect/tap/tap_rotspeak.c: - * plugins/ladspa_effect/tap/CMakeLists.txt: - * plugins/ladspa_effect/ladspa_control_dialog.cpp: - * plugins/ladspa_effect/caps/basics.h: - * plugins/ladspa_effect/caps/CMakeLists.txt: - * plugins/ladspa_effect/ladspa_controls.cpp: - * plugins/ladspa_effect/CMakeLists.txt: - * plugins/organic/organic.cpp: - * plugins/organic/CMakeLists.txt: - * plugins/lb302/lb302.cpp: - * plugins/lb302/CMakeLists.txt: - * plugins/lb303/lb303.cpp: - * plugins/lb303/CMakeLists.txt: - * plugins/bass_booster/bassbooster_controls.cpp: - * plugins/bass_booster/CMakeLists.txt: - * plugins/stereo_matrix/stereomatrix_controls.cpp: - * plugins/stereo_matrix/CMakeLists.txt: - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/CMakeLists.txt: - * plugins/vst_effect/vst_effect_controls.cpp: - * plugins/vst_effect/CMakeLists.txt: - * plugins/vibed/CMakeLists.txt: - * plugins/vibed/nine_button_selector.cpp: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/CMakeLists.txt: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/live_tool/live_tool.cpp: - * plugins/live_tool/CMakeLists.txt: - * plugins/peak_controller_effect/peak_controller_effect.cpp: - * plugins/peak_controller_effect/peak_controller_effect_controls.cpp: - * plugins/peak_controller_effect/CMakeLists.txt: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/CMakeLists.txt: - * plugins/stk/mallets/mallets.cpp: - * plugins/stk/mallets/CMakeLists.txt: - * plugins/stk/CMakeLists.txt: - * plugins/stereo_enhancer/stereoenhancer_controls.cpp: - * plugins/stereo_enhancer/CMakeLists.txt: - * plugins/sf2_player/patches_dialog.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/CMakeLists.txt: - * plugins/vestige/vestige.cpp: - * plugins/vestige/CMakeLists.txt: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_base/CMakeLists.txt: - * plugins/ladspa_browser/ladspa_browser.cpp: - * plugins/ladspa_browser/ladspa_description.cpp: - * plugins/ladspa_browser/ladspa_port_dialog.cpp: - * plugins/ladspa_browser/CMakeLists.txt: - * plugins/spectrum_analyzer/spectrumanalyzer_controls.cpp: - * plugins/spectrum_analyzer/CMakeLists.txt: - * plugins/kicker/kicker.cpp: - * plugins/kicker/CMakeLists.txt: - * plugins/flp_import/CMakeLists.txt: - * plugins/flp_import/unrtf/output.c: - * plugins/flp_import/unrtf/html.c: - * plugins/flp_import/unrtf/malloc.c: - * plugins/flp_import/unrtf/parse.c: - * plugins/flp_import/unrtf/attr.c: - * plugins/flp_import/unrtf/word.c: - * plugins/flp_import/unrtf/util.c: - * plugins/flp_import/unrtf/convert.c: - * plugins/flp_import/unrtf/hash.c: - * plugins/flp_import/unrtf/error.c: - * plugins/midi_import/CMakeLists.txt: - * plugins/CMakeLists.txt: - * Makefile.svn: - * include/midi_dummy.h: - * include/midi_alsa_raw.h: - * include/config_mgr.h: - * include/audio_file_wave.h: - * include/audio_file_ogg.h: - * include/ladspa_manager.h: - * include/ladspa_control.h: - * include/ladspa.h: - * include/midi_oss.h: - * include/pch.h: - * include/sample_buffer.h: - * include/audio_dummy.h: - * include/midi_mapper.h: - * include/audio_pulseaudio.h: - * include/audio_sdl.h: - * include/micro_timer.h: - * include/audio_jack.h: - * include/project_renderer.h: - * include/midi_alsa_seq.h: - * include/ladspa-1.1.h: - * include/setup_dialog.h: - * include/export_project_dialog.h: - * include/midi_client.h: - * include/audio_device.h: - * include/audio_oss.h: - * include/audio_alsa.h: - * src/gui/piano_roll.cpp: - * src/gui/track_container_view.cpp: - * src/gui/plugin_browser.cpp: - * src/gui/controller_dialog.cpp: - * src/gui/automatable_model_view.cpp: - * src/gui/effect_select_dialog.cpp: - * src/gui/effect_control_dialog.cpp: - * src/gui/fx_mixer_view.cpp: - * src/gui/main_window.cpp: - * src/gui/song_editor.cpp: - * src/gui/setup_dialog.cpp: - * src/gui/controller_connection_dialog.cpp: - * src/gui/file_browser.cpp: - * src/gui/widgets/ladspa_control_view.cpp: - * src/gui/widgets/track_label_button.cpp: - * src/gui/widgets/graph.cpp: - * src/gui/widgets/visualization_widget.cpp: - * src/gui/widgets/combobox.cpp: - * src/gui/widgets/tab_widget.cpp: - * src/gui/widgets/midi_port_menu.cpp: - * src/gui/widgets/led_checkbox.cpp: - * src/gui/widgets/side_bar_widget.cpp: - * src/gui/widgets/controller_rack_view.cpp: - * src/gui/widgets/kmultitabbar.cpp: - * src/gui/widgets/caption_menu.cpp: - * src/gui/widgets/instrument_sound_shaping_view.cpp: - * src/gui/widgets/rename_dialog.cpp: - * src/gui/widgets/envelope_and_lfo_view.cpp: - * src/gui/widgets/pixmap_button.cpp: - * src/gui/widgets/knob.cpp: - * src/gui/widgets/instrument_function_views.cpp: - * src/gui/widgets/fade_button.cpp: - * src/gui/widgets/cpuload_widget.cpp: - * src/gui/widgets/tab_bar.cpp: - * src/gui/widgets/automatable_slider.cpp: - * src/gui/widgets/group_box.cpp: - * src/gui/widgets/lcd_spinbox.cpp: - * src/gui/widgets/rubberband.cpp: - * src/gui/widgets/tool_button.cpp: - * src/gui/widgets/controller_view.cpp: - * src/gui/widgets/project_notes.cpp: - * src/gui/widgets/fader.cpp: - * src/gui/widgets/effect_rack_view.cpp: - * src/gui/widgets/effect_view.cpp: - * src/gui/widgets/nstate_button.cpp: - * src/gui/widgets/automatable_button.cpp: - * src/gui/widgets/tempo_sync_knob.cpp: - * src/gui/export_project_dialog.cpp: - * src/gui/automation_editor.cpp: - * src/gui/bb_editor.cpp: - * src/gui/about_dialog.cpp: - * src/tracks/sample_track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * src/3rdparty/samplerate/src_sinc.c: - * src/3rdparty/samplerate/config.h: - * src/core/midi/midi_controller.cpp: - * src/core/midi/midi_mapper.cpp: - * src/core/midi/midi_oss.cpp: - * src/core/midi/midi_port.cpp: - * src/core/midi/midi_alsa_seq.cpp: - * src/core/midi/midi_alsa_raw.cpp: - * src/core/song.cpp: - * src/core/track_container.cpp: - * src/core/bb_track_container.cpp: - * src/core/config_mgr.cpp: - * src/core/automatable_model.cpp: - * src/core/audio/audio_alsa.cpp: - * src/core/audio/audio_file_wave.cpp: - * src/core/audio/audio_sdl.cpp: - * src/core/audio/audio_oss.cpp: - * src/core/audio/audio_jack.cpp: - * src/core/audio/audio_pulseaudio.cpp: - * src/core/audio/audio_file_ogg.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/main.cpp: - * src/core/mixer.cpp: - * src/core/combobox_model.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/project_renderer.cpp: - * src/core/meter_model.cpp: - * src/core/ladspa_manager.cpp: - * src/core/instrument_functions.cpp: - * src/core/controller_connection.cpp: - * src/core/ladspa_control.cpp: - * src/core/track.cpp: - * src/core/piano.cpp: - * src/core/timeline.cpp: - * src/core/surround_area.cpp: - * src/core/sample_buffer.cpp: - * src/core/mv_base.cpp: - * src/core/automation_pattern.cpp: - * src/core/lfo_controller.cpp: - * src/core/controller.cpp: - * src/core/peak_controller.cpp: - * data/locale/CMakeLists.txt: - * data/track_icons/CMakeLists.txt: - * data/samples/CMakeLists.txt: - * data/presets/PluckedStringSynth/Default.cs.xml: - * data/presets/VeSTige/Default.cs.xml: - * data/presets/CMakeLists.txt: - * data/themes/CMakeLists.txt: - * data/projects/CMakeLists.txt: - * data/CMakeLists.txt: - * lmmsconfig.h.in: - * CMakeLists.txt: - migrated build-system to CMAKE - - * plugins/patman/Makefile.am: - * plugins/ladspa_effect/tap/Makefile.am: - * plugins/ladspa_effect/caps/Makefile.am: - * plugins/ladspa_effect/Makefile.am: - * plugins/organic/Makefile.am: - * plugins/lb302/Makefile.am: - * plugins/lb303/Makefile.am: - * plugins/bass_booster/Makefile.am: - * plugins/stereo_matrix/Makefile.am: - * plugins/bit_invader/Makefile.am: - * plugins/vst_effect/Makefile.am: - * plugins/vibed/Makefile.am: - * plugins/triple_oscillator/Makefile.am: - * plugins/live_tool/Makefile.am: - * plugins/peak_controller_effect/Makefile.am: - * plugins/audio_file_processor/Makefile.am: - * plugins/stk/mallets/Makefile.am: - * plugins/stk/Makefile.am: - * plugins/stereo_enhancer/Makefile.am: - * plugins/sf2_player/Makefile.am: - * plugins/vestige/Makefile.am: - * plugins/vst_base/Makefile.am: - * plugins/ladspa_browser/Makefile.am: - * plugins/spectrum_analyzer/Makefile.am: - * plugins/kicker/Makefile.am: - * plugins/Makefile.am: - * plugins/flp_import/Makefile.am: - * plugins/midi_import/Makefile.am: - * data/locale/Makefile.am: - * data/track_icons/Makefile.am: - * data/midi-maps/Makefile.am: - * data/samples/effects/Makefile.am: - * data/samples/stringsnpads/Makefile.am: - * data/samples/basses/Makefile.am: - * data/samples/shapes/Makefile.am: - * data/samples/latin/Makefile.am: - * data/samples/Makefile.am: - * data/samples/bassloopes/Makefile.am: - * data/samples/drums/Makefile.am: - * data/samples/instruments/Makefile.am: - * data/samples/misc/Makefile.am: - * data/samples/drumsynth/effects/Makefile.am: - * data/samples/drumsynth/misc_synth/Makefile.am: - * data/samples/drumsynth/tr606/Makefile.am: - * data/samples/drumsynth/cr78/Makefile.am: - * data/samples/drumsynth/tr808/Makefile.am: - * data/samples/drumsynth/magnetboy/Makefile.am: - * data/samples/drumsynth/tr909/Makefile.am: - * data/samples/drumsynth/misc_fx/Makefile.am: - * data/samples/drumsynth/misc/Makefile.am: - * data/samples/drumsynth/electro/Makefile.am: - * data/samples/drumsynth/ferraro/Makefile.am: - * data/samples/drumsynth/linn/Makefile.am: - * data/samples/drumsynth/r_b/Makefile.am: - * data/samples/drumsynth/tr77/Makefile.am: - * data/samples/drumsynth/misc_bass/Makefile.am: - * data/samples/drumsynth/misc_perc/Makefile.am: - * data/samples/drumsynth/latin/Makefile.am: - * data/samples/drumsynth/instrument/Makefile.am: - * data/samples/drumsynth/misc_electro/Makefile.am: - * data/samples/drumsynth/Makefile.am: - * data/samples/drumsynth/acoustic/Makefile.am: - * data/samples/drumsynth/misc_hats/Makefile.am: - * data/samples/drumsynth/farfisa/Makefile.am: - * data/samples/drumsynth/jorgensohn/Makefile.am: - * data/samples/drumsynth/cr8000/Makefile.am: - * data/samples/drumsynth/misc_claps/Makefile.am: - * data/samples/beats/Makefile.am: - * data/presets/AudioFileProcessor/Makefile.am: - * data/presets/Organic/Makefile.am: - * data/presets/PluckedStringSynth/Makefile.am: - * data/presets/VeSTige/Makefile.am: - * data/presets/BitInvader/Makefile.am: - * data/presets/Makefile.am: - * data/presets/TripleOscillator/Makefile.am: - * data/themes/Makefile.am: - * data/projects/covers/Makefile.am: - * data/projects/recorded_loops/Makefile.am: - * data/projects/cool_songs/Makefile.am: - * data/projects/tutorials/Makefile.am: - * data/projects/demos/Makefile.am: - * data/projects/Makefile.am: - * data/projects/misc/Makefile.am: - * data/projects/templates/Makefile.am: - * data/Makefile.am: - * Makefile.am: - * acinclude.m4: - * configure.in: - removed old autotools-files - -2008-07-18 Tobias Doerffel - - * plugins/ladspa_effect/tap/tap_deesser.c: - * plugins/ladspa_effect/tap/tap_sigmoid.c: - * plugins/ladspa_effect/tap/tap_doubler.c: - * plugins/ladspa_effect/tap/tap_eqbw.c: - * plugins/ladspa_effect/tap/tap_pinknoise.c: - * plugins/ladspa_effect/tap/tap_chorusflanger.c: - * plugins/ladspa_effect/tap/tap_eq.c: - * plugins/ladspa_effect/tap/tap_limiter.c: - * plugins/ladspa_effect/tap/tap_vibrato.c: - * plugins/ladspa_effect/tap/tap_pitch.c: - * plugins/ladspa_effect/tap/tap_autopan.c: - * plugins/ladspa_effect/tap/tap_dynamics_st.c: - * plugins/ladspa_effect/tap/tap_echo.c: - * plugins/ladspa_effect/tap/tap_tremolo.c: - * plugins/ladspa_effect/tap/tap_tubewarmth.c: - * plugins/ladspa_effect/tap/tap_dynamics_m.c: - * plugins/ladspa_effect/tap/tap_reflector.c: - * plugins/ladspa_effect/tap/tap_reverb.c: - * plugins/ladspa_effect/tap/tap_rotspeak.c: - * plugins/ladspa_effect/tap/Makefile.am: - added constructor/destructor-attribute to _init() and _finit()-methods - in order to make those LADSPA-plugins work properly in win32-version - - * src/core/config_mgr.cpp: - * src/core/ladspa_manager.cpp: - * src/gui/setup_dialog.cpp: - separate LADSPA-paths with ',' instead of ':' as win32-paths usually - contain ':'-characters... - - * src/core/ladspa_2_lmms.cpp: - also allow LADSPA-plugins which are not realtime capable - not all of - them work properly but most do and it's better to provide more of them - - * src/gui/widgets/effect_view.cpp: - handled rename of up/down arrow graphics - - * include/ladspa_2_lmms.h: - cleanups - - * src/core/ladspa_manager.cpp: - fixed paths to LADSPA-plugins for win32 - - * src/gui/string_pair_drag.cpp: - at destruction check whether mainWindow is still alive - - * src/core/midi/midi_port.cpp: - range-checking for keys of input-events - - * src/core/song.cpp: - lock mixer while adding BB-track (finally closes #2014486) - - * src/core/bb_track_container.cpp: - * src/core/mv_base.cpp: - * src/gui/automation_editor.cpp: - * src/gui/bb_editor.cpp: - * src/gui/widgets/knob.cpp: - * src/tracks/instrument_track.cpp: - do not create queued signal-slot-connections - - * src/core/audio/audio_sdl.cpp: - changed number of frames per callback which seems to fix distorted sound - - * plugins/lb303/lb303.h: - removed declaration of unimplemented slot - fixes win32-build - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/vibed/vibed.cpp: - * include/controller.h: - * include/lfo_controller.h: - * include/midi_controller.h: - * include/peak_controller.h: - * include/plugin.h: - * src/core/controller.cpp: - * src/core/lfo_controller.cpp: - * src/core/peak_controller.cpp: - * src/core/tool.cpp: - * src/core/midi/midi_controller.cpp: - * src/gui/effect_control_dialog.cpp: - * src/gui/effect_select_dialog.cpp: - * src/gui/main_window.cpp: - * src/gui/plugin_browser.cpp: - * src/gui/widgets/controller_view.cpp: - * src/gui/widgets/effect_view.cpp: - * src/tracks/instrument_track.cpp: - removed publicName-properties in various classes and plugin-descriptor - and use model::displayName instead - - * src/gui/controller_connection_dialog.cpp: - improved GUI-layout - - * include/automation_pattern.h: - * src/core/automation_pattern.cpp: - - removed obsolete variable - - fixed wrong behaviour of automationPattern::valueAt() - - in case there's only one initial value in time-map, set it for all - objects when loading settings - - * src/tracks/instrument_track.cpp: - save actual instrument-settings in separate sub-node for not mixing up - unknown nodes with instruments - - * src/gui/widgets/group_box.cpp: - only toggle LED on left click - - * include/detuning_helper.h: - * include/inline_automation.h: - fixed behaviour for inline-automations with only one value in time-map - - * src/core/mmp.cpp: - - fixed and improved various tag-renaming-loops - - added upgrade path from LB302 to LB303 - - * plugins/bit_invader/bit_invader.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/spectrum_analyzer/spectrum_analyzer.cpp: - fixed compiler warnings - - * plugins/Makefile.am: - removed lb302 from list of plugins to build - - * plugins/midi_import/midi_import.cpp: - improved tempo-automation import - - * include/automatable_model.h: - * include/mv_base.h: - * src/core/automatable_model.cpp: - moved displayName-property from automatableModel to model base-class - - * src/tracks/pattern.cpp: - fixed types - - * src/core/automation_pattern.cpp: - improved behaviour in automationPattern::clear() and - automationPattern::putValue() - - * include/instrument_sound_shaping.h: - * src/core/effect_chain.cpp: - * src/core/instrument_functions.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/meter_model.cpp: - * src/core/song.cpp: - * src/core/track.cpp: - * src/core/surround_area.cpp: - * src/gui/widgets/graph.cpp: - * src/tracks/instrument_track.cpp: - added more values for displayName-property - - * include/track_label_button.h: - * src/gui/widgets/track_label_button.cpp: - * src/tracks/automation_track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - * Makefile.am: - - moved name_label.* to track_label_button.* - - bigger icons for trackLabelButtons - -2008-07-17 Tobias Doerffel - - * src/tracks/automation_track.cpp: - make sure, hidden automation-tracks are not muted when loading - - * src/core/automatable_model.cpp: - cleanups - - * data/projects/covers/J.S.Bach-Preludium_and_Fugue_A-Minor.mmpz: - fixed tempo-automation - -2008-07-16 Tobias Doerffel - - * src/gui/main_window.cpp: - added minimal width and height when restoring subwindow-states - - * include/bb_track_container.h: - * src/core/bb_track_container.cpp: - * src/core/song.cpp: - added quirk for fixing projects with broken positions of TCOs inside - BB-tracks - - * src/core/automation_pattern.cpp: - update views after resolving IDs for drawing bars with proper range - - * src/tracks/automation_track.cpp: - fixed behaviour of automation-tracks in BB-editor (closes #2014486) - - * include/track.h: - * src/core/track.cpp: - fixed "Cut"-action on TCOs (closes #2016731) - -2008-07-12 Tobias Doerffel - - * src/core/config_mgr.cpp: - * src/core/main.cpp: - do not terminate silently if parsing of configuration file failed - - * src/gui/automation_editor.cpp: - fixed drawing of bars which do not fit within current viewport - - * data/themes/default/factory_files.png: - better icon - - * data/projects/covers/J.S.Bach-Preludium_and_Fugue_A-Minor.mmpz: - upgraded + reverb in master-FX channel - - * Makefile.am: - * include/effect_label.h: - * src/gui/widgets/effect_label.cpp: - removed obsolete files - - * include/automation_track.h: - * include/bb_track.h: - * include/effect_rack_view.h: - * include/instrument_track.h: - * include/name_label.h: - * include/sample_track.h: - * include/track.h: - * src/core/track.cpp: - * src/gui/widgets/group_box.cpp: - * src/gui/widgets/name_label.cpp: - * src/tracks/automation_track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - * data/themes/default/style.css: - * data/themes/default/add_automation.png: - * data/themes/default/add_sample_track.png: - * data/themes/default/automation.png: - * data/themes/default/automation_track.png: - * data/themes/default/colorize.png: - * data/themes/default/instrument_track.png: - * data/themes/default/sample_track.png: - * data/themes/default/surround_area.png: - unified track-view appearence and behaviour - -2008-07-11 Tobias Doerffel - - * plugins/sf2_player/Makefile.am: - added missing SOURCES-entry for UI-file - - * src/gui/widgets/combobox.cpp: - better position for text-drawing - - * include/instrument_functions.h: - * include/instrument_function_views.h: - * src/core/instrument_functions.cpp: - * src/gui/widgets/instrument_function_views.cpp: - * data/themes/default/arp_down.png: - * data/themes/default/arp_down_off.png: - * data/themes/default/arp_down_on.png: - * data/themes/default/arp_random.png: - * data/themes/default/arp_random_off.png: - * data/themes/default/arp_random_on.png: - * data/themes/default/arp_up.png: - * data/themes/default/arp_up_off.png: - * data/themes/default/arp_up_on.png: - * data/themes/default/arp_up_and_down.png: - * data/themes/default/arp_up_and_down_off.png: - * data/themes/default/arp_up_and_down_on.png: - use combobox instead of button-group for selecting arpeggio-direction - -2008-07-08 Paul Giblock - - * plugins/lb303: - * plugins/lb303/lb303.cpp: - * plugins/lb303/lb303.h: - * plugins/lb303/artwork.png: - * plugins/lb303/logo.png: - * plugins/lb303/Makefile.am: - * plugins/Makefile.am: - * configure.in: - First version of lb303, NO backward compatability YET - - * src/gui/controller_connection_dialog.cpp: - Fix MIDI AutoDetect - - * src/gui/widgets/knob.cpp: - Fix occationally missing line after instantiation - -2008-07-07 Paul Giblock - - * src/gui/controller_connection_dialog.cpp: - Show name instead of type in connection dialog - - * src/gui/widgets/controller_view.cpp: - Remove bypass - - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - - Initial support for pitch-bend, doesn't work during slide. - - Next version will probably be the first lb303 - - Cleanup, fixed dropped-notes - - Fix pitch-bend while sliding - -2008-07-07 Tobias Doerffel - - * configure.in: - made 0.4.0-alpha2 release - - * src/core/mmp.cpp: - added compat-code for loading old presets where content-node is named - "channelsettings" - - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - added support for pitch-bending - - * include/instrument_track.h: - * include/note_play_handle.h: - * src/core/note_play_handle.cpp: - * src/tracks/instrument_track.cpp: - - additionally provide frequency without pitch-wheel - - added instrumentTrack::midiPitch() - - * include/instrument.h: - * include/instrument_track.h: - * include/midi_controller.h: - * include/midi_event_processor.h: - * include/midi_port.h: - * src/core/note_play_handle.cpp: - * src/core/midi/midi_controller.cpp: - * src/tracks/instrument_track.cpp: - removed buggy and obsolete support for monophonic instruments - -2008-07-06 Paul Giblock - - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - New version (and probably last) of new IPH-based lb302 - -2008-07-06 Tobias Doerffel - - * src/gui/widgets/combobox.cpp: - draw text at correct position in win32-version - - * src/core/drumsynth.cpp: - when building for win32 define powf() as pow() due to symbol-conflicts - in win32-libm - - * data/themes/default/style.css: - fixed font-color for what's-this-popups so that they're readable - -2008-07-05 Tobias Doerffel - - * plugins/stk/mallets/mallets.cpp: - protect critical section when creating STK-synths as STK is not - thread-safe (closes #2005888) - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - - set hand-cursor for instrument-track-window button - - in instrumentTrack::processInEvent() lock mixer in outer branch - - * include/instrument.h: - added note for scheduled removal of monophonic-property - - * include/note_play_handle.h: - made m_released volatile - - * src/core/note_play_handle.cpp: - - instantly exit noteOff() if already released - - manually unlink references to itself in instrumentTrack (fixes - segfaults in various situations) - - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/instrument_functions.cpp: - * src/core/ladspa_control.cpp: - fixed tempo-sync-models (closes #2010776) - - * src/core/mixer.cpp: - cleanups - - * src/tracks/automation_track.cpp: - made muting automation-tracks work (closes #2010770) - - * src/tracks/bb_track.cpp: - made muting BB-tracks work (closes #2010764) - - * src/gui/widgets/effect_rack_view.cpp: - made removing effect-plugins thread-safe (closes #2010984) - - * src/core/automation_pattern.cpp: - save and restore automationPattern's name (closes #2011011) - - * include/inline_automation.h: - delete automation-pattern is in correct thread (closes #2008232) - -2008-07-04 Tobias Doerffel - - * include/track.h: - made trackContentObject and track implement displayName() in order to - return their name - - * include/effect_label.h: - * src/gui/widgets/effect_label.cpp: - * src/tracks/sample_track.cpp: - do not take _initial_name as it can be retrieved from track - - * src/tracks/sample_track.cpp: - added name to volumeModel - - * data/themes/default/hand.png: - * src/gui/automatable_model_view.cpp: - * src/gui/fx_mixer_view.cpp: - * src/gui/widgets/fade_button.cpp: - * src/gui/widgets/effect_label.cpp: - * src/gui/widgets/name_label.cpp: - * src/core/track.cpp: - added hand-cursor for all controls - - * data/themes/default/style.css: - common font-size for track-labels - -2008-07-02 Tobias Doerffel - - * src/core/main.cpp: - * src/core/song.cpp: - added new commandline option "--upgrade" for upgrading project-files - easily - - * src/core/config_mgr.cpp: - fixed wrong macro-name - fixes unusable Mallets-plugin - -2008-07-01 Tobias Doerffel - - * plugins/sf2_player/Makefile.am: - removed ui_patches_dialog.h from SOURCES-list - - * src/core/mmp.cpp: - don't mess up projects when loading files being created using - 0.4.0-alpha in a later version because "0.4.0-alpha" < "0.4.0-svn..." - - * include/mv_base.h: - Qt 4.3 compatibility - -2008-06-30 Tobias Doerffel - - * configure.in: - made 0.4.0-alpha release - - * src/core/song.cpp: - * src/core/mmp.cpp: - * src/core/track.cpp: - * src/core/automation_pattern.cpp: - fixed broken load/save of song-global automation - - * Makefile.am: - win32-pkg-fixes - - * data/locale/de.qm: - * data/locale/de.ts: - updated German localization file - - * include/song_editor.h: - * src/gui/song_editor.cpp: - made icon on play-button change according to current mode - - * include/main_window.h: - * src/gui/bb_editor.cpp: - * src/gui/fx_mixer_view.cpp: - * src/gui/main_window.cpp: - * src/gui/song_editor.cpp: - * src/gui/widgets/controller_rack_view.cpp: - added toggle-button for controller-rack-view and improved default - positions of sub-windows in workspace - - * src/core/song.cpp: - - send posted events after creating a new project - makes project not - being marked as modified right after it's been created - - create empty sample-track and automation-track in new projects - - * src/core/engine.cpp: - clear whole project before deleting everything - fixes segfault when - quitting with controllers added - - * src/core/effect_chain.cpp: - fixed crash when an effect failed to load because its sub-plugin is - missing (closes #2005910) - - * src/core/automation_pattern.cpp: - - initialize first value in time-map - - better default-model - - change automation-pattern to NULL if opened in automation editor - during destruction - - improved default-label - - when used in track-container with fixed TCOs, update length - - * src/core/track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - save/restore name-property inside track-class - - * src/tracks/automation_track.cpp: - set a proper name per default - - * src/gui/automation_editor.cpp: - queued connections for models for not getting signaled at - destruction-time - - * include/bb_editor.h: - * src/gui/bb_editor.cpp: - made it possible to add automation-tracks to BB-editor - - * include/automation_pattern.h: - * include/inline_automation.h: - * include/note.h: - * src/core/inline_automation.cpp: - * src/core/note.cpp: - fixed inlineAutomation::hasAutomation() - - * data/themes/default/style.css: - common font-size for various push-buttons - - * src/core/config_mgr.cpp: - ask whether to create working-directory if it does not exist - - * src/core/fx_mixer.cpp: - reset mute-model in fxMixer::clear() - - * include/track.h: - * src/core/track.cpp: - - removed obsolete static members - - more simple QPen-initialization for not making Qt leak - - * include/combobox_model.h: - pass _default_constructed-parameter to base-class - - * src/gui/lfo_controller_dialog.cpp: - renamed constants so one-unit-compiling is possible - - * src/gui/widgets/envelope_and_lfo_view.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - do not duplicate constants - - * src/gui/widgets/group_box.cpp: - make sure LED's default-model is being deleted when changing model - - * src/core/plugin.cpp: - made initialization of dummy-plugin pixmap-loder static - - * src/core/mixer.cpp: - properly terminate worker-threads at mixer-destruction - - * src/core/main.cpp: - fixed various leaks - - * src/core/mmp.cpp: - replaced compat-code by proper code in multimediaProject::upgrade() - - * src/core/effect.cpp: - added missing initialization of m_processors member variable - - * src/core/instrument_functions.cpp: - removed obsolete constants - - * src/core/sample_buffer.cpp: - fixed broken logic when updating sample-data - - * src/core/automation_pattern.cpp: - in automationPattern::valueAt() check whether the time-map is empty - - * src/core/fx_mixer.cpp: - save/load mute-settings for FX-lines - - * src/core/peak_controller.cpp: - return default-value if there's no peak-effect - - * configure.in: - * Makefile.am: - * include/sample_buffer.h: - * src/core/sample_buffer.cpp: - removed support for SDL_sound-library as libsndfile and libvorbis do - everything we need - - * include/automatable_model.h: - * include/combobox_model.h: - * include/mv_base.h: - * include/piano_roll.h: - * src/core/base64.cpp: - * src/core/effect.cpp: - * src/core/engine.cpp: - * src/core/fx_mixer.cpp: - * src/core/instrument_functions.cpp: - * src/core/ladspa_manager.cpp: - * src/core/mv_base.cpp: - * src/gui/automation_editor.cpp: - * src/gui/main_window.cpp: - * src/gui/piano_roll.cpp: - * src/gui/widgets/combobox.cpp: - * src/gui/widgets/group_box.cpp: - * plugins/ladspa_effect/ladspa_effect.cpp: - fixed various leaks I found using Valgrind - -2008-06-30 Paul Giblock - - * plugins/ladspa_browser/ladspa_browser.cpp: - * include/automation_editor.h: - * src/gui/piano_roll.cpp: - * src/gui/fx_mixer_view.cpp: - * src/gui/widgets/controller_rack_view.cpp: - * src/gui/widgets/controller_view.cpp: - * src/gui/automation_editor.cpp: - * src/tracks/instrument_track.cpp: - Remove maximize and resize capability from many windows and set proper - minimum and intial sizes - -2008-06-29 Javier Serrano Polo - - * data/locale/ca.ts: - updated translation - -2008-06-29 Tobias Doerffel - - * include/track.h: - * include/sample_track.h: - * src/gui/widgets/effect_label.cpp: - * src/tracks/sample_track.cpp: - * src/core/sample_play_handle.cpp: - * src/core/track.cpp: - * Makefile.am: - finally resurrected sample-tracks - - * src/gui/automation_editor.cpp: - - improved drawing/erasing values - - fixed moving selected values - - * src/core/automation_pattern.cpp: - when drawing automation, do not overpaint border - - * data/themes/default/fx_mixer.png: - new icon at 32x32 px to make it scale better to 16x16 - -2008-06-29 Paul Giblock - - * plugins/sf2_player/sf2_player.cpp: - Initialize gain at 1.0 - - * src/core/automation_pattern.cpp: - - Correctly draw automation TCO for negative minValues. - - Add some shading - - * src/gui/controller_connection_dialog.cpp: - - Connect cancel button - - Make mapping function read-only for alpha release - - Initialize MIDI Controller name when adding a MIDI Controller - - * src/gui/widgets/tempo_sync_knob.cpp: - Make tempoSyncKnob really sync to tempo again - - * plugins/peak_controller_effect/peak_controller_effect.cpp: - * plugins/peak_controller_effect/peak_controller_effect_controls.cpp: - * plugins/peak_controller_effect/peak_controller_effect.h: - * include/peak_controller.h: - * src/core/peak_controller.cpp: - Fix loading/saving for peak controller - - * src/core/effect.cpp: - Correct comments - - * data/themes/default/style.css: - Make toolbar colors a little more clear - - * src/core/automation_pattern.cpp: - Save and load pattern position from project - - * include/automation_track.h: - * src/tracks/automation_track.cpp: - Allow dragging automatable views directly onto an automation-track - - * configure.in: - Fix LIBDIR for when people do not use --prefix - - * include/automation_editor.h: - * src/gui/automation_editor.cpp: - - Don't miss points when scribbling quickly - - Shift-Click to draw a line - - * include/lfo_controller.h: - * src/gui/lfo_controller_dialog.cpp: - * data/themes/default/lfo_controller_artwork.png: - Add LFO artwork (except it doesn't work for some odd reason) - - * plugins/stereo_matrix/stereomatrix_control_dialog.cpp: - * plugins/stereo_matrix/artwork.png: - Add StereoMatrix artwork - - * plugins/bit_invader/artwork.png: - Remove author name from artwork. No other artwork has author names. The - name on the main GUI makes LMMS looks less professional. AUTHORS. - - * plugins/patman/logo.png: - * plugins/stereo_matrix/artwork.png: - * plugins/audio_file_processor/logo.png: - * plugins/vestige/logo.png: - * plugins/spectrum_analyzer/log_x_axis.png: - * plugins/spectrum_analyzer/log_y_axis.png: - Update plugin artwork - - * plugins/live_tool/live_tool.cpp: - * src/gui/plugin_browser.cpp: - * src/gui/main_window.cpp: - * src/gui/automation_editor.cpp: - * src/gui/bb_editor.cpp: - * src/tracks/bb_track.cpp: - * src/core/mmp.cpp: - * data/locale/nl.ts: - * data/locale/it.ts: - * data/locale/ca.ts: - * data/locale/ru.ts: - * data/locale/de.ts: - * data/locale/sv.ts: - Rename Baseline to Bassline - -2008-06-28 Tobias Doerffel - - * plugins/Makefile.am: - * configure.in: - removed SingerBot-references - - * plugins/live_tool/live_tool.cpp: - * src/core/tool.cpp: - cleanups - - * src/gui/main_window.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/pattern.cpp: - * src/core/automation_pattern.cpp: - * data/themes/default/project_new_from_template.png: - * data/themes/default/project_new.png: - * data/themes/default/project_import.png: - * data/themes/default/project_open_recent.png: - * data/themes/default/edit_rename.png: - * data/themes/default/rename.png: - splitted "new project"-button and added "recently opened - project"-button - - * src/gui/main_window.cpp: - * src/gui/song_editor.cpp: - * src/tracks/instrument_track.cpp: - * data/themes/default/edit_draw.png: - * data/themes/default/add_bb_track.png: - * data/themes/default/edit_arrow.png: - * data/themes/default/stop.png: - * data/themes/default/mute_off_disabled.png: - * data/themes/default/mute_on_disabled.png: - * data/themes/default/style.css: - * data/themes/default/play.png: - * data/themes/default/mute_on.png: - * data/themes/default/record.png: - * data/themes/default/automation.png: - * data/themes/default/help.png: - * data/themes/default/sample_track.png: - * data/themes/default/track_op_menu_disabled.png: - * data/themes/default/edit_select.png: - * data/themes/default/effect_board.png: - * data/themes/default/mute_off.png: - * data/themes/default/pause.png: - * data/themes/default/bb_track.png: - * data/themes/default/add_automation.png: - * data/themes/default/edit_erase.png: - * data/themes/default/record_accompany.png: - * data/themes/default/edit_move.png: - * data/themes/default/add_sample_track.png: - * data/themes/default/songeditor.png: - * data/themes/default/fx_mixer.png: - improved artwork and maintoolbar - -2008-06-28 Paul Giblock - - * configure.in: - * src/core/config_mgr.cpp: - * src/core/ladspa_manager.cpp: - Search LIBDIR before any other directories - - * acinclude.m4: - Search $QTDIR before any other directories - - * data/themes/default/style.css: - Update CSS for new QToolBar support - -2008-06-28 Tobias Doerffel - - * src/core/song.cpp: - * src/core/project_renderer.cpp: - - confirm overwrite when exporting file - - set filter when selecting output-file for export - - * include/audio_file_device.h: - * include/audio_file_ogg.h: - * include/audio_file_wave.h: - * include/project_renderer.h: - * src/core/audio/audio_file_device.cpp: - * src/core/audio/audio_file_ogg.cpp: - * src/core/audio/audio_file_wave.cpp: - * src/core/main.cpp: - * src/core/project_renderer.cpp: - * src/gui/export_project_dialog.cpp: - added support for exporting WAVE-files with 32-bit-float format - - * include/automation_editor.h: - fixed node-name - - * Makefile.am: - * include/automation_pattern.h: - * include/detuning_helper.h: - * include/inline_automation.h: - * include/note_play_handle.h: - * src/core/automation_pattern.cpp: - * src/core/inline_automation.cpp: - * src/core/note.cpp: - * src/core/note_play_handle.cpp: - * src/core/track.cpp: - * src/gui/piano_roll.cpp: - made note-detuning-automation work by making automationPatterns also - work without a parent-track and writing a generic inlineAutomation-class - - * src/gui/file_browser.cpp: - fixed crash when encountering invalid samplePlayHandle while - previewing (closes #2004875) - -2008-06-27 Tobias Doerffel - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - added panning-knob to track-settings-widget - - * include/fx_mixer.h: - * include/fx_mixer_view.h: - * src/core/fx_mixer.cpp: - * src/gui/fx_mixer_view.cpp: - added mute-button for each FX-line - - * include/led_checkbox.h: - * src/gui/peak_controller_dialog.cpp: - * src/gui/widgets/instrument_function_views.cpp: - * src/gui/widgets/ladspa_control_view.cpp: - * src/gui/widgets/led_checkbox.cpp: - made enumeration match current coding style - - * src/core/track.cpp: - * src/core/plugin.cpp: - * Makefile.am: - cleanups - -2008-06-25 Tobias Doerffel - - * src/tracks/instrument_track.cpp: - overwrite-confirm when saving instrument-settings - - * src/core/effect_chain.cpp: - when clear()ing, also disable FX-chain (closes #1994482) - - * src/core/song.cpp: - always load FX-mixer-settings even if there's no GUI - - * src/core/track_container.cpp: - fixed broken clearAllTracks() - - * include/track.h: - * include/pattern.h: - * include/bb_track.h: - * src/tracks/bb_track.cpp: - * src/tracks/pattern.cpp: - * src/core/track.cpp: - name-property in trackContentObject-class - - * include/automation_pattern.h: - * src/core/automation_pattern.cpp: - - added submenu for removing connections - - made automation-pattern rename working - - * src/core/automation_pattern.cpp: - fixed loading song-global automation - -2008-06-24 Tobias Doerffel - - * plugins/vibed/vibrating_string.h: - * plugins/vibed/nine_button_selector.h: - * plugins/vibed/vibed.h: - * plugins/vibed/vibrating_string.cpp: - * plugins/vibed/string_container.h: - * plugins/vibed/nine_button_selector.cpp: - * plugins/vibed/Makefile.am: - * plugins/vibed/vibed.cpp: - * plugins/singerbot/singerbot.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/flp_import/flp_import.cpp: - * include/note_play_handle.h: - * src/tracks/instrument_track.cpp: - * src/core/note_play_handle.cpp: - * src/core/audio/audio_device.cpp: - * src/core/audio/audio_oss.cpp: - - fixed wrong config.h-inclusion and deprecated macro-names from - config.h - makes Vibed plugin work again (closes #2000590) - - various coding-style fixes - - * plugins/bit_invader/bit_invader.cpp: - * plugins/vibed/vibed.cpp: - fixed plugin-instantiation - - * include/graph.h: - * src/gui/widgets/graph.cpp: - * plugins/vibed/vibed.cpp: - * plugins/vibed/vibed.h: - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/bit_invader.h: - use int instead of Uint32 - - * plugins/plucked_string_synth/logo.png: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/plucked_string_synth/plucked_string_synth.h: - * plugins/plucked_string_synth/Makefile.am: - * plugins/plucked_string_synth/artwork.png: - * plugins/polyb302/polyb302.h: - * plugins/polyb302/logo.png: - * plugins/polyb302/Makefile.am: - * plugins/polyb302/polyb302.cpp: - * plugins/polyb302/artwork.png: - removed obsolete plugins - - * plugins/spectrum_analyzer/spectrumanalyzer_control_dialog.cpp: - * plugins/spectrum_analyzer/spectrum_analyzer.cpp: - * plugins/spectrum_analyzer/Makefile.am: - * plugins/spectrum_analyzer/spectrum_analyzer.h: - * configure.in: - use float-based FFTW-library - - * Makefile.am: - * include/peak_controller.h: - * include/tempo_sync_knob.h: - fixes for win32-build - -2008-06-23 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_controls.cpp: - * plugins/ladspa_effect/ladspa_controls.h: - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/lb302/lb302.cpp: - * plugins/vibed/nine_button_selector.cpp: - * plugins/triple_oscillator/triple_oscillator.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/stk/mallets/mallets.cpp: - * plugins/kicker/kicker.cpp: - * plugins/midi_import/midi_import.cpp: - * include/effect.h: - * include/meter_model.h: - * include/track.h: - * include/automatable_model.h: - * include/instrument_functions.h: - * include/ladspa_control.h: - * include/audio_port.h: - * include/automation_pattern.h: - * include/effect_view.h: - * include/graph.h: - * include/song.h: - * include/pattern.h: - * include/envelope_and_lfo_parameters.h: - * include/song_editor.h: - * include/journalling_object.h: - * include/automatable_model_view.h: - * include/surround_area.h: - * include/mv_base.h: - * include/controller_view.h: - * include/effect_controls.h: - * include/midi_port.h: - * include/automation_editor.h: - * include/effect_chain.h: - * include/automation_track.h: - * include/track_container.h: - * include/plugin_view.h: - * src/gui/piano_roll.cpp: - * src/gui/track_container_view.cpp: - * src/gui/controller_dialog.cpp: - * src/gui/automatable_model_view.cpp: - * src/gui/effect_control_dialog.cpp: - * src/gui/fx_mixer_view.cpp: - * src/gui/song_editor.cpp: - * src/gui/widgets/ladspa_control_view.cpp: - * src/gui/widgets/graph.cpp: - * src/gui/widgets/combobox.cpp: - * src/gui/widgets/midi_port_menu.cpp: - * src/gui/widgets/controller_rack_view.cpp: - * src/gui/widgets/instrument_sound_shaping_view.cpp: - * src/gui/widgets/envelope_and_lfo_view.cpp: - * src/gui/widgets/knob.cpp: - * src/gui/widgets/instrument_function_views.cpp: - * src/gui/widgets/instrument_midi_io_view.cpp: - * src/gui/widgets/automatable_slider.cpp: - * src/gui/widgets/group_box.cpp: - * src/gui/widgets/lcd_spinbox.cpp: - * src/gui/widgets/controller_view.cpp: - * src/gui/widgets/fader.cpp: - * src/gui/widgets/effect_rack_view.cpp: - * src/gui/widgets/tempo_sync_knob.cpp: - * src/gui/widgets/automatable_button.cpp: - * src/gui/widgets/meter_dialog.cpp: - * src/gui/automation_editor.cpp: - * src/tracks/automation_track.cpp: - * src/tracks/sample_track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * src/core/effect_chain.cpp: - * src/core/project_journal.cpp: - * src/core/midi/midi_controller.cpp: - * src/core/midi/midi_port.cpp: - * src/core/note_play_handle.cpp: - * src/core/song.cpp: - * src/core/track_container.cpp: - * src/core/bb_track_container.cpp: - * src/core/journalling_object.cpp: - * src/core/automatable_model.cpp: - * src/core/audio/audio_port.cpp: - * src/core/sample_play_handle.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/mmp.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/meter_model.cpp: - * src/core/instrument_functions.cpp: - * src/core/track.cpp: - * src/core/ladspa_control.cpp: - * src/core/note.cpp: - * src/core/piano.cpp: - * src/core/surround_area.cpp: - * src/core/mv_base.cpp: - * src/core/automation_pattern.cpp: - * src/core/fx_mixer.cpp: - * data/themes/default/add_automation.png: - - completely new automation-system with automation-tracks and - automation-patterns as well as song-global automation - - made modelView take a QWidget-pointer argument - - trackContentObject-ctor now calls track::addTCO() directly - - optimize various loops to use iterators/const_iterators instead of - a running index variable - - drag'n'drop doesn't fool around with pointers anymore - instead use - unique journalling-IDs - - moved drag'n'drop handling code from knob to automatableModelView so - that all controls can benefit from that - -2008-06-23 Paul Giblock - - * include/lfo_controller.h: - * src/gui/lfo_controller_dialog.cpp: - * src/core/lfo_controller.cpp: - * data/themes/default/lfo_d100_active.png: - * data/themes/default/lfo_d100_inactive.png: - * data/themes/default/lfo_x100_active.png: - * data/themes/default/lfo_x100_inactive.png: - * data/themes/default/lfo_x1_active.png: - * data/themes/default/lfo_x1_inactive.png: - Add multiplier to lfo-controller and fix tempo-sync knob. Breaks old - projects that use LFO, but shouldn't matter since 0.4 hasn't been - released - - * src/gui/widgets/tempo_sync_knob.cpp: - Allow tempo-sync knob to work with ranges other than [0..1] - - * src/core/envelope_and_lfo_parameters.cpp: - Remove hardcoded literal, use already defined const int instead - - * data/projects/templates/CR8000.mpt: - * data/projects/templates/TR808.mpt: - Added two drumsynth templates - -2008-06-20 Tobias Doerffel - - * include/automatable_model_view.h: - * src/core/piano.cpp: - full context-menu for piano-basenote so it can be automated as well as - controlled via controller - - * src/gui/widgets/knob.cpp: - - when linking knobs via Shift+Drag do not use pointer to model as - drag-data rather than model-ID which can be resolved via - project-journal - - fixed displayValue() - - * Makefile.am: - * include/knob.h: - * include/volume_knob.h: - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/vibed/vibed.h: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * src/tracks/instrument_track.cpp: - * src/gui/widgets/knob.cpp: - * src/gui/widgets/volume_knob.cpp: - removed volumeKnob-class and added volumeKnob-property to knob-class - instead - - * plugins/flp_import/flp_import.cpp: - * include/controller_connection.h: - * include/lcd_spinbox.h: - * include/controller.h: - * include/automatable_model.h: - * include/instrument_track.h: - * include/instrument_functions.h: - * include/note_play_handle.h: - * include/instrument_sound_shaping.h: - * include/basic_filters.h: - * include/sample_track.h: - * include/surround_area.h: - * src/core/note_play_handle.cpp: - * src/core/automatable_model.cpp: - * src/core/main.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/piano.cpp: - * src/core/surround_area.cpp: - reduced header-dependencies and various cleanups - - * include/tempo_sync_knob.h: - * src/gui/widgets/tempo_sync_knob.cpp: - - do not re-implement private event-handlers and use knob's signals - instead - - fixed crash when closing meterDialog and choosing custom-sync - afterwards - - * src/gui/fx_mixer_view.cpp: - better initial position of FX-mixer view - - * src/gui/song_editor.cpp: - removed obsolete headers - - * include/setup_dialog.h: - * src/gui/bb_editor.cpp: - * src/gui/main_window.cpp: - * src/gui/setup_dialog.cpp: - * src/gui/song_editor.cpp: - * src/gui/widgets/controller_rack_view.cpp: - * src/gui/widgets/knob.cpp: - - removed obsolete non-MDI-mode - - removed classical knob-usability - - removed show-wizard-after-upgrade setting - - other cleanups - -2008-06-20 Paul Giblock - - * src/core/piano.cpp: - make SVN compile again - -2008-06-20 Paul Wayper - - * src/core/piano.cpp: - added Doxygen documentation. - -2008-06-19 Paul Wayper - - * src/core/track.cpp: - added Doxygen documentation. - -2008-06-16 Tobias Doerffel - - * plugins/Makefile.am: - * configure.in: - added libfftw3-detection - - * plugins/bass_booster/bassbooster_control_dialog.cpp: - * plugins/bass_booster/artwork.png: - * plugins/peak_controller_effect/peak_controller_effect_control_dialog.cpp: - * plugins/peak_controller_effect/artwork.png: - added metal-brushed background-artwork - - * src/tracks/instrument_track.cpp: - added unit to pitch-knob - -2008-06-15 Paul Giblock - - * plugins/stereo_matrix/stereo_matrix.cpp: - update author email address - - * src/gui/widgets/graph.cpp: - * src/gui/lfo_controller_dialog.cpp: - code cleanup - - * src/gui/widgets/fade_button.cpp: - * src/tracks/instrument_track.cpp: - improve appearance of fade buttons - - * include/tool_button.h: - * src/gui/widgets/tool_button.cpp: - * src/gui/lmms_style.cpp: - * data/themes/default/style.css: - remove styling, rely on QStyle and stylesheets now - - * include/song_editor.h: - * include/main_window.h: - * include/timeline.h: - * src/gui/main_window.cpp: - * src/gui/song_editor.cpp: - * src/gui/widgets/nstate_button.cpp: - * src/core/timeline.cpp: - - * data/themes/default/main_toolbar_bg.png: - * data/themes/default/toolbar_bg.png: - Enlarge images for resizable toolbars - quick fix. Could just clamp the - texture at the bottom - -2008-06-15 Tobias Doerffel - - * include/knob.h: - * src/gui/widgets/knob.cpp: - - cache pixmap - - only redraw if angle has changed by more than 3 degrees - - cleanups - - * src/core/midi/midi_alsa_seq.cpp: - cleanups and small optimizations - - * include/instrument_midi_io_view.h: - * include/instrument_track.h: - * include/midi_port.h: - * src/core/midi/midi_port.cpp: - * src/tracks/instrument_track.cpp: - * src/gui/widgets/instrument_midi_io_view.cpp: - refactored midiPortMenu-creation and -management - fixes crash when - removing track which had MIDI-in enabled and enabled MIDI-in for - another track afterwards - - * src/gui/file_browser.cpp: - do not load MIDI-settings when loading preset as this might break - existing instrument tracks - - * include/automatable_model.h: - * src/tracks/instrument_track.cpp: - directly handle MIDI-pitch-bend events - - * include/instrument_track.h: - * src/core/note_play_handle.cpp: - * src/tracks/instrument_track.cpp: - - added pitch-knob to instrument-track - - fixed activity indicator - - * plugins/stk/voices/flute/flute_model.cpp: - * plugins/stk/voices/flute/flute_model.h: - * plugins/stk/voices/flute/flute_instrument.cpp: - * plugins/stk/voices/resonate/resonate_model.cpp: - * plugins/stk/voices/resonate/resonate_model.h: - * plugins/stk/voices/resonate/resonate_instrument.cpp: - * plugins/stk/voices/include/stk_instrument.h: - * plugins/stk/voices/include/stk_processor.h: - * plugins/stk/voices/include/stk_model.h: - * plugins/stk/voices/include/stk_voice.h: - * plugins/stk/voices/wurley/wurley_instrument.cpp: - * plugins/stk/voices/wurley/wurley_model.cpp: - * plugins/stk/voices/wurley/wurley_model.h: - * plugins/stk/voices/src/stk_model.cpp: - * plugins/stk/voices/percflute/percflute_model.h: - * plugins/stk/voices/percflute/percflute_instrument.cpp: - * plugins/stk/voices/percflute/percflute_model.cpp: - * plugins/stk/voices/rhodey/rhodey_model.h: - * plugins/stk/voices/rhodey/rhodey_instrument.cpp: - * plugins/stk/voices/rhodey/rhodey_model.cpp: - * plugins/stk/voices/tubebell/tubebell_model.cpp: - * plugins/stk/voices/tubebell/tubebell_model.h: - * plugins/stk/voices/tubebell/tubebell_instrument.cpp: - * plugins/stk/voices/bowed/bowed_model.cpp: - * plugins/stk/voices/bowed/bowed_model.h: - * plugins/stk/voices/bowed/bowed_instrument.cpp: - * plugins/stk/voices/clarinet/clarinet_model.cpp: - * plugins/stk/voices/clarinet/clarinet_model.h: - * plugins/stk/voices/clarinet/clarinet_instrument.cpp: - * plugins/stk/voices/moog/moog_model.cpp: - * plugins/stk/voices/moog/moog_model.h: - * plugins/stk/voices/moog/moog_instrument.cpp: - * plugins/stk/voices/metal/metal_model.cpp: - * plugins/stk/voices/metal/metal_model.h: - * plugins/stk/voices/metal/metal_instrument.cpp: - * plugins/stk/voices/b3/b3_model.cpp: - * plugins/stk/voices/b3/b3_model.h: - * plugins/stk/voices/b3/b3_instrument.cpp: - * plugins/stk/voices/blow_hole/blow_hole_model.h: - * plugins/stk/voices/blow_hole/blow_hole_instrument.cpp: - * plugins/stk/voices/blow_hole/blow_hole_model.cpp: - * plugins/stk/voices/brass/brass_model.h: - * plugins/stk/voices/brass/brass_instrument.cpp: - * plugins/stk/voices/brass/brass_model.cpp: - * plugins/stk/voices/fmvoices/fmvoices_model.h: - * plugins/stk/voices/fmvoices/fmvoices_instrument.cpp: - * plugins/stk/voices/fmvoices/fmvoices_model.cpp: - * plugins/stk/voices/bandedwg/bandedwg_model.h: - * plugins/stk/voices/bandedwg/bandedwg_instrument.cpp: - * plugins/stk/voices/bandedwg/bandedwg_model.cpp: - * plugins/stk/voices/blow_bottle/blow_bottle_model.h: - * plugins/stk/voices/blow_bottle/blow_bottle_instrument.cpp: - * plugins/stk/voices/blow_bottle/blow_bottle_model.cpp: - made STK-voices-plugins compile after they've not been maintained for - a while - - * include/pixmap_button.h: - * src/gui/widgets/pixmap_button.cpp: - removed removed obsolete ctrlClick() signal - - * include/track_container.h: - * src/core/track_container.cpp: - removed obsolete setMutedOfAllTracks() method - - * src/core/song.cpp: - - lock mixer while loading project - fixes crashes when loading projects - with FX-mixer settings - - update BB-track-container after creating a new project - fixes - non-existing TCOs (i.e. patterns) in BB-Editor in new projects - - * include/config_mgr.h: - added missing include - - * src/tracks/bb_track.cpp: - unregister BB-track-view from BB-editor at destruction - fixes crash - when removing BB-tracks - - * src/core/bb_track_container.cpp: - cleanups and more optimized loops - - * include/track.h: - * src/core/track.cpp: - - fixed issue when moving BB-tracks up/down where actual BB-TCOs were - not moved (closes #1994468) - - in trackContentObjectView and trackView, handle deletion of models - more gracefully - -2008-06-14 Tobias Doerffel - - * plugins/spectrum_analyzer/spectrum_analyzer.cpp: - don't apply window-function to data as this seems to make things only - even worse - - * plugins/spectrum_analyzer/log_x_axis.png: - * plugins/spectrum_analyzer/log_y_axis.png: - * plugins/spectrum_analyzer/background.png: - * plugins/spectrum_analyzer/spectrum_background.png: - * plugins/spectrum_analyzer/spectrum_background_plain.png: - * plugins/spectrum_analyzer/spectrumanalyzer_control_dialog.cpp: - * plugins/spectrum_analyzer/spectrum_analyzer.cpp: - * plugins/spectrum_analyzer/spectrumanalyzer_controls.cpp: - * plugins/spectrum_analyzer/spectrumanalyzer_control_dialog.h: - labeled axes and correct logarithmic view - - * plugins/spectrum_analyzer/background.png: - * plugins/spectrum_analyzer/spectrum_background.png: - * plugins/spectrum_analyzer/spectrum_background_plain.png: - * plugins/spectrum_analyzer/spectrumanalyzer_control_dialog.cpp: - * plugins/spectrum_analyzer/spectrum_analyzer.h: - improved appearence of Spectrum Analzyer - - * configure.in: - * plugins/Makefile.am: - * plugins/spectrum_analyzer/Makefile.am: - * plugins/spectrum_analyzer/logo.png: - * plugins/spectrum_analyzer/spectrum_analyzer.h: - * plugins/spectrum_analyzer/spectrum_analyzer.cpp: - * plugins/spectrum_analyzer/spectrumanalyzer_controls.h: - * plugins/spectrum_analyzer/spectrumanalyzer_controls.cpp: - * plugins/spectrum_analyzer/spectrumanalyzer_control_dialog.h: - * plugins/spectrum_analyzer/spectrumanalyzer_control_dialog.cpp: - added initial version of spectrum analyzer - very basic at the moment! - - * plugins/bass_booster/bass_booster.cpp: - * plugins/bass_booster/bass_booster.h: - * plugins/bass_booster/bassbooster_controls.h: - * plugins/ladspa_effect/ladspa_controls.h: - * plugins/peak_controller_effect/peak_controller_effect_controls.h: - * plugins/stereo_enhancer/stereoenhancer_controls.h: - * plugins/stereo_matrix/stereomatrix_controls.h: - * plugins/vst_effect/vst_effect_controls.h: - * include/dummy_effect.h: - * include/effect_controls.h: - changed return-type of effectControls::getControlCount() - -2008-06-12 Tobias Doerffel - - * include/project_renderer.h: - * src/gui/dialogs/export_project.ui: - * src/gui/export_project_dialog.cpp: - * src/core/audio/audio_file_ogg.cpp: - * src/core/main.cpp: - * src/core/project_renderer.cpp: - improved support for different file-formats when exporting and fixed - bug which made LMMS crash when exporting to OGG-file - -2008-06-10 Tobias Doerffel - - * src/core/song.cpp: - fixed loading files in no-GUI mode - - * include/mixer.h: - * src/core/audio/audio_device.cpp: - * src/core/mixer.cpp: - * src/core/project_renderer.cpp: - don't use fifoWriter when rendering as we do not have realtime issues - here - fixes lockups on various systems when exporting project - - * plugins/sf2_player/sf2_player.cpp: - enabled LCD-Spinboxes for easily switching banks/patches - I know that - this way you can select banks/patches that do not exist but opening - patch-dialog each time is much more inconvenient - maybe we can - subclass lcdSpinBox one day so that it automatically "skips" wholes - when scrolling - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - removed obsolete instrumentTrackView::updateName() and made - track-button update on name-changes - -2008-06-10 Paul Giblock - - * plugins/sf2_player/artwork.png: - * plugins/sf2_player/chorus_off.png: - * plugins/sf2_player/chorus_on.png: - * plugins/sf2_player/fileselect_off.png: - * plugins/sf2_player/fileselect_on.png: - * plugins/sf2_player/patches_on.png: - * plugins/sf2_player/patches_off.png: - * plugins/sf2_player/reverb_off.png: - * plugins/sf2_player/reverb_on.png: - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - * data/themes/default/style.css: - * data/themes/default/lcd_21pink.png: - integrate new sf2 artwork, for the most part at least - -2008-06-09 Tobias Doerffel - - * src/gui/main_window.cpp: - also show *.xiz files in preset-browser - - * src/gui/file_browser.cpp: - classify .xml-files always as presets and do not examine them more - detailed - also improves LMMS-startup-times - - * Makefile.am: - added a few files to LMMS-headers - -2008-06-08 Paul Giblock - - * src/gui/widgets/graph.h: - * src/gui/widgets/graph.cpp: - - Fix graph widget "scrolling" - - Add styles so it can be drawn un-interpolated - - * include/mv_base.h: - * src/core/mv_base.cpp: - Add recursive fullDisplayName function - - * include/combobox_model.h: - * src/gui/widgets/automatable_button.cpp: - * src/gui/widgets/combobox.cpp: - * src/gui/widgets/tempo_sync_knob.cpp: - * src/gui/widgets/effect_view.cpp: - * src/gui/lfo_controller_dialog.cpp: - * src/core/midi/midi_port.cpp: - * src/core/fx_mixer.cpp: - * src/core/lfo_controller.cpp: - * src/core/effect.cpp: - extend more models and views for displayName - - * include/instrument.h: - * src/gui/widgets/instrument_sound_shaping_view.cpp: - * src/gui/widgets/envelope_and_lfo_view.cpp: - * src/gui/widgets/instrument_function_views.cpp: - * src/gui/widgets/instrument_midi_io_view.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/instrument_functions.cpp: - * src/core/instrument.cpp: - extend instrument stuff for displayName - - * include/controller_connection_dialog.h: - * src/gui/controller_connection_dialog.cpp: - improve interface slightly - - * plugins/bit_invader/bit_invader.cpp: - change graph style mode when toggling interpolation - - * plugins/peak_controller_effect: - * plugins/peak_controller_effect/peak_controller_effect_control_dialog.cpp: - * plugins/peak_controller_effect/peak_controller_effect.cpp: - * plugins/peak_controller_effect/logo.png: - * plugins/peak_controller_effect/peak_controller_effect_controls.cpp: - * plugins/peak_controller_effect/peak_controller_effect_control_dialog.h: - * plugins/peak_controller_effect/peak_controller_effect.h: - * plugins/peak_controller_effect/peak_controller_effect_controls.h: - * plugins/peak_controller_effect/Makefile.am: - * plugins/Makefile.am: - * include/peak_controller.h: - * include/controller.h: - * include/automatable_model.h: - * src/gui/peak_controller_dialog.cpp: - * src/core/peak_controller.cpp: - * src/core/controller.cpp: - * configure.in: - * Makefile.am: - - Very first implementation of peak-controller - - Create one by adding it in the effect-chain, then connecting a widget to - the controller - - There is no sample-exactness, smoothing, or anything like that yet - -2008-06-08 Tobias Doerffel - - * plugins/ladspa_effect/tap/tap_deesser.c: - * plugins/ladspa_effect/tap/tap_sigmoid.c: - * plugins/ladspa_effect/tap/tap_doubler.c: - * plugins/ladspa_effect/tap/ladspa-local.h: - * plugins/ladspa_effect/tap/tap_eqbw.c: - * plugins/ladspa_effect/tap/tap_pinknoise.c: - * plugins/ladspa_effect/tap/tap_chorusflanger.c: - * plugins/ladspa_effect/tap/tap_eq.c: - * plugins/ladspa_effect/tap/tap_limiter.c: - * plugins/ladspa_effect/tap/ladspa.h: - * plugins/ladspa_effect/tap/tap_vibrato.c: - * plugins/ladspa_effect/tap/tap_autopan.c: - * plugins/ladspa_effect/tap/tap_pitch.c: - * plugins/ladspa_effect/tap/tap_dynamics_st.c: - * plugins/ladspa_effect/tap/tap_echo.c: - * plugins/ladspa_effect/tap/tap_tremolo.c: - * plugins/ladspa_effect/tap/tap_tubewarmth.c: - * plugins/ladspa_effect/tap/tap_dynamics_m.c: - * plugins/ladspa_effect/tap/Makefile.am: - * plugins/ladspa_effect/tap/tap_reflector.c: - * plugins/ladspa_effect/tap/tap_reverb.c: - * plugins/ladspa_effect/tap/tap_rotspeak.c: - * plugins/ladspa_effect/caps/basics.h: - * plugins/ladspa_effect/caps/Makefile.am: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_base/lvsl_server.cpp: - * plugins/vst_base/communication.h: - * plugins/midi_import/midi_import.h: - * include/effect.h: - * include/midi_dummy.h: - * include/endian_handling.h: - * include/track.h: - * include/note.h: - * include/engine.h: - * include/sweep_oscillator.h: - * include/debug.h: - * include/midi_alsa_raw.h: - * include/config_mgr.h: - * include/import_filter.h: - * include/audio_file_wave.h: - * include/mixer.h: - * include/audio_file_ogg.h: - * include/ladspa_manager.h: - * include/ladspa_control.h: - * include/sample_buffer.h: - * include/fx_mixer.h: - * include/nstate_button.h: - * include/audio_pulseaudio.h: - * include/clipboard.h: - * include/audio_sdl.h: - * include/micro_timer.h: - * include/midi_event_processor.h: - * include/audio_jack.h: - * include/piano_roll.h: - * include/volume.h: - * include/oscillator.h: - * include/export.h: - * include/midi_alsa_seq.h: - * include/tool.h: - * include/setup_dialog.h: - * include/tab_bar.h: - * include/audio_device.h: - * include/audio_oss.h: - * include/audio_alsa.h: - * src/gui/piano_roll.cpp: - * src/gui/main_window.cpp: - * src/gui/song_editor.cpp: - * src/gui/setup_dialog.cpp: - * src/gui/about_dialog.cpp: - * src/tracks/instrument_track.cpp: - * src/core/plugin.cpp: - * src/core/song.cpp: - * src/core/config_mgr.cpp: - * src/core/audio/audio_oss.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/main.cpp: - * src/core/mmp.cpp: - * src/core/ladspa_manager.cpp: - * src/core/ladspa_control.cpp: - * src/core/sample_buffer.cpp: - * Makefile.am: - use lmmsconfig.h rather than config.h and use prefixed macro-names - - * acinclude.m4: - * configure.in: - create include/lmmsconfig.h which contains prefixed config.h defines - -2008-06-07 Tobias Doerffel - - * src/core/song.cpp: - reset m_modified after loading a project, creating a new one or saving - - * src/core/song.cpp: - in song::setModified() only call mainWindow::resetWindowTitle() when - being called with GUI-thread affinity - - * include/automatable_model.h: - * src/core/automatable_model.cpp: - * src/core/automation_pattern.cpp: - added fast and more leight-weight setAutomatedValue() which omits - things like journalling - makes things faster and doesn't introduce - threading-problems - - * src/core/mmp.cpp: - handle renamed midi-node ("midi" -> "midiport") - - * src/tracks/instrument_track.cpp: - fixed MIDI-IO when using raw MIDI client - - * plugins/midi_import/midi_import.cpp: - * include/song.h: - added support for importing time-signature settings - - * Makefile.am: - * plugins/midi_import/midi_import.cpp: - * plugins/vestige/vestige.cpp: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_base/lvsl_server.cpp: - * include/meter_model.h: - * include/midi.h: - * src/core/note_play_handle.cpp: - * src/core/piano.cpp: - * src/core/midi/midi_alsa_seq.cpp: - * src/core/midi/midi_client.cpp: - * src/core/midi/midi_controller.cpp: - * src/core/midi/midi_port.cpp: - * src/tracks/instrument_track.cpp: - * src/gui/controller_connection_dialog.cpp: - * src/gui/piano_roll.cpp: - made MidiEventTypes-enum conform coding-style, i.e. MidiNoteOn instead - of NOTE_ON etc. - - * include/controller_connection_dialog.h: - * include/instrument_midi_io_view.h: - * include/instrument_track.h: - * include/midi_alsa_raw.h: - * include/midi_alsa_seq.h: - * include/midi_client.h: - * include/midi_controller.h: - * include/midi_io_model.h: - * include/midi_oss.h: - * include/midi_port.h: - * include/midi_port_menu.h: - * src/core/note_play_handle.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/song.cpp: - * src/core/midi/midi_client.cpp: - * src/core/midi/midi_controller.cpp: - * src/core/midi/midi_port.cpp: - * src/core/midi/midi_io_model.cpp: - * src/core/midi/midi_alsa_seq.cpp: - * src/gui/piano_roll.cpp: - * src/gui/controller_connection_dialog.cpp: - * src/gui/widgets/instrument_midi_io_view.cpp: - * src/tracks/instrument_track.cpp: - * Makefile.am: - rewrote management of MIDI-ports and MIDI-port subscriptions - now - it's central and easy to use - -2008-06-06 Tobias Doerffel - - * include/note.h: - * include/serializing_object.h: - * include/instrument_track.h: - * include/sample_buffer.h: - * include/journalling_object.h: - * src/gui/automation_editor.cpp: - * src/core/serializing_object.cpp: - * src/core/journalling_object.cpp: - * src/core/note.cpp: - * Makefile.am: - splitted basic functionality of journallingObject into - serializingObject so that creating note objects, notePlayHandles etc. - does not have all the journalling-overhead (assigning/freeing ID etc.) - -2008-06-06 Paul Giblock - - * include/knob.h: - * include/automatable_slider.h: - * include/controller_connection.h: - * include/midi_controller.h: - * include/automatable_model.h: - * include/automatable_button.h: - * include/tempo_sync_knob.h: - * include/controller_connection_dialog.h: - * include/pixmap_button.h: - * include/automatable_model_view.h: - * include/mv_base.h: - * include/volume_knob.h: - * src/gui/automatable_model_view.cpp: - * src/gui/controller_connection_dialog.cpp: - * src/gui/widgets/knob.cpp: - * src/gui/widgets/automatable_slider.cpp: - * src/gui/widgets/group_box.cpp: - * src/gui/widgets/lcd_spinbox.cpp: - * src/gui/widgets/tempo_sync_knob.cpp: - * src/gui/widgets/automatable_button.cpp: - * src/core/midi/midi_controller.cpp: - * src/core/automatable_model.cpp: - * src/core/controller_connection.cpp: - - add support for sequenced midi in midi-controllers - - add displayName field to model / autoModel for descriptive model trees - - use displayName for midiController and contextMenus - - * src/core/ladspa_control.cpp: - * plugins/lb302/lb302.cpp: - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/bass_booster/bassbooster_control_dialog.cpp: - * plugins/bass_booster/bassbooster_controls.cpp: - * plugins/stereo_matrix/stereomatrix_control_dialog.cpp: - * plugins/stereo_matrix/stereomatrix_controls.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/vibed/nine_button_selector.cpp: - * plugins/vibed/vibed.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/stereo_enhancer/stereoenhancer_control_dialog.cpp: - * plugins/stereo_enhancer/stereoenhancer_controls.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/kicker/kicker.cpp: - * plugins/stk/mallets/mallets.cpp: - * plugins/triple_oscillator/triple_oscillator.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - - Update plugins to use displayName for child widgets - - Still need to do this to all of LMMS core - - * include/effect_lib.h: - * src/core/lfo_controller.cpp: - Fix compile time warnings - - * include/automatable_model.h: - * include/instrument_track.h: - * include/controller_connection_dialog.h: - * src/gui/controller_connection_dialog.cpp: - * src/tracks/instrument_track.cpp: - Test to see if we can now generate reasonable midi-port names. We can, - the feature is very beta right now (no screenupdating, loading, etc..) - -2008-06-05 Tobias Doerffel - - * include/track.h: - * include/track_container_view.h: - * src/core/track.cpp: - * src/gui/track_container_view.cpp: - remove track from within slot in trackContainerView for not deleting - object inside its own method - fixes Qt-warning and closes #1981812 - - * src/tracks/instrument_track.cpp: - when freeing instrument-window, also free view immediately - fixes - crash when removing instrument-track while instrument-track window was - open - - * include/automatable_model.h: - * include/automation_editor.h: - * src/gui/piano_roll.cpp: - * src/gui/widgets/graph.cpp: - * src/gui/widgets/knob.cpp: - * src/gui/widgets/fader.cpp: - * src/gui/automation_editor.cpp: - fixed various GCC-warnings - -2008-06-05 Paul Giblock - - * include/automatable_model.h: - * include/mv_base.h: - * src/gui/automatable_model_view.cpp: - * src/gui/widgets/knob.cpp: - add setDisplayName to model, but doesn't work right for some reason - -2008-06-05 Tobias Doerffel - - * include/note.h: - * include/note_play_handle.h: - removed obsolete FASTCALL-attributes - - * include/project_journal.h: - * src/core/project_journal.cpp: - * src/core/song.cpp: - heavily optimized journal-cleanup - project unloading is now - unbelievable fast! - -2008-06-05 Paul Giblock - - * data/themes/default/style.css: - fix check-marks on menus. They used to all appear checked no matter what - -2008-06-05 Tobias Doerffel - - * include/track.h: - * src/core/track.cpp: - re-arranged mute- and solo-buttons - - * plugins/ladspa_effect/tap/tap_deesser.c: - * plugins/ladspa_effect/tap/tap_reverb.h: - * plugins/ladspa_effect/tap/tap_sigmoid.c: - * plugins/ladspa_effect/tap/tap_doubler.c: - * plugins/ladspa_effect/tap/tap_eqbw.c: - * plugins/ladspa_effect/tap/tap_pinknoise.c: - * plugins/ladspa_effect/tap/tap_reverb_presets.h: - * plugins/ladspa_effect/tap/tap_chorusflanger.c: - * plugins/ladspa_effect/tap/ladspa.h: - * plugins/ladspa_effect/tap/tap_limiter.c: - * plugins/ladspa_effect/tap/tap_utils.h: - * plugins/ladspa_effect/tap/tap_eq.c: - * plugins/ladspa_effect/tap/tap_vibrato.c: - * plugins/ladspa_effect/tap/tap_autopan.c: - * plugins/ladspa_effect/tap/tap_pitch.c: - * plugins/ladspa_effect/tap/CREDITS: - * plugins/ladspa_effect/tap/README: - * plugins/ladspa_effect/tap/tap_dynamics_st.c: - * plugins/ladspa_effect/tap/tap_echo.c: - * plugins/ladspa_effect/tap/tap_tremolo.c: - * plugins/ladspa_effect/tap/tap_dynamics_presets.h: - * plugins/ladspa_effect/tap/tap_tubewarmth.c: - * plugins/ladspa_effect/tap/COPYING: - * plugins/ladspa_effect/tap/tap_dynamics_m.c: - * plugins/ladspa_effect/tap/Makefile.am: - * plugins/ladspa_effect/tap/tap_reflector.c: - * plugins/ladspa_effect/tap/tap_reverb.c: - * plugins/ladspa_effect/tap/tap_rotspeak.c: - * plugins/ladspa_effect/Makefile.am: - * configure.in: - * Makefile.am: - integrated TAP-plugins to be shipped with LMMS - -2008-06-04 Paul Giblock - - * src/gui/lmms_style.cpp: - Shrink the titlebars - -2008-06-03 Tobias Doerffel - - * plugins/vibed/nine_button_selector.cpp: - * plugins/live_tool/live_tool.cpp: - * include/note_play_handle.h: - * include/track_container.h: - * include/track.h: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * src/core/sample_play_handle.cpp: - * src/core/track.cpp: - renamed muted() to isMuted() and other coding-style fixes - - * src/gui/widgets/automatable_slider.cpp: - * src/gui/widgets/lcd_spinbox.cpp: - * src/gui/widgets/automatable_button.cpp: - use automatableModelView::addDefaultActions() - - * src/gui/widgets/tooltip.cpp: - re-enabled tooltips - - * include/track.h: - * include/track_container.h: - * src/core/track.cpp: - * data/themes/default/led_red.png: - added fully-functional solo-button - - * include/automation_editor.h: - * src/gui/automation_editor.cpp: - fixed broken automation-drawing for floatModels - - * configure.in: - * Makefile.am: - support for building win32-version with OGG/vorbis-support - - * src/gui/main_window.cpp: - added separator in edit-menu - - * src/core/config_mgr.cpp: - fixed paths for win32-build - - * src/core/sample_buffer.cpp: - fixed platform-dependent sampleBuffer::tryToMakeAbsolute(...) - - * lmms.rc.in: - * Makefile.am: - * data/lmms.ico: - added icon and resource-file - - * Makefile.am: - added win32-pkg target - -2008-06-02 Paul Giblock - - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - * src/gui/main_window.cpp: - Support loading of sf2 files from the sidebar sample browser - - * include/knob.h: - * include/automatable_model_view.h: - * src/gui/automatable_model_view.cpp: - * src/gui/widgets/knob.cpp: - * Makefile.am: - - move context menu stuff to automatableModelView - - add automatableModelViewSlots for slots we may wish to call from AMV - - * include/midi_controller.h: - code style - - * src/core/midi/midi_controller.cpp: - name midiControllers after their channel/controller - - * src/gui/widgets/fader.cpp: - Use default context menu - - * src/gui/controller_connection_dialog.cpp: - don't choose the controller if the user didn't actually choose anything - -2008-06-02 Tobias Doerffel - - * src/core/mixer.cpp: - try all audio-drivers at startup even if dummy-driver is selected - - * configure.in: - * Makefile.am: - properly link against win32-libsndfile - - * plugins/patman/patman.cpp: - * plugins/patman/Makefile.am: - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/caps/Makefile.am: - * plugins/ladspa_effect/Makefile.am: - * plugins/organic/organic.cpp: - * plugins/organic/Makefile.am: - * plugins/lb302/lb302.cpp: - * plugins/lb302/Makefile.am: - * plugins/bass_booster/bass_booster.cpp: - * plugins/bass_booster/Makefile.am: - * plugins/stereo_matrix/stereo_matrix.cpp: - * plugins/stereo_matrix/Makefile.am: - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/Makefile.am: - * plugins/vibed/Makefile.am: - * plugins/vibed/vibed.cpp: - * plugins/live_tool/Makefile.am: - * plugins/live_tool/live_tool.cpp: - * plugins/stereo_enhancer/stereo_enhancer.cpp: - * plugins/stereo_enhancer/Makefile.am: - * plugins/sf2_player/patches_dialog.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/Makefile.am: - * plugins/sf2_player/patches_dialog.h: - * plugins/ladspa_browser/ladspa_browser.cpp: - * plugins/ladspa_browser/Makefile.am: - * plugins/ladspa_browser/ladspa_browser.h: - * plugins/kicker/Makefile.am: - * plugins/kicker/kicker.cpp: - * plugins/flp_import/Makefile.am: - * plugins/flp_import/flp_import.cpp: - * plugins/midi_import/Makefile.am: - * plugins/midi_import/midi_import.cpp: - build win32-DLLs properly - - * include/mmp.h: - * include/effect.h: - * include/lcd_spinbox.h: - * include/engine.h: - * include/embed.h: - * include/bb_track_container.h: - * include/config_mgr.h: - * include/import_filter.h: - * include/ladspa_manager.h: - * include/ladspa_control.h: - * include/automation_pattern.h: - * include/graph.h: - * include/effect_control_dialog.h: - * include/pattern.h: - * include/string_pair_drag.h: - * include/caption_menu.h: - * include/envelope_and_lfo_parameters.h: - * include/bb_track.h: - * include/project_notes.h: - * include/export.h: - * include/tooltip.h: - * include/ladspa_control_view.h: - * include/journalling_object.h: - * include/tool.h: - * include/tab_bar.h: - * include/types.h: - * include/mv_base.h: - * include/track_container.h: - * include/led_checkbox.h: - * include/ladspa_2_lmms.h: - * src/3rdparty/samplerate/samplerate.h: - export more symbols in order to build all plugins - - * configure.in: - added code for detecting fluidsynth-DLL - - * src/core/config_mgr.cpp: - customized path to LADSPA-plugins under win32 - - * src/core/midi/midi_alsa_seq.cpp: - do not free port_info-structure before actually (un)subscribing - - fixes non-working automatic port-subscription - - * src/core/ladspa_manager.cpp: - win32-compat - - * src/core/instrument_midi_io.cpp: - coding style - -2008-06-02 Paul Giblock - - * include/automatable_model.h: - * include/controller_connection.h: - * src/core/automatable_model.cpp: - * src/core/controller_connection.cpp: - Support for automatic deletion of controller if owned by connection - - * include/controller.h: - * include/midi_controller.h: - * include/controller_connection_dialog.h: - * src/gui/widgets/knob.cpp: - * src/gui/controller_connection_dialog.cpp: - * src/core/midi/midi_controller.cpp: - * src/core/controller.cpp: - * Makefile.am: - - Add midi-controller support - - Allow editing of connection through context menu - - Code clean-up - - * include/midi.h: - add const for max controller ID and add bytes array to the midiEvent - m_data union - - * src/core/midi/midi_client.cpp: - Don't subtract octave from control change events - - * src/tracks/instrument_track.cpp: - Ignore unhandled control change events - - * src/tracks/pattern.cpp: - Minor pixel adjustment to TCO drawing - - * src/core/track.cpp: - Correct misleading textFloat - - * src/core/song.cpp: - Code style - -2008-06-01 Paul Giblock - - * src/tracks/pattern.cpp: - Improve drawing of tact lines, so it is more obvious where a pattern - ends - - * src/core/track.cpp: - Display floating text underneith the current track so you can actually - see what you are doing - - * src/core/config_mgr.cpp: - Gracefully handle default lmmsrc.xml creation instead of aborting - -2008-06-01 Tobias Doerffel - - * plugins/ladspa_effect/caps/basics.h: - * plugins/ladspa_effect/caps/interface.cc: - win32-build fixes - - * plugins/triple_oscillator/Makefile.am: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/Makefile.am: - made ready for building plugins as DLLs - - * plugins/kicker/kicker.h: - include QtCore/QObject rather than QObject - - * include/mmp.h: - * include/knob.h: - * include/track.h: - * include/engine.h: - * include/note.h: - * include/embed.h: - * include/instrument_view.h: - * include/config_mgr.h: - * include/automatable_model.h: - * include/mixer.h: - * include/instrument_track.h: - * include/instrument.h: - * include/sample_buffer.h: - * include/plugin.h: - * include/note_play_handle.h: - * include/song.h: - * include/string_pair_drag.h: - * include/oscillator.h: - * include/automatable_button.h: - * include/tooltip.h: - * include/journalling_object.h: - * include/pixmap_button.h: - * include/automatable_model_view.h: - * include/mv_base.h: - * include/volume_knob.h: - * include/plugin_view.h: - export according classes for making them accessibly by plugins - - * src/core/main.cpp: - dont set opacity for splashscreen - - * src/core/config_mgr.cpp: - customized paths for win32 (plugins in same directory as executable) - - * src/core/song.cpp: - initialize m_length member to 0 - - * src/core/plugin.cpp: - under win32 filter for DLL-files - - * include/types.h: - added macros for export-declaration - - * src/gui/plugin_browser.cpp: - * src/gui/effect_select_dialog.cpp: - * src/gui/main_window.cpp: - * src/core/track.cpp: - minor coding style issues - - * build_mingw32: - * acinclude.m4: - * Makefile.am: - better support for win32-builds - - * buildtools/bin2res.cpp: - open files in binary mode - fixes win32-build - - * configure.in: - * Makefile.am: - * include/audio_pulseaudio.h: - * src/core/audio/audio_pulseaudio.cpp: - * src/core/mixer.cpp: - * src/gui/setup_dialog.cpp: - added PulseAudio-support - -2008-05-30 Paul Giblock - - * src/gui/piano_roll.cpp: - - Improve selection of volume-bars on a chord. Select closest note - instead of whichever one was created first. - - Display volume-change handles on top of the bars instead of possibly - underneith other bars when dealing with chords - - * AUTHORS: - Add Juan (Fabi) to authors, organize names more alphabetically - -2008-05-30 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_effect.cpp: - fixed wrong item in effect blacklist - - * include/mixer.h: - * src/core/mixer.cpp: - use less complex worker-thread-synchronization - -2008-05-29 Tobias Doerffel - - * src/core/mixer.cpp: - use QAtomicInt instead of volatile bool + queue-global mutex for - worker-thread jobqueues - -2008-05-28 Tobias Doerffel - - * plugins/organic/organic.cpp: - * plugins/lb302/lb302.cpp: - * plugins/bass_booster/bass_booster.cpp: - * plugins/bass_booster/bassbooster_controls.cpp: - * plugins/stereo_matrix/stereomatrix_controls.cpp: - * plugins/vibed/nine_button_selector.h: - * plugins/vibed/nine_button_selector.cpp: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/stereo_enhancer/stereoenhancer_controls.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/kicker/kicker.cpp: - * plugins/midi_import/midi_import.cpp: - * include/knob.h: - * include/automatable_slider.h: - * include/lcd_spinbox.h: - * include/automatable_model.h: - * include/combobox_model.h: - * include/automation_pattern.h: - * include/note_play_handle.h: - * include/detuning_helper.h: - * include/group_box.h: - * include/automatable_button.h: - * include/automatable_model_templates.h: - * include/level_object.h: - * include/automatable_model_view.h: - * include/fader.h: - * include/combobox.h: - * src/gui/piano_roll.cpp: - * src/gui/automatable_model_view.cpp: - * src/gui/widgets/combobox.cpp: - * src/gui/widgets/knob.cpp: - * src/gui/widgets/envelope_and_lfo_view.cpp: - * src/gui/widgets/automatable_slider.cpp: - * src/gui/widgets/group_box.cpp: - * src/gui/widgets/lcd_spinbox.cpp: - * src/gui/widgets/volume_knob.cpp: - * src/gui/widgets/fader.cpp: - * src/gui/widgets/tempo_sync_knob.cpp: - * src/gui/widgets/automatable_button.cpp: - * src/gui/automation_editor.cpp: - * src/tracks/instrument_track.cpp: - * src/core/effect_chain.cpp: - * src/core/note_play_handle.cpp: - * src/core/song.cpp: - * src/core/automatable_model.cpp: - * src/core/audio/audio_alsa.cpp: - * src/core/audio/audio_oss.cpp: - * src/core/audio/audio_jack.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/combobox_model.cpp: - * src/core/meter_model.cpp: - * src/core/instrument_functions.cpp: - * src/core/instrument_midi_io.cpp: - * src/core/track.cpp: - * src/core/ladspa_control.cpp: - * src/core/note.cpp: - * src/core/piano.cpp: - * src/core/surround_area.cpp: - * src/core/automation_pattern.cpp: - * src/core/lfo_controller.cpp: - * Makefile.am: - reworked automatableModel (not template-based anymore), removed - levelObject, splitted comboBox/comboBoxModel-source-files, began to - unify context-menu-creation for controls - - diffstat: 63 files changed, 1145 insertions(+), 1170 deletions(-) - -2008-05-27 Paul Giblock - - * plugins/sf2_player/sf2_player.cpp: - restore gain setting when loading a project and keep gain setting when - changing sample rate - - * include/controller_view.h: - * src/gui/widgets/controller_view.cpp: - reverted toby's controllerView changes. - - * src/core/mmp.cpp: - add compat-code for time-signature support - -2008-05-26 Tobias Doerffel - - * include/controller_view.h: - * src/gui/widgets/controller_view.cpp: - made LMMS compile + cleanups - -2008-05-26 Paul Giblock - - * include/automatable_model.h: - * include/automatable_model_templates.h: - * include/controller.h: - * include/controller_connection.h: - * src/gui/widgets/knob.cpp: - * src/core/song.cpp: - * src/core/controller.cpp: - * src/core/controller_connection.cpp: - * Makefile.am: - - add controller connection class for storing controller links. Used to - specify linkage for loading/saving as well as a model for all the options - in the dialog (mapping function, smoothing, etc..) - - add dummyController for unfinalized or missing controllers. Faster than - adding a branch to value() or currentValue() - - save controller links to project - - incomplete, experimental! - - * include/controller_view.h: - * src/gui/lfo_controller_dialog.cpp: - * src/gui/widgets/controller_rack_view.cpp: - * data/themes/default/controller_bg.png: - Show name in controller view and make it renamable - - * data/themes/default/style.css: - A hint of blue in menu highlight - - * src/core/song.cpp: - Add data-changed event so lfo-rack can update - -2008-05-25 Tobias Doerffel - - * plugins/singerbot/singerbot.cpp: - * include/meter_model.h: - * include/song.h: - * include/pattern.h: - * include/piano_roll.h: - * include/song_editor.h: - * include/midi_time.h: - * include/types.h: - * include/timeline.h: - * src/core/bb_track_container.cpp: - * src/core/meter_model.cpp: - * src/core/song.cpp: - * src/core/timeline.cpp: - * src/core/track.cpp: - * src/gui/automation_editor.cpp: - * src/gui/piano_roll.cpp: - * src/gui/song_editor.cpp: - * src/gui/track_container_view.cpp: - * src/gui/widgets/tempo_sync_knob.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/pattern.cpp: - implemented support for time-signatures other than 4/4 - still - incomplete and experimental! - - * include/controller_dialog.h: - * src/core/lfo_controller.cpp: - * src/gui/controller_dialog.cpp: - * src/gui/widgets/controller_view.cpp: - fixed order of member-initialization and miscellanous coding-style - corrections - - * plugins/patman/select_file.png: - * plugins/patman/logo.png: - * plugins/patman/artwork.png: - * plugins/ladspa_effect/logo.png: - * plugins/organic/logo.png: - * plugins/organic/randomise.png: - * plugins/organic/randomise_pressed.png: - * plugins/organic/artwork.png: - * plugins/lb302/artwork.png: - * plugins/bass_booster/logo.png: - * plugins/stereo_matrix/logo.png: - * plugins/bit_invader/logo.png: - * plugins/bit_invader/wavegraph.png: - * plugins/bit_invader/wavegraph3.png: - * plugins/bit_invader/artwork.png: - * plugins/bit_invader/smooth.png: - * plugins/vst_effect/logo.png: - * plugins/vibed/button_7_on.png: - * plugins/vibed/button_9_on.png: - * plugins/vibed/logo.png: - * plugins/vibed/button_-1_off.png: - * plugins/vibed/button_-2_off.png: - * plugins/vibed/button_-1_on.png: - * plugins/vibed/smooth_active.png: - * plugins/vibed/wavegraph4.png: - * plugins/vibed/button_f_off.png: - * plugins/vibed/button_f_on.png: - * plugins/vibed/button_up.png: - * plugins/vibed/normalize_inactive.png: - * plugins/vibed/button_1_off.png: - * plugins/vibed/button_2_off.png: - * plugins/vibed/button_3_off.png: - * plugins/vibed/button_2_on.png: - * plugins/vibed/button_4_off.png: - * plugins/vibed/artwork.png: - * plugins/vibed/button_5_off.png: - * plugins/vibed/button_6_off.png: - * plugins/vibed/button_4_on.png: - * plugins/vibed/normalize_active.png: - * plugins/vibed/button_7_off.png: - * plugins/vibed/button_8_off.png: - * plugins/vibed/button_6_on.png: - * plugins/vibed/button_9_off.png: - * plugins/vibed/button_8_on.png: - * plugins/vibed/button_down.png: - * plugins/vibed/button_-2_on.png: - * plugins/vibed/button_1_on.png: - * plugins/vibed/button_3_on.png: - * plugins/vibed/button_5_on.png: - * plugins/vibed/smooth_inactive.png: - * plugins/triple_oscillator/logo.png: - * plugins/triple_oscillator/am_active.png: - * plugins/triple_oscillator/artwork.png: - * plugins/triple_oscillator/sync_inactive.png: - * plugins/triple_oscillator/sync_active.png: - * plugins/live_tool/logo.png: - * plugins/live_tool/artwork.png: - * plugins/singerbot/logo.png: - * plugins/singerbot/artwork.png: - * plugins/audio_file_processor/select_file.png: - * plugins/audio_file_processor/logo.png: - * plugins/audio_file_processor/artwork.png: - * plugins/stk/mallets/logo.png: - * plugins/stk/mallets/artwork.png: - * plugins/stk/voices/flute/logo.png: - * plugins/stk/voices/flute/artwork.png: - * plugins/stk/voices/resonate/logo.png: - * plugins/stk/voices/resonate/artwork.png: - * plugins/stk/voices/wurley/logo.png: - * plugins/stk/voices/wurley/artwork.png: - * plugins/stk/voices/percflute/logo.png: - * plugins/stk/voices/percflute/artwork.png: - * plugins/stk/voices/rhodey/logo.png: - * plugins/stk/voices/rhodey/artwork.png: - * plugins/stk/voices/tubebell/logo.png: - * plugins/stk/voices/tubebell/artwork.png: - * plugins/stk/voices/bowed/logo.png: - * plugins/stk/voices/bowed/artwork.png: - * plugins/stk/voices/clarinet/logo.png: - * plugins/stk/voices/clarinet/artwork.png: - * plugins/stk/voices/moog/logo.png: - * plugins/stk/voices/moog/artwork.png: - * plugins/stk/voices/metal/logo.png: - * plugins/stk/voices/metal/artwork.png: - * plugins/stk/voices/b3/logo.png: - * plugins/stk/voices/b3/artwork.png: - * plugins/stk/voices/blow_hole/logo.png: - * plugins/stk/voices/blow_hole/artwork.png: - * plugins/stk/voices/brass/logo.png: - * plugins/stk/voices/brass/artwork.png: - * plugins/stk/voices/fmvoices/logo.png: - * plugins/stk/voices/fmvoices/artwork.png: - * plugins/stk/voices/bandedwg/logo.png: - * plugins/stk/voices/bandedwg/artwork.png: - * plugins/stk/voices/blow_bottle/logo.png: - * plugins/stk/voices/blow_bottle/artwork.png: - * plugins/plucked_string_synth/logo.png: - * plugins/plucked_string_synth/artwork.png: - * plugins/stereo_enhancer/logo.png: - * plugins/sf2_player/logo.png: - * plugins/sf2_player/artwork.png: - * plugins/vestige/select_file.png: - * plugins/vestige/logo.png: - * plugins/vestige/artwork.png: - * plugins/ladspa_browser/logo.png: - * plugins/kicker/logo.png: - * plugins/kicker/artwork.png: - * plugins/polyb302/artwork.png: - * data/themes/blue_scene/led_off.png: - * data/themes/blue_scene/back_to_zero.png: - * data/themes/blue_scene/project_export.png: - * data/themes/blue_scene/hourglass.png: - * data/themes/blue_scene/triangle_wave_inactive.png: - * data/themes/blue_scene/hq_mode.png: - * data/themes/blue_scene/usr_wave_inactive.png: - * data/themes/blue_scene/main_toolbar_bg.png: - * data/themes/blue_scene/add_bb_track.png: - * data/themes/blue_scene/tempo_sync.png: - * data/themes/blue_scene/edit_paste.png: - * data/themes/blue_scene/midi_file.png: - * data/themes/blue_scene/analysis.png: - * data/themes/blue_scene/zoom.png: - * data/themes/blue_scene/playpos_marker.png: - * data/themes/blue_scene/wizard_workingdir.png: - * data/themes/blue_scene/step_btn_off_light.png: - * data/themes/blue_scene/square_wave_inactive.png: - * data/themes/blue_scene/auto_limit.png: - * data/themes/blue_scene/exp_wave_active.png: - * data/themes/blue_scene/exit.png: - * data/themes/blue_scene/step_btn_on.png: - * data/themes/blue_scene/toolbar_bg.png: - * data/themes/blue_scene/keep_stop_position.png: - * data/themes/blue_scene/whatsthis.png: - * data/themes/blue_scene/output_graph.png: - * data/themes/blue_scene/wizard_files.png: - * data/themes/blue_scene/note_none.png: - * data/themes/blue_scene/black_key.png: - * data/themes/blue_scene/text_center.png: - * data/themes/blue_scene/stop.png: - * data/themes/blue_scene/error.png: - * data/themes/blue_scene/sin_wave_inactive.png: - * data/themes/blue_scene/loop_points_on.png: - * data/themes/blue_scene/play.png: - * data/themes/blue_scene/folder_opened.png: - * data/themes/blue_scene/mute_on.png: - * data/themes/blue_scene/ports.png: - * data/themes/blue_scene/project_saveas.png: - * data/themes/blue_scene/loop_point_disabled.png: - * data/themes/blue_scene/folder.png: - * data/themes/blue_scene/arp_random_on.png: - * data/themes/blue_scene/arp_sync.png: - * data/themes/blue_scene/edit_copy.png: - * data/themes/blue_scene/white_noise_wave_inactive.png: - * data/themes/blue_scene/track_op_grip.png: - * data/themes/blue_scene/background_artwork.png: - * data/themes/blue_scene/help.png: - * data/themes/blue_scene/unknown_file.png: - * data/themes/blue_scene/edit_redo.png: - * data/themes/blue_scene/exp_wave_inactive.png: - * data/themes/blue_scene/arp_down_on.png: - * data/themes/blue_scene/project_file.png: - * data/themes/blue_scene/sample_track.png: - * data/themes/blue_scene/note_quarter.png: - * data/themes/blue_scene/surround_area.png: - * data/themes/blue_scene/black_key_pressed.png: - * data/themes/blue_scene/project_notes.png: - * data/themes/blue_scene/project_new.png: - * data/themes/blue_scene/master_pitch.png: - * data/themes/blue_scene/edit_select.png: - * data/themes/blue_scene/track_op_menu.png: - * data/themes/blue_scene/colorize.png: - * data/themes/blue_scene/white_key.png: - * data/themes/blue_scene/splash.png: - * data/themes/blue_scene/note_double_whole.png: - * data/themes/blue_scene/envelope_graph.png: - * data/themes/blue_scene/saw_wave_inactive.png: - * data/themes/blue_scene/note_sixteenth.png: - * data/themes/blue_scene/lfo_graph.png: - * data/themes/blue_scene/frozen.png: - * data/themes/blue_scene/effect_board.png: - * data/themes/blue_scene/arp_down_off.png: - * data/themes/blue_scene/mute_off.png: - * data/themes/blue_scene/reload.png: - * data/themes/blue_scene/text_italic.png: - * data/themes/blue_scene/arp_random_off.png: - * data/themes/blue_scene/pause.png: - * data/themes/blue_scene/freeze.png: - * data/themes/blue_scene/triangle_wave_active.png: - * data/themes/blue_scene/combobox_arrow.png: - * data/themes/blue_scene/root.png: - * data/themes/blue_scene/apply.png: - * data/themes/blue_scene/usr_wave_active.png: - * data/themes/blue_scene/icon.png: - * data/themes/blue_scene/clock.png: - * data/themes/blue_scene/setup_directories.png: - * data/themes/blue_scene/text_left.png: - * data/themes/blue_scene/text_block.png: - * data/themes/blue_scene/plugins/tripleoscillator_fm_inactive.png: - * data/themes/blue_scene/plugins/bitinvader_artwork.png: - * data/themes/blue_scene/plugins/tripleoscillator_mix_active.png: - * data/themes/blue_scene/plugins/tripleoscillator_am_active.png: - * data/themes/blue_scene/plugins/tripleoscillator_artwork.png: - * data/themes/blue_scene/plugins/bitinvader_logo.png: - * data/themes/blue_scene/plugins/tripleoscillator_fm_active.png: - * data/themes/blue_scene/plugins/tripleoscillator_sync_inactive.png: - * data/themes/blue_scene/plugins/audiofileprocessor_artwork.png: - * data/themes/blue_scene/plugins/bitinvader_wavegraph3.png: - * data/themes/blue_scene/plugins/vestige_artwork.png: - * data/themes/blue_scene/plugins/bitinvader_smooth.png: - * data/themes/blue_scene/plugins/audiofileprocessor_logo.png: - * data/themes/blue_scene/plugins/tripleoscillator_sync_active.png: - * data/themes/blue_scene/plugins/pluckedstringsynth_logo.png: - * data/themes/blue_scene/plugins/audiofileprocessor_loop_off.png: - * data/themes/blue_scene/plugins/audiofileprocessor_reverse_off.png: - * data/themes/blue_scene/plugins/audiofileprocessor_loop_on.png: - * data/themes/blue_scene/plugins/vestige_logo.png: - * data/themes/blue_scene/plugins/tripleoscillator_am_inactive.png: - * data/themes/blue_scene/plugins/tripleoscillator_mix_inactive.png: - * data/themes/blue_scene/plugins/bitinvader_wavegraph.png: - * data/themes/blue_scene/cpuload_bg.png: - * data/themes/blue_scene/note_half.png: - * data/themes/blue_scene/wizard.png: - * data/themes/blue_scene/preset_file.png: - * data/themes/blue_scene/hint.png: - * data/themes/blue_scene/note.png: - * data/themes/blue_scene/timeline.png: - * data/themes/blue_scene/bb_track.png: - * data/themes/blue_scene/white_key_pressed.png: - * data/themes/blue_scene/arp_up_off.png: - * data/themes/blue_scene/autoscroll_off.png: - * data/themes/blue_scene/setup_audio.png: - * data/themes/blue_scene/text_right.png: - * data/themes/blue_scene/project_open.png: - * data/themes/blue_scene/arp_up_and_down_off.png: - * data/themes/blue_scene/note_eighth.png: - * data/themes/blue_scene/note_whole.png: - * data/themes/blue_scene/note_thirtysecond.png: - * data/themes/blue_scene/edit_erase.png: - * data/themes/blue_scene/sin_wave_active.png: - * data/themes/blue_scene/saw_wave_active.png: - * data/themes/blue_scene/rename.png: - * data/themes/blue_scene/drum.png: - * data/themes/blue_scene/edit_undo.png: - * data/themes/blue_scene/edit_move.png: - * data/themes/blue_scene/wizard_intro.png: - * data/themes/blue_scene/add_sample_track.png: - * data/themes/blue_scene/combobox_bg.png: - * data/themes/blue_scene/setup_performance.png: - * data/themes/blue_scene/loop_point.png: - * data/themes/blue_scene/autoscroll_on.png: - * data/themes/blue_scene/unfreeze.png: - * data/themes/blue_scene/cancel.png: - * data/themes/blue_scene/sound_file.png: - * data/themes/blue_scene/arp_sort.png: - * data/themes/blue_scene/white_noise_wave_active.png: - * data/themes/blue_scene/arp_up_and_down_on.png: - * data/themes/blue_scene/folder_locked.png: - * data/themes/blue_scene/setup_general.png: - * data/themes/blue_scene/loop_points_off.png: - * data/themes/blue_scene/setup_midi.png: - * data/themes/blue_scene/uhoh.png: - * data/themes/blue_scene/step_btn_off.png: - * data/themes/blue_scene/songeditor.png: - * data/themes/blue_scene/square_wave_active.png: - * data/themes/blue_scene/project_open_down.png: - * data/themes/blue_scene/moog_saw_wave_inactive.png: - * data/themes/blue_scene/back_to_start.png: - * data/themes/blue_scene/text_under.png: - * data/themes/blue_scene/arp_up_on.png: - * data/themes/blue_scene/arp_free.png: - * data/themes/blue_scene/moog_saw_wave_active.png: - * data/themes/blue_scene/home.png: - * data/themes/blue_scene/knob01.png: - * data/themes/default/lcd_19green.png: - * data/themes/default/knob03.png: - * data/themes/default/back_to_zero.png: - * data/themes/default/edit_draw.png: - * data/themes/default/triangle_wave_inactive.png: - * data/themes/default/filter_hp.png: - * data/themes/default/zoom_y.png: - * data/themes/default/usr_wave_inactive.png: - * data/themes/default/muted.png: - * data/themes/default/add_bb_track.png: - * data/themes/default/fader_background.png: - * data/themes/default/tempo_sync.png: - * data/themes/default/plugins.png: - * data/themes/default/midi_file.png: - * data/themes/default/analysis.png: - * data/themes/default/zoom.png: - * data/themes/default/edit_arrow.png: - * data/themes/default/wizard_workingdir.png: - * data/themes/default/lcd_19red.png: - * data/themes/default/toolbar_bg.png: - * data/themes/default/whatsthis.png: - * data/themes/default/filter_notch.png: - * data/themes/default/output_graph.png: - * data/themes/default/wizard_files.png: - * data/themes/default/controller.png: - * data/themes/default/note_none.png: - * data/themes/default/black_key.png: - * data/themes/default/stop.png: - * data/themes/default/fader_knob.png: - * data/themes/default/mute_off_disabled.png: - * data/themes/default/mute_on_disabled.png: - * data/themes/default/sin_wave_inactive.png: - * data/themes/default/play.png: - * data/themes/default/folder_opened.png: - * data/themes/default/filter_bp.png: - * data/themes/default/ports.png: - * data/themes/default/loop_point_disabled.png: - * data/themes/default/folder.png: - * data/themes/default/arp_random_on.png: - * data/themes/default/arp_sync.png: - * data/themes/default/automation.png: - * data/themes/default/white_noise_wave_inactive.png: - * data/themes/default/track_op_grip.png: - * data/themes/default/pr_black_key.png: - * data/themes/default/help.png: - * data/themes/default/background_artwork.png: - * data/themes/default/factory_files.png: - * data/themes/default/unknown_file.png: - * data/themes/default/exp_wave_inactive.png: - * data/themes/default/project_file.png: - * data/themes/default/arp_down_on.png: - * data/themes/default/piano.png: - * data/themes/default/midi_in.png: - * data/themes/default/black_key_pressed.png: - * data/themes/default/surround_area.png: - * data/themes/default/track_op_menu_disabled.png: - * data/themes/default/project_new.png: - * data/themes/default/master_pitch.png: - * data/themes/default/led_green.png: - * data/themes/default/edit_select.png: - * data/themes/default/colorize.png: - * data/themes/default/white_key.png: - * data/themes/default/knob02.png: - * data/themes/default/note_double_whole.png: - * data/themes/default/envelope_graph.png: - * data/themes/default/saw_wave_inactive.png: - * data/themes/default/lfo_graph.png: - * data/themes/default/groupbox_led_bg.png: - * data/themes/default/frozen.png: - * data/themes/default/arp_down_off.png: - * data/themes/default/effect_board.png: - * data/themes/default/reload.png: - * data/themes/default/zoom_x.png: - * data/themes/default/pause.png: - * data/themes/default/freeze.png: - * data/themes/default/filter_lp.png: - * data/themes/default/combobox_arrow.png: - * data/themes/default/triangle_wave_active.png: - * data/themes/default/root.png: - * data/themes/default/apply.png: - * data/themes/default/usr_wave_active.png: - * data/themes/default/icon.png: - * data/themes/default/clock.png: - * data/themes/default/add_controller.png: - * data/themes/default/setup_directories.png: - * data/themes/default/cpuload_bg.png: - * data/themes/default/quantize.png: - * data/themes/default/wizard.png: - * data/themes/default/preset_file.png: - * data/themes/default/hint.png: - * data/themes/default/filter_ap.png: - * data/themes/default/timeline.png: - * data/themes/default/bb_track.png: - * data/themes/default/effect_plugin.png: - * data/themes/default/white_key_pressed.png: - * data/themes/default/arp_up_off.png: - * data/themes/default/autoscroll_off.png: - * data/themes/default/setup_audio.png: - * data/themes/default/arp_up_and_down_off.png: - * data/themes/default/combobox_arrow_selected.png: - * data/themes/default/cpuload_leds.png: - * data/themes/default/note_whole.png: - * data/themes/default/edit_erase.png: - * data/themes/default/wizard_intro.png: - * data/themes/default/add_sample_track.png: - * data/themes/default/combobox_bg.png: - * data/themes/default/setup_performance.png: - * data/themes/default/sound_file.png: - * data/themes/default/arp_sort.png: - * data/themes/default/white_noise_wave_active.png: - * data/themes/default/arp_up_and_down_on.png: - * data/themes/default/controller_bg.png: - * data/themes/default/folder_locked.png: - * data/themes/default/setup_general.png: - * data/themes/default/loop_points_off.png: - * data/themes/default/filter_2lp.png: - * data/themes/default/setup_midi.png: - * data/themes/default/uhoh.png: - * data/themes/default/midi_out.png: - * data/themes/default/songeditor.png: - * data/themes/default/moog_saw_wave_inactive.png: - * data/themes/default/arp_free.png: - * data/themes/default/home.png: - * data/themes/default/fader_leds.png: - * data/themes/default/knob01.png: - * data/themes/llama/background_artwork.png: - shrinked file-sizes via optipng - - * include/main_window.h: - * src/gui/main_window.cpp: - * src/core/main.cpp: - * data/themes/default/splash.png: - new transparent splash-screen without obsolete text-messages - -2008-05-25 Paul Giblock - - * include/embed.h: - Fix missing distructor warning - - * include/controller.h: - * include/song.h: - * include/lfo_controller.h: - * src/core/controller.cpp: - * src/core/lfo_controller.cpp: - Save and load controllers to project files. - - * src/core/song.cpp: - - Save and load controllers to project files. - - emit dataChanged() on clearProject() do we need this anywhere else? - -2008-05-24 Tobias Doerffel - - * include/song.h: - * include/song_editor.h: - * src/core/song.cpp: - * src/gui/song_editor.cpp: - added meterModel and meterDialog (which actually is just a widget) as - preparation for time-signature-support - it doesn't actually work yet! - - * data/themes/default/style.css: - improved appearence of menu in general - - * Makefile.am: - * include/tempo_sync_knob.h: - * include/meter_model.h: - * include/meter_dialog.h: - * src/core/meter_model.cpp: - * src/gui/widgets/meter_dialog.cpp: - splitted source-files for meterModel and meterDialog and added - "simple"-mode for meterDialog - -2008-05-22 Paul Giblock - - * include/lfo_controller.h: - * src/gui/lfo_controller_dialog.cpp: - * src/core/lfo_controller.cpp: - Add more wave shapes to LFO controller - - * src/gui/widgets/controller_view.cpp: - Set sub-window's icon to the icon of the controllerDialog - - * src/gui/widgets/controller_rack_view.cpp: - Add icon to window - -2008-05-21 Paul Giblock - - * plugins/sf2_player/Makefile.am: - * plugins/Makefile.am: - * configure.in: - Add fluidsynth detection to configure - -2008-05-21 Paul Giblock - - * plugins/vestige/select_file.png: - * plugins/vestige/logo.png: - * plugins/vestige/vestige.cpp: - * plugins/vestige/artwork.png: - Integrate new vestige artwork - - * src/core/track.cpp: - Improve background drawing/scaling - - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/select_file.png: - * plugins/audio_file_processor/logo.png: - * plugins/audio_file_processor/loop_off.png: - * plugins/audio_file_processor/loop_on.png: - * plugins/audio_file_processor/reverse_off.png: - * plugins/audio_file_processor/reverse_on.png: - * plugins/audio_file_processor/artwork.png: - Integrate new audio file processor artwork - - * src/gui/widgets/volume_knob.cpp: - Fix placement of tooltop in styled knobs - - * src/gui/widgets/knob.cpp: - Minor graphical enhancement for styled knobs - - * src/gui/piano_roll.cpp: - * include/piano_roll.h: - * data/themes/default/record_accompany.png: - - Fix annoying bug where changing patterns would scroll to bar 2 instead - of bar 1 - - Add record-with-accompaniment feature because it was easier to just add - a toolbutton then to strip out the code. At least now there is some - starting point for this feature should we ever decide to release it. - - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - Complete organic gui - - * data/themes/default/style.css: - AFP and organic knob styles - - * plugins/sf2_player/artwork.png: - New sf2-player artwork - -2008-05-21 Tobias Doerffel - - * src/core/main.cpp: - only create core-application for --help and -h - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/patman/patman.cpp: - * plugins/lb302/lb302.cpp: - * plugins/organic/organic.cpp: - * plugins/stereo_matrix/stereo_matrix.cpp: - * plugins/bass_booster/bass_booster.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/singerbot/singerbot.cpp: - * plugins/live_tool/live_tool.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/stk/mallets/mallets.cpp: - * plugins/stereo_enhancer/stereo_enhancer.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/vestige/vestige.cpp: - * plugins/vst_base/vst_base.cpp: - * plugins/ladspa_browser/ladspa_browser.cpp: - * plugins/kicker/kicker.cpp: - * plugins/Makefile.am: - * plugins/flp_import/flp_import.cpp: - * plugins/midi_import/midi_import.cpp: - * include/track.h: - * src/gui/piano_roll.cpp: - * src/gui/plugin_browser.cpp: - * src/gui/main_window.cpp: - * src/core/plugin.cpp: - * src/core/bb_track_container.cpp: - * src/core/tool.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/instrument_functions.cpp: - * src/core/track.cpp: - * src/core/instrument.cpp: - use new pluginPixmapLoader - - * include/lmms_style.h: - * src/gui/lmms_style.cpp: - load stylesheet here - - * include/combobox.h: - * src/gui/widgets/combobox.cpp: - use pixmapLoader-pointers rather than QPixmap-pointers in comboBoxModel - - * include/plugin.h: - in plugin-descriptor, hold a pointer to pixmapLoader instead of - QPixmap itself - - * include/embed.h: - * src/gui/embed.cpp: - introduced pixmapLoader and pluginPixmapLoader-classes for abstracting - QPixmap-instantiation - models can hold pixmapLoaders without actually - instantiating a QPixmap-object and views can access the pixmap - - * src/gui/main_window.cpp: - removed settings-menu and moved setup-dialog to edit-menu - - * Makefile.am: - * include/config_mgr.h: - * src/core/config_mgr.cpp: - removed all the obsolete first-startup-wizard-code - -2008-05-19 Tobias Doerffel - - * configure.in: - * plugins/vst_base/lvsl_client.cpp: - call waitpid(...) when closing plugin - fixes zombie processes - - * plugins/vst_effect/vst_effect_controls.h: - * plugins/vst_effect/vst_subplugin_features.cpp: - * plugins/vst_effect/vst_subplugin_features.h: - * plugins/vst_effect/vst_effect_control_dialog.cpp: - * plugins/vst_effect/Makefile.am: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vst_effect/vst_effect_controls.cpp: - * plugins/vst_effect/vst_effect_control_dialog.h: - * plugins/vst_effect/vst_effect.h: - * plugins/vst_base/lvsl_client.h: - * plugins/vst_base/lvsl_client.cpp: - finally made VST-effect plugin work - - * src/core/track_container.cpp: - * src/core/main.cpp: - when rendering from command-line, only create a QCoreApplication - needs - further work - - * include/config_mgr.h: - * src/gui/widgets/effect_rack_view.cpp: - minor coding-style stuff - - * plugins/singerbot/singerbot.h: - * plugins/singerbot/singerbot.cpp: - integrated patches from William Steidtmann - which makes Singerbot at least compile - doesn't seem to work yet though - -2008-05-19 Paul Giblock - - * triple_oscillator.cpp: - * am_active.png: - * am_inactive.png: - * artwork.png: - * btn_mask.png: - * exp_shape_active.png: - * exp_shape_inactive.png: - * fm_active.png: - * fm_inactive.png: - * logo.png: - * mix_active.png: - * mix_inactive.png: - * moog_saw_shape_active.png: - * moog_saw_shape_inactive.png: - * pm_active.png: - * pm_inactive.png: - * saw_shape_active.png: - * saw_shape_inactive.png: - * sin_shape_active.png: - * sin_shape_inactive.png: - * square_shape_active.png: - * square_shape_inactive.png: - * sync_active.png: - * sync_inactive.png: - * triangle_shape_active.png: - * triangle_shape_inactive.png: - * usr_shape_active.png: - * usr_shape_inactive.png: - * white_noise_shape_active.png: - * white_noise_shape_inactive.png: - Updated Triple-oscillator artwork - - * src/core/track.cpp: - Darkened the tracks so it doesn't hurt to look at - - * src/gui/lfo_controller_dialog.cpp: - * src/gui/widgets/controller_view.cpp: - Remove stray line - - * plugins/kicker/kicker.cpp: - * plugins/kicker/kicker.h: - * data/themes/default/style.css: - Including stylesheet changes I forgot to commit, fixes knobs in 3xOsc - -2008-05-18 Paul Giblock - - * src/gui/widgets/knob.cpp: - * include/knob.h: - First version of stylable knobs. Perhaps can be overlayed with current - knobs to add line coloring/width in other places around the GUI. - - * src/core/track.cpp: - - Re-enabled alternating background, better appearance AND performance - - Fixed more of the flickering by disabling updates when moving - - Toby will probably want to change background colors, I just used - something simple since it will end up changing probably. It do like the - gradient dark on top, looks like a "channel" or "groove". - - * plugins/patman/artwork.png: - Fixed artwork again - - * plugins/singerbot/artwork.png: - * plugins/singerbot/logo.png: - Updated SingerBot artwork - -2008-05-18 Tobias Doerffel - - * plugins/stk/mallets/mallets.cpp: - added missing initialization of member-variables which made Mallets - play nothing until GUI has been opened - - * include/bb_track.h: - * src/gui/widgets/combobox.cpp: - * src/gui/widgets/name_label.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/pattern.cpp: - * data/themes/default/track_op_grip.png: - improved overall appearence - - * src/core/track.cpp: - - disabled flipped painting of track-view-BG - - optimized changePosition()-method for much faster drawing - - * src/gui/fx_mixer_view.cpp: - do not destroy FX-mixer-view when closing - - * plugins/ladspa_effect/ladspa_effect.cpp: - added "Notch Filter" to blacklist - - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/bass_booster/bass_booster.cpp: - * plugins/stereo_matrix/stereo_matrix.cpp: - * plugins/stereo_enhancer/stereo_enhancer.cpp: - - replaced old code with effect::checkGate() call - - various cleanups and minor optimizations - - * src/core/effect_chain.cpp: - added debugging-code for determining buggy effect-plugins at higher - samplerates - - * include/plugin.h: - introduced changable publicName-property - - * include/effect.h: - * src/core/effect.cpp: - added checkGate()-function for reducing redundant code in effect-plugins - -2008-05-17 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_effect.h: - improved handling of effects which only work at limited samplerates - - * include/audio_port.h: - * src/core/audio/audio_port.cpp: - small optimizations - - * src/core/mixer.cpp: - removed obsolete idle-property of worker-threads - - * src/core/fx_mixer.cpp: - protect individual buffers of FX-channels from being processed by more - than one thread - -2008-05-17 Paul Giblock - - * plugins/stereo_matrix/stereomatrix_controls.cpp: - Allow knobs to invert phase as well - - * plugins/patman/patman.cpp: - * plugins/patman/patman.h: - * plugins/patman/artwork.png: - * plugins/patman/loop_off.png: - * plugins/patman/loop_on.png: - * plugins/patman/tune_off.png: - * plugins/patman/tune_on.png: - * plugins/patman/select_file_on.png: - * plugins/patman/select_file.png: - - Integrate new patman artwork. - - Make file selection button highlight when clicked. - - * include/pixmap_button.h: - * src/gui/widgets/pixmap_button.cpp: - Make button pixmap "activate" on click - - * src/gui/widgets/automatable_button.cpp: - Noted bug in automatable button - - * src/gui/piano_roll.cpp: - Fix bug when trying to select note on first beat. However, still breaks - if the cursor moves quickly from right to left (i.e: if it skips the - pixel position) - -2008-05-14 Tobias Doerffel - - * include/project_renderer.h: - * src/core/main.cpp: - * src/core/project_renderer.cpp: - added a lot of options for rendering via command-line and finally made - it working with new projectRenderer-class - - * include/mixer.h: - removed 16x oversampling - -2008-05-13 Tobias Doerffel - - * include/track.h: - * include/pixmap_button.h: - * src/core/track.cpp: - * src/gui/widgets/pixmap_button.cpp: - toggle solo via Ctrl+left mouse button - - * src/gui/fx_mixer_view.cpp: - set window-icon - - * src/gui/widgets/tab_widget.cpp: - use colors from active palette - - * src/gui/widgets/project_notes.cpp: - hide per default - - * src/gui/main_window.cpp: - * src/core/timeline.cpp: - * data/themes/default/project_export.png: - * data/themes/default/hourglass.png: - * data/themes/default/hq_mode.png: - * data/themes/default/edit_paste.png: - * data/themes/default/text_bold.png: - * data/themes/default/project_save.png: - * data/themes/default/playpos_marker.png: - * data/themes/default/exit.png: - * data/themes/default/text_center.png: - * data/themes/default/error.png: - * data/themes/default/edit_cut.png: - * data/themes/default/mute_on.png: - * data/themes/default/project_saveas.png: - * data/themes/default/loop_point_disabled.png: - * data/themes/default/arp_random_on.png: - * data/themes/default/edit_copy.png: - * data/themes/default/edit_redo.png: - * data/themes/default/arp_down_on.png: - * data/themes/default/track_op_menu_disabled.png: - * data/themes/default/project_notes.png: - * data/themes/default/track_op_menu.png: - * data/themes/default/groupbox_led_bg.png: - * data/themes/default/arp_down_off.png: - * data/themes/default/mute_off.png: - * data/themes/default/text_italic.png: - * data/themes/default/arp_random_off.png: - * data/themes/default/root.png: - * data/themes/default/apply.png: - * data/themes/default/text_block.png: - * data/themes/default/text_left.png: - * data/themes/default/arp_up_off.png: - * data/themes/default/text_right.png: - * data/themes/default/project_open.png: - * data/themes/default/arp_up_and_down_off.png: - * data/themes/default/edit_undo.png: - * data/themes/default/loop_point.png: - * data/themes/default/cancel.png: - * data/themes/default/add.png: - * data/themes/default/arp_up_and_down_on.png: - * data/themes/default/project_open_down.png: - * data/themes/default/text_under.png: - * data/themes/default/fx_mixer.png: - * data/themes/default/arp_up_on.png: - * data/themes/default/home.png: - integrated improved artwork (more to come) - - * src/core/track.cpp: - do not crash when removing TCOs - - * plugins/ladspa_effect/ladspa_effect.cpp: - use new resampling-methods in case we're processing plugins which are - known not to work at higher samplerates - - * include/main_window.h: - made resetWindowTitle() a slot - - * src/gui/widgets/effect_view.cpp: - coding-style stuff - - * include/effect.h: - * src/core/effect.cpp: - added simple way for plugins to process at lower sample-rates - - * src/core/ladspa_manager.cpp: - added hard-coded path in case LMMS is installed into /usr/local - - * include/export_project_dialog.h: - * src/gui/export_project_dialog.cpp: - update main-window title-bar while rendering - - * src/gui/widgets/visualization_widget.cpp: - do not update while song-export - - * src/gui/dialogs/export_project.ui: - improved usability - - * include/audio_device.h: - * src/core/audio/audio_device.cpp: - * src/core/audio/audio_alsa.cpp: - * src/core/audio/audio_sdl.cpp: - * src/core/audio/audio_oss.cpp: - * src/core/audio/audio_jack.cpp: - after changed quality-settings also update interpolation for - samplerate-conversion - -2008-05-12 Tobias Doerffel - - * plugins/bass_booster/bassbooster_controls.cpp: - * plugins/sf2_player/sf2_player.cpp: - * src/core/audio/audio_device.cpp: - cleanups and the like - - * include/mixer.h: - in draft-mode use zero-order-hold interpolation instead of linear - interpolation - fixes some issues with resampling - - * plugins/bass_booster/bassbooster_controls.cpp: - made bass-booster HQ-mode-capable - - * include/effect_lib.h: - changed float's in bassbooster to SAMPLE - -2008-05-11 Tobias Doerffel - - * plugins/sf2_player/sf2_player.cpp: - retrieve resampling-interpolation from current mixer quality settings - - * include/mixer.h: - made m_writing-variable in fifoWriter volatile - - * include/project_renderer.h: - * src/core/project_renderer.cpp: - change audio-device to file-device from within GUI-thread in order to - make slots being connected to sampleRateChanged()-signal being called - immediately - - * src/tracks/instrument_track.cpp: - cleanups - - * src/core/mixer.cpp: - initialize quality with draft-preset - - * include/setup_dialog.h: - * include/audio_device.h: - * src/gui/main_window.cpp: - * src/gui/setup_dialog.cpp: - * src/core/audio/audio_device.cpp: - * src/core/audio/audio_alsa.cpp: - * src/core/audio/audio_sdl.cpp: - * src/core/audio/audio_oss.cpp: - * src/core/audio/audio_jack.cpp: - made HQ-mode for audio-devices optional - - * include/controller.h: - * include/song.h: - * include/audio_file_device.h: - * include/song_editor.h: - * include/export.h: - * include/export_project_dialog.h: - * src/gui/dialogs/export_project.ui: - * src/gui/song_editor.cpp: - * src/gui/export_project_dialog.cpp: - * src/core/song.cpp: - * src/core/main.cpp: - * Makefile.am: - introduced new project-export dialog - - * include/project_renderer.h: - * src/core/project_renderer.cpp: - new class for easily rendering a project into a file - - * include/mixer.h: - * include/audio_sdl.h: - * include/audio_jack.h: - * include/audio_device.h: - * include/audio_oss.h: - * include/audio_alsa.h: - * src/core/audio/audio_alsa.cpp: - * src/core/audio/audio_device.cpp: - * src/core/audio/audio_file_wave.cpp: - * src/core/audio/audio_jack.cpp: - * src/core/audio/audio_oss.cpp: - * src/core/audio/audio_sdl.cpp: - * src/core/mixer.cpp: - when changing quality-settings tell audio-devices about it so that - they can adjust their output-samplerate - -2008-05-05 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/organic/organic.cpp: - * plugins/lb302/lb302.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/vibed/vibrating_string.cpp: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/live_tool/live_tool.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/stk/mallets/mallets.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/vst_base/lvsl_client.cpp: - * plugins/ladspa_browser/ladspa_port_dialog.cpp: - * plugins/kicker/kicker.cpp: - * include/effect.h: - * include/controller.h: - * include/mixer.h: - * include/sample_buffer.h: - * include/audio_dummy.h: - * include/audio_sdl.h: - * include/song.h: - * include/audio_file_device.h: - * include/audio_jack.h: - * include/audio_device.h: - * include/audio_oss.h: - * include/audio_sample_recorder.h: - * include/audio_alsa.h: - * src/gui/piano_roll.cpp: - * src/gui/song_editor.cpp: - * src/gui/setup_dialog.cpp: - * src/gui/file_browser.cpp: - * src/gui/widgets/envelope_and_lfo_view.cpp: - * src/gui/automation_editor.cpp: - * src/gui/export_project_dialog.cpp: - * src/gui/bb_editor.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * src/core/song.cpp: - * src/core/bb_track_container.cpp: - * src/core/audio/audio_file_device.cpp: - * src/core/audio/audio_device.cpp: - * src/core/audio/audio_alsa.cpp: - * src/core/audio/audio_sdl.cpp: - * src/core/audio/audio_oss.cpp: - * src/core/audio/audio_sample_recorder.cpp: - * src/core/audio/audio_jack.cpp: - * src/core/sample_play_handle.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/mixer.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/instrument_functions.cpp: - * src/core/engine.cpp: - * src/core/sample_buffer.cpp: - * src/core/oscillator.cpp: - * src/core/controller.cpp: - * src/core/lfo_controller.cpp: - made quality-settings (internal processing samplerate, interpolation - and so on) independent of audio-devices (final output) and added new - qualitySettings-structure to mixer - might be still buggy and HQ-mode - is currently not working, this is going to be fixed tomorrow, anyways - important preparation for new project-export-dialog - -2008-05-04 Tobias Doerffel - - * src/gui/fx_mixer_view.cpp: - added spacing below FX-bank-selector - - * include/effect_select_dialog.h: - * include/plugin.h: - * src/gui/effect_select_dialog.cpp: - fixed crash when adding an effect although none is selected and - improved overall usability - - * plugins/organic/organic.cpp: - fixed knob-inheritance problems - -2008-05-04 Paul Giblock - - * plugins/kicker/kicker.cpp: - * plugins/kicker/artwork.png: - Add new kicker artwork - - * plugins/organic/organic.cpp: - * plugins/organic/randomise.png: - * plugins/organic/randomise_pressed.png: - * plugins/organic/artwork.png: - * plugins/organic/logo.png: - Add new organic artwork - - * include/knob.h: - * src/gui/widgets/knob.cpp: - Seperate some drawing functionality to simplify subclasses - - * src/tracks/instrument_track.cpp: - Change plugin size from 246px back to 250px - -2008-05-03 Tobias Doerffel - - * src/core/track.cpp: - fixed move of TCO-selections - -2008-04-30 Paul Giblock - - * src/gui/piano_roll.cpp: - - Fixed moving of selected notes. - - TODO: Quantanize the movement to selected "Q" - -2008-04-29 Paul Giblock - - * include/main_window.h: - * src/gui/main_window.cpp: - Add button for toggling FX Window. Can use a better icon. - -2008-04-28 Paul Giblock - - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - Add gain, chorus, and reverb controls - - * include/instrument_functions.h: - * src/core/instrument_functions.cpp: - Fixed arpeggio direction loading - - * src/gui/widgets/effect_rack_view.cpp: - Display effect window and enable fx-chain when adding an effect - - * src/gui/widgets/effect_view.cpp: - Make effect controls window non-resizeable and remove maximize button - -2008-04-26 Tobias Doerffel - - * plugins/stereo_enhancer/stereo_enhancer.cpp: - * plugins/stereo_enhancer/stereo_enhancer.h: - - made delay-buffer a simple stereo-buffer instead of - surround-frame-buffer - - added missing call in constructor to clear newly created - delay-buffer - fixes bad distorted sound in various scenarios - -2008-04-25 Paul Giblock - - * plugins/bit_invader/bit_invader.cpp: - Fixed samplelength loading - -2008-04-24 Paul Giblock - - * src/core/song.cpp: - Reset LFO counter on song play - - * src/core/controller.cpp: - * include/controller.h: - Change counter from signed int to unsigned - - * src/gui/piano_roll.cpp: - - Allow volume bars to be modified by clicking one bar, then - sweeping the mouse - - shade volume bars according to volume - - fixed drawing of background while scrolling - - * plugins/stereo_matrix/stereo_matrix.cpp: - Made wet/dry knob do something. Acts as a nice panning knob when the - matrix has the channels swapped. - - * src/tracks/instrument_track.cpp: - * src/gui/fx_mixer_view.cpp: - * include/fx_mixer_view.h: - - Made bank-buttons easier to hit - - Double click on fx-channel LCD in ITW to warp to the proper FX-line - -2008-04-20 Tobias Doerffel - - * src/gui/widgets/group_box.cpp: - * plugins/sf2_player/sf2_player.cpp: - small cleanups - - * data/themes/default/style.css: - * include/fx_mixer_view.h: - * src/gui/fx_mixer_view.cpp: - improved layouting and made FX-lines being organized in 4 banks - instead of one big scrollarea - - * src/core/engine.cpp: - create FX-mixer after song - - * Makefile.am: - * include/fx_mixer.h: - * include/fx_mixer_view.h: - * src/core/fx_mixer.cpp: - * src/core/song.cpp: - * src/gui/fx_mixer_view.cpp: - splitted source-files for FX-mixer and its view - - * include/fader.h: - * src/gui/widgets/fader.cpp: - made faders automatable - - * include/song.h: - made automation-track public accessible - - * include/visualization_widget.h: - * src/gui/widgets/visualization_widget.cpp: - use new timer-framework - - * include/song_editor.h: - * src/gui/song_editor.cpp: - added fast and leightweight timer-framework - widgets requiring - periodic updates can simply connect their update-slots to - songEditor::periodicUpdate() - -2008-04-20 Paul Giblock - - * plugins/stereo_matrix/stereomatrix_controls.cpp: - Fixed saveSettings - -2008-04-16 Paul Giblock - - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - rewrote reference-sharing. Should return near-100% memory on unload, and - should properly handle samplerate changes. Now we can render large - sf2-based projects without consuming a gig of ram :) - -2008-04-15 Tobias Doerffel - - * src/gui/file_browser.cpp: - check type of preview-play-handle via type() instead of blindly using - dynamic_cast - probably fixes random crashes when previewing a lot of - samples and presets - - * src/tracks/instrument_track.cpp: - delete instrument-instance *after* removing all play-handles from - mixer as several play-handle-methods rely on instrument - fixes crash - when removing track while playing - - * src/core/track.cpp: - directly delete view before removing model - fixes crash when - removing instrument-track with instrument-track-window open - -2008-04-15 Paul Giblock - - * plugins/stereo_matrix/stereomatrix_control_dialog.cpp: - Fix layout - -2008-04-14 Paul Giblock - - * plugins/stereo_matrix: - * plugins/stereo_matrix/stereo_matrix.cpp: - * plugins/stereo_matrix/stereo_matrix.h: - * plugins/stereo_matrix/stereomatrix_controls.cpp: - * plugins/stereo_matrix/stereomatrix_controls.h: - * plugins/stereo_matrix/stereomatrix_control_dialog.cpp: - * plugins/stereo_matrix/stereomatrix_control_dialog.h: - * plugins/stereo_matrix/logo.png: - * plugins/stereo_matrix/Makefile.am: - * configure.in: - * plugins/Makefile.am: - Add stereo matrix plugin for real panning and stereo-swapping - -2008-04-14 Tobias Doerffel - - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - added resampling with Sinc-interpolation in case LMMS processes with - higher sample-rate than 96 KHz - -2008-04-14 Paul Giblock - - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - support HQ-mode except for interpolation for sampleRates > 96k - - * include/controller_dialog.h: - * include/controller_view.h: - * src/gui/controller_dialog.cpp: - * src/gui/widgets/controller_view.cpp: - * Makefile.am: - fix segfault when trying to show a controller dialog the second time - -2008-04-12 Tobias Doerffel - - * plugins/lb302/lb302.cpp: - replaced LB_HZ with engine::getMixer()->sampleRate()-calls in order to - have a correct pitch in HQ-mode - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_control_dialog.cpp: - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/ladspa_effect/ladspa_controls.cpp: - * plugins/ladspa_effect/Makefile.am: - * plugins/ladspa_effect/ladspa_control_dialog.h: - * plugins/ladspa_effect/ladspa_controls.h: - * include/effect_control_dialog.h: - made LADSPA-effect-hoster handle samplerate-changes so that we've - proper effect-processing in HQ-mode - - * include/lmms_constants.h: - more accurate constants - - * src/gui/export_project_dialog.cpp: - fixed progress-bar after change of tick-resolution from 64 to 192 - - * include/mixer.h: - * src/core/mixer.cpp: - made clearAudioBuffer() static - - * include/song.h: - * src/core/ladspa_manager.cpp: - coding-style-stuff - - * src/core/oscillator.cpp: - do not synthesize anything if frequency is above half of samplerate - -2008-04-09 Tobias Doerffel - - * plugins/flp_import/flp_import.cpp: - * plugins/midi_import/midi_import.cpp: - * include/engine.h: - * include/song.h: - * include/pattern.h: - * include/piano_roll.h: - * include/midi_time.h: - * include/types.h: - * include/timeline.h: - * include/automation_editor.h: - * configure.in: - * src/gui/piano_roll.cpp: - * src/gui/song_editor.cpp: - * src/gui/automation_editor.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * src/core/note_play_handle.cpp: - * src/core/song.cpp: - * src/core/bb_track_container.cpp: - * src/core/mixer.cpp: - * src/core/mmp.cpp: - * src/core/track.cpp: - * src/core/engine.cpp: - * src/core/timeline.cpp: - * src/core/automation_pattern.cpp: - changed internal MIDI-time-resolution from 64th to 192th resulting for - example in better MIDI-import and allowing to use triplet-notes in LMMS - -2008-04-09 Paul Giblock - - * include/controller.h: - * src/core/controller.cpp: - fit values between 0.0 and 1.0 - - * include/lfo_controller.h: - * src/gui/lfo_controller_dialog.cpp: - * src/core/lfo_controller.cpp: - add more parameters to LFO controller - -2008-04-08 Paul Giblock - - * include/engine.h: - * src/core/engine.cpp: - add static accessor to the controller rack. I'm sure this won't be it's - own MDISubWindow very long.. - - * include/controller.h: - * include/controller_dialog.h: - * src/gui/widgets/knob.cpp: - * src/core/controller.cpp: - add gui accesssor and split off LFO - - * include/song.h: - * src/core/song.cpp: - make song the model for user-created controllers - - * src/gui/song_editor.cpp: - added icon. Was going to add controller rack as a QSplitter but found - this would take too much time right now - - * src/gui/widgets/visualization_widget.cpp: - drop back from 40 to an arbitrary 24fps - - * include/lfo_controller.h: - * src/gui/lfo_controller.cpp: - * src/gui/lfo_controller_dialog.cpp: - - add beginnings of an LFO controller and dialog - - don't mind the unoptimized code, it will be fixed - - * include/controller_view.h: - * include/controller_rack_view.h: - * src/gui/widgets/controller_view.cpp: - * src/gui/widgets/controller_rack_view.cpp: - * data/themes/default/controller_bg.png: - The beginning of the controller rack and controller items. This is an - absolute bare minimum interface at the moment. Also ulta-buggy. - - * include/controller_connection_dialog.h: - * src/gui/controller_connection_dialog.cpp: - This is the connection dialog. Will allow users to create and modify - connections between a controller and model. The lineEdit will be for - editing a mapping function to scale, offset, trig-ify, etc. - - * Makefile.am: - add controller related files - -2008-04-07 Tobias Doerffel - - * src/gui/effect_select_dialog.cpp: - fixed wrong model-index (=>wrong description-widget) when filtering - - * src/gui/lmms_style.cpp: - decreased button-icon-size to 20px - - * src/core/fx_mixer.cpp: - process FX-channels until effects signal that there's nothing more to - process - closes #1935872 - - * configure.in: - integrated changes from libsamplerate-0.1.3/configure.ac - - * include/effect_select_dialog.h: - * src/gui/effect_select_dialog.cpp: - - cleanups - - fixed broken connection for "Add"-button - - * src/3rdparty/samplerate/common.h: - * src/3rdparty/samplerate/fastest_coeffs.h: - * src/3rdparty/samplerate/float_cast.h: - * src/3rdparty/samplerate/high_qual_coeffs.h: - * src/3rdparty/samplerate/mid_qual_coeffs.h: - * src/3rdparty/samplerate/samplerate.c: - * src/3rdparty/samplerate/samplerate.h: - * src/3rdparty/samplerate/src_linear.c: - * src/3rdparty/samplerate/src_sinc.c: - * src/3rdparty/samplerate/src_zoh.c: - integrated libsamplerate 0.1.3 source which has various improvements - over 4-year-old version 0.1.2 - - * src/gui/widgets/combobox.cpp: - set correct value for model when selecting an item whose strings - occurs multiple times in the combobox - -2008-04-06 Tobias Doerffel - - * include/effect_select_dialog.h: - * src/gui/effect_select_dialog.cpp: - changed list-widget to be a list-view and added a line-edit for - filtering the list - -2008-04-06 Paul Giblock - - * include/lmms_style.h: - * src/gui/lmms_style.cpp: - Fix icon size for buttons etc... - -2008-04-05 Tobias Doerffel - - * plugins/patman/patman.cpp: - * plugins/patman/patman.h: - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/bit_invader.h: - * plugins/vibed/vibed.h: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/stk/mallets/mallets.cpp: - * plugins/stk/mallets/mallets.h: - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - * plugins/vestige/vestige.cpp: - * plugins/vestige/vestige.h: - * plugins/kicker/kicker.cpp: - * plugins/kicker/kicker.h: - * include/instrument_play_handle.h: - * include/mixer.h: - * include/instrument_track.h: - * include/instrument.h: - * include/note_play_handle.h: - * include/sample_play_handle.h: - * include/dummy_instrument.h: - * include/preset_preview_play_handle.h: - * include/play_handle.h: - * src/tracks/instrument_track.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/note_play_handle.cpp: - * src/core/sample_play_handle.cpp: - * src/core/mixer.cpp: - * src/core/instrument.cpp: - made rendering happen with one global working-buffer per thread - - hopefully improves L1/L2-cache-efficiency - - * include/file_browser.h: - * src/gui/file_browser.cpp: - do not examine directories for being empty when adding them - speeds - up LMMS-startup a lot! - -2008-04-04 Paul Giblock - - * include/knob.h: - * src/gui/widgets/knob.cpp: - Add friendlyUpdates slot and override doConnections - - * include/song_editor.h: - Add button for managing controller to songEditor - - * include/mv_base.h: - * include/core/mv_base.cpp: - Make doConnections virtual - - * include/combobox.h: - Fixed tabs - - * src/core/mixer.cpp: - Couldn't easily convert from void* to int on a 64bit machine. Instead, - we now use a union. We should change any enqueueing code to use the - union as well - - * data/themes/add_controller.png: - * data/themes/controller.png: - Some new images for controllers - -2008-04-04 Tobias Doerffel - - * src/core/mixer.cpp: - implemented parallelization of FX-channel-processing - - * include/automatable_model.h: - * include/automatable_model_templates.h: - cleanups and optimizations in value( int ) - -2008-04-04 Paul Giblock - - * include/controller.h: - * src/core/controller.cpp: - * Makefile.am: - Add controller class to LMMS - - * include/knob.h: - * src/gui/widgets/knob.cpp: - Add Connect to Controller item to context menu for future dialog - - * include/automatable_model.h: - * include/automatable_model_templates.h: - - add controller pointer to class - - add value(int offset) function for sample-exact value fetching - - use controller in value() if set - - * src/tracks/pattern.cpp: - Fixed length of notes according to PaulWay - - * src/core/mixer.cpp: - trigger controller's frame counter - - * data/themes/llama: - * data/themes/llama/background_artwork.png: - * data/themes/Makefile.am: - start a theme with my preferences - -2008-04-03 Tobias Doerffel - - * include/song.h: - * src/core/song.cpp: - * src/gui/export_project_dialog.cpp: - * src/gui/song_editor.cpp: - made song-length being cached and only updated upon changed length or - position of TCOs - - * src/core/track.cpp: - optimized track::length()-method - - * src/core/mixer.cpp: - great improvements on multithreading - one global job-queue protected by - a simple mutex where threads pull their jobs from - - * src/core/engine.cpp: - delete LADSPA-manager after mixer and FX-mixer as LADSPA-effects in - FX-mixer access LADSPA-manger at destruction - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/bass_booster/bass_booster.cpp: - * plugins/bass_booster/bass_booster.h: - * plugins/stereo_enhancer/stereo_enhancer.cpp: - * plugins/stereo_enhancer/stereo_enhancer.h: - * include/effect.h: - - made effect::processAudioBuffer(...) process a sampleFrame- instead of - surroundSampleFrame-array - - divide out_sum by number of frames processed to have a - period-size-independent value - - * src/core/note_play_handle.cpp: - * include/automatable_model.h: - renamed value( int ) to levelToValue( int ) as preparation for - controller-framework - - * include/mixer.h: - * src/core/mixer.cpp: - - made mixer::buffertToPort accept a stereoVolumeVector as audio-buffers - have stereo-audio-buffers now - - made peakValueLeft() and peakValueRight() take a sampleFrame-pointer - - process in stereo internally - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - replaced surroundArea with panning-knob - - * include/audio_port.h: - * src/core/audio/audio_port.cpp: - use sampleFrame-array instead of surroundSampleFrame-array for - processing - - * src/core/fx_mixer.cpp: - * include/fx_mixer.h: - made mixToChannel() take a sampleFrame-pointer - - * include/volume.h: - * src/core/sample_play_handle.cpp: - * src/core/surround_area.cpp: - added stereoVolumeVector and surroundVolumeVector-declarations - - * include/dummy_effect.h: - implement pure-virtual processAudioBuffer()-method - - * include/panning.h: - new panningToVolumeVector()-inline-method - - * include/effect_chain.h: - * src/core/effect_chain.cpp: - made processAudioBuffer() take a sampleFrame-pointer - - * include/visualization_widget.h: - * src/gui/widgets/visualization_widget.cpp: - use sampleFrame-array instead of surroundSampleFrame-array internally - -2008-04-02 Tobias Doerffel - - * include/automatable_model.h: - added castValue()-method - -2008-04-01 Tobias Doerffel - - * plugins/ladspa_effect/Makefile.am: - * plugins/patman/Makefile.am: - * plugins/lb302/Makefile.am: - * plugins/organic/Makefile.am: - * plugins/bass_booster/Makefile.am: - * plugins/bit_invader/Makefile.am: - * plugins/vst_effect/Makefile.am: - * plugins/vibed/Makefile.am: - * plugins/triple_oscillator/Makefile.am: - * plugins/live_tool/Makefile.am: - * plugins/live_tool/live_tool.cpp: - * plugins/singerbot/Makefile.am: - * plugins/audio_file_processor/Makefile.am: - * plugins/stk/mallets/Makefile.am: - * plugins/stereo_enhancer/Makefile.am: - * plugins/vestige/Makefile.am: - * plugins/sf2_player/Makefile.am: - * plugins/ladspa_browser/Makefile.am: - * plugins/kicker/Makefile.am: - * plugins/polyb302/Makefile.am: - * plugins/flp_import/flp_import.cpp: - corrected paths / includes - - * include/engine.h: - * include/instrument_track.h: - * include/preset_preview_play_handle.h: - * src/tracks/instrument_track.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/track_container.cpp: - * src/core/engine.cpp: - added dummyTrackContainer with dummyInstrumentTrack in order to have a - default-model for cached inactive instrument-track-windows - fixes - regular crashes - - * include/engine.h: - * include/bb_track_container.h: - * include/track_container_view.h: - * include/song_editor.h: - * include/bb_editor.h: - * include/track_container.h: - * src/gui/track_container_view.cpp: - * src/gui/bb_editor.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/pattern.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/track_container.cpp: - * src/core/song.cpp: - * src/core/bb_track_container.cpp: - * src/core/file_browser.cpp: - * src/core/track.cpp: - * src/core/engine.cpp: - * src/core/automation_editor.cpp: - * Makefile.am: - - splitted track_container.h into track_container.h and - track_container_view.h - - splitted bb_editor.h into bb_track_container.h and bb_editor.h - - moved view-component-implementations of trackContainer and - bbTrackContainer to src/gui/ - - added dummyInstrumentTrack-implementation - - * plugins/ladspa_effect/caps/README.ardour: - * plugins/ladspa_effect/caps/README.dist: - * plugins/ladspa_effect/caps/Makefile.am: - added README-files - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/bass_booster/bass_booster.cpp: - decreased minimal gate from 0.0001f to 0.00001f as it turned out that - some effects were cut off with previous value - - * include/endian_handling.h: - * include/note.h: - * include/effect_select_dialog.h: - * include/midi.h: - * include/effect_view.h: - * include/side_bar.h: - * include/micro_timer.h: - * include/midi_event_processor.h: - * include/instrument_function_views.h: - * include/instrument_midi_io.h: - * include/export.h: - * include/dummy_instrument.h: - * include/level_object.h: - added missing includes when compiling headers itself - - * Makefile.am: - added single-binary-target for testing-purposes - -2008-03-30 Tobias Doerffel - - * src/core/song_editor.cpp: - removed obsolete SIGNAL/SLOT-connection - - * plugins/bass_booster/bass_booster.cpp: - * plugins/ladspa_effect/ladspa_effect.cpp: - compare out_sum against getGate()+0.0001f as getGate() might be 0 - while out_sum in many cases never will reach 0,0...0 again - fixes - high CPU-usage even after stop playing - - * include/effect_chain.h: - * plugins/ladspa_effect/ladspa_effect.cpp: - made controls have a track to allow automation of LADSPA-controls - - * include/automatable_button.h: - * src/widgets/automatable_button.cpp: - on model-change, ensure QPushButton's state is correct - - * src/widgets/effect_rack_view.cpp: - properly handle changed models - - * src/tracks/instrument_track.cpp: - when model has changed, also set new model for effect-view - - * src/core/effect_chain.cpp: - - use track as parent - - correct initialization of m_enabledModel which fixes crashes on - model-updates - -2008-03-30 Paul Giblock - - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - Fix patch dialog error when viewing dialog before file has loaded - - all we had to do is diable the button while a file is loading - -2008-03-30 Tobias Doerffel - - * plugins/sf2_player/sf2_player.cpp: - duplicate char-pointer returned by qPrintable - fixes bugs when - loading sound-fonts - -2008-03-24 Tobias Doerffel - - * src/core/fx_mixer.cpp: - completed recent changes to saveSettings() / loadSettings() - -2008-03-22 Tobias Doerffel - - * data/themes/default/main_toolbar_bg.png: - * data/themes/default/toolbar_bg.png: - made toolbar-backgrounds a bit more blue-ish - - * src/core/main.cpp: - tuned colors a bit - - * src/core/fx_mixer.cpp: - moved effect-chain to right side of window - - * src/core/ladspa_control.cpp: - added missing break in switch which made a lot of messages appear in - console when time-based knobs were used by LADSPA-plugins - - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/vibed/vibed.h: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/vestige/vestige.cpp: - * plugins/vestige/vestige.h: - * plugins/sf2_player/artwork.png: - * plugins/midi_import/midi_import.cpp: - * include/note.h: - * include/mixer.h: - * include/instrument_track.h: - * include/sample_buffer.h: - * include/fx_mixer.h: - * include/piano.h: - * include/volume.h: - * include/midi_port.h: - * include/panning.h: - * src/midi/midi_client.cpp: - * src/midi/midi_port.cpp: - * src/midi/midi_alsa_seq.cpp: - * src/lib/sample_buffer.cpp: - * src/widgets/instrument_midi_io_view.cpp: - * src/tracks/instrument_track.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/note_play_handle.cpp: - * src/core/mixer.cpp: - * src/core/piano_roll.cpp: - * src/core/instrument_functions.cpp: - * src/core/instrument_midi_io.cpp: - * src/core/note.cpp: - * src/core/piano.cpp: - * src/core/fx_mixer.cpp: - - merged note's tone and octave-property into one key-property which - makes us save calculations in a lot of places and also shrinks - sizes of XML-files - - renamed various note-related constants and enums to match current - coding-style - - * data/themes/default/effect_plugin.png: - improved effect-plugin-artwork made with Inkscape - -2008-03-22 Paul Giblock - - * plugins/organic/organic.cpp: - Removed debug printf - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - - First version of cache for hidden instrumentTrackWindows - - Need to delete the cache and any remaining ITW's upon application close - - * src/core/lmms_style.cpp: - Applied border to more primatives. Still some known issues.. - - * src/core/main.cpp: - Just playing around with palette colors. - -2008-03-16 Paul Giblock - - * Makefile.am: - Added lmmsStyle to the Makefile again. - - * src/widgets/lcd_spinbox.cpp: - * include/lcd_spinbox.h: - - Added separate function for deriving control size - - Added property for side-margins - - Fixed memory leak with the pixmap - - Added yours truly to the copyright - - * src/core/lmms_style.cpp: - * include/lmms_style.h: - - Re-added lmmsStyle. I don't know why these files disappeared - - Improve appearance of sunken borders - - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/sf2_player.h: - - Hopefully plugged some leaks caused by the leaky fluidSynth. It seems - to run fine, but only time will tell - - Added sfont file sharing between instances of sf2Player - - Added synthMutex to keep play() from freezing while we are recreating - the synth due to a file load. - - * src/widgets/combobox.cpp: - Draw styled border. - - * src/core/fx_mixer.cpp: - Improved drawing of LCD Channel numbers. - - * .: - * m4: - * buildtools: - * plugins: - * plugins/ladspa_effect: - * plugins/ladspa_effect/caps: - * plugins/ladspa_effect/caps/waves: - * plugins/ladspa_effect/caps/dsp: - * plugins/ladspa_effect/caps/dsp/tonestack: - * plugins/patman: - * plugins/lb302: - * plugins/organic: - * plugins/bass_booster: - * plugins/bit_invader: - * plugins/vst_effect: - * plugins/vibed: - * plugins/triple_oscillator: - * plugins/singerbot: - * plugins/live_tool: - * plugins/audio_file_processor: - * plugins/stk: - * plugins/stk/mallets: - * plugins/stk/voices: - * plugins/stk/voices/flute: - * plugins/stk/voices/resonate: - * plugins/stk/voices/include: - * plugins/stk/voices/wurley: - * plugins/stk/voices/src: - * plugins/stk/voices/percflute: - * plugins/stk/voices/rhodey: - * plugins/stk/voices/tubebell: - * plugins/stk/voices/bowed: - * plugins/stk/voices/clarinet: - * plugins/stk/voices/moog: - * plugins/stk/voices/metal: - * plugins/stk/voices/b3: - * plugins/stk/voices/blow_hole: - * plugins/stk/voices/brass: - * plugins/stk/voices/fmvoices: - * plugins/stk/voices/bandedwg: - * plugins/stk/voices/blow_bottle: - * plugins/plucked_string_synth: - * plugins/stereo_enhancer: - * plugins/sf2_player: - * plugins/vestige: - * plugins/vst_base: - * plugins/ladspa_browser: - * plugins/kicker: - * plugins/polyb302: - * plugins/flp_import: - * plugins/flp_import/unrtf: - * plugins/midi_import: - * include: - * src: - * src/audio: - * src/midi: - * src/lib: - * src/widgets: - * src/tracks: - * src/3rdparty: - * src/3rdparty/samplerate: - * src/core: - * data: - * data/locale: - * data/track_icons: - * data/midi-maps: - * data/samples: - * data/samples/effects: - * data/samples/stringsnpads: - * data/samples/basses: - * data/samples/shapes: - * data/samples/latin: - * data/samples/bassloopes: - * data/samples/drums: - * data/samples/instruments: - * data/samples/misc: - * data/samples/drumsynth: - * data/samples/drumsynth/effects: - * data/samples/drumsynth/misc_synth: - * data/samples/drumsynth/tr606: - * data/samples/drumsynth/cr78: - * data/samples/drumsynth/magnetboy: - * data/samples/drumsynth/tr808: - * data/samples/drumsynth/tr909: - * data/samples/drumsynth/misc_fx: - * data/samples/drumsynth/misc: - * data/samples/drumsynth/electro: - * data/samples/drumsynth/linn: - * data/samples/drumsynth/ferraro: - * data/samples/drumsynth/r_b: - * data/samples/drumsynth/misc_bass: - * data/samples/drumsynth/tr77: - * data/samples/drumsynth/misc_perc: - * data/samples/drumsynth/latin: - * data/samples/drumsynth/instrument: - * data/samples/drumsynth/misc_electro: - * data/samples/drumsynth/acoustic: - * data/samples/drumsynth/misc_hats: - * data/samples/drumsynth/farfisa: - * data/samples/drumsynth/jorgensohn: - * data/samples/drumsynth/cr8000: - * data/samples/drumsynth/misc_claps: - * data/samples/beats: - * data/presets: - * data/presets/AudioFileProcessor: - * data/presets/LB302: - * data/presets/Organic: - * data/presets/PluckedStringSynth: - * data/presets/VeSTige: - * data/presets/BitInvader: - * data/presets/Vibed: - * data/presets/TripleOscillator: - * data/themes: - * data/themes/blue_scene: - * data/themes/blue_scene/plugins: - * data/themes/default: - * data/projects: - * data/projects/covers: - * data/projects/recorded_loops: - * data/projects/cool_songs: - * data/projects/tutorials: - * data/projects/demos: - * data/projects/misc: - * data/projects/templates: - Added svn:ignore property for temporary buildtime files. Prevents - dozens of items showing in diff and status. The file - .svnignore describes which files are ignored. - - * .svnignore: - Can change this file to ignore more stuff. Reapply by running: - svn -R propset svn:ignore -F .svnignore . - -2008-03-16 Tobias Doerffel - - * src/widgets/visualization_widget.cpp: - improved signal-visualization and increased update-ratio from 20 to 40 - fps - - * include/mixer.h: - * src/core/mixer.cpp: - * src/core/song_editor.cpp: - * data/themes/default/auto_limit.png: - removed obsolete and broken auto-limit-feature - - * src/core/engine.cpp: - * src/core/fx_mixer.cpp: - proper cleanup of fxMixer and its view at exit - - * src/widgets/effect_view.cpp: - * data/themes/default/effect_plugin.png: - improved effect-view-artwork - -2008-03-15 Tobias Doerffel - - * src/core/mixer.cpp: - fixed peak-calculation for negative signal-values - - * include/effect_view.h: - * src/widgets/effect_view.cpp: - - fixed random crashes when removing effect-views - - improved painting of effect-view - - * plugins/ladspa_effect/ladspa_controls.cpp: - fixed LADSPA-controls which internally were not linked per default - although they should be - - * include/fx_mixer.h: - * include/effect_rack_view.h: - * include/effect_chain.h: - * src/widgets/effect_rack_view.cpp: - * src/tracks/instrument_track.cpp: - * src/core/effect_chain.cpp: - * src/core/song.cpp: - * src/core/fx_mixer.cpp: - implemented save- and load-functionality for FX-mixer - -2008-03-14 Tobias Doerffel - - * include/engine.h: - * include/mixer.h: - * include/fx_mixer.h: - * include/fader.h: - * include/effect_chain.h: - * src/audio/audio_port.cpp: - * src/widgets/fader.cpp: - * src/tracks/instrument_track.cpp: - * src/core/effect_chain.cpp: - * src/core/mixer.cpp: - * src/core/engine.cpp: - * src/core/fx_mixer.cpp: - * data/themes/default/fader_background.png: - * data/themes/default/fader_knob.png: - * data/themes/default/fader_leds.png: - * Makefile.am: - added initial FX-mixer implementation - not perfect and very usable - yet but the basics work so far :) - - * src/widgets/instrument_midi_io_view.cpp: - fixed segfault when using raw MIDI-client - -2008-03-08 Tobias Doerffel - - * data/locale/de.ts: - * data/locale/de.qm: - updated German localization - - * include/effect_board.h: - removed - - * include/fx_mixer.h: - * src/tracks/instrument_track.cpp: - added definition for upcoming FX-mixer - - * plugins/triple_oscillator/triple_oscillator.h: - * include/meter_dialog.h: - * include/instrument_functions.h: - * include/instrument_sound_shaping.h: - * include/instrument_function_views.h: - * include/bb_track.h: - * include/ladspa_control_view.h: - * include/instrument_sound_shaping_view.h: - * src/midi/midi_client.cpp: - * src/widgets/ladspa_control_view.cpp: - * src/widgets/instrument_sound_shaping_view.cpp: - * src/widgets/instrument_function_views.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/instrument_functions.cpp: - * Makefile.am: - added missing Q_OBJECT-macros for views which made localizations not - work - - * plugins/sf2_player/logo.png: - replaced Kicker-logo with actual logo - - * src/core/track.cpp: - * include/track.h: - fixed crash when removing TCO via context-menu - - * include/instrument_track.h: - * src/core/file_browser.cpp: - made "Send to active instrument-track" work again - - * include/instrument_midi_io_view.h: - * include/instrument_midi_io.h: - * src/widgets/instrument_midi_io_view.cpp: - * src/core/instrument_midi_io.cpp: - made MIDI-port-menu work again - - * plugins/kicker/kicker.cpp: - set track for knobs in order to make them automatable - - * include/automatable_model_templates.h: - fixed missing automationPattern-initialization (i.e. - setFirstValue()-call) which made automation-editor not work properly - if no events were drawn so far - - * include/piano_roll.h: - * include/automation_editor.h: - * src/core/piano_roll.cpp: - * src/core/automation_editor.cpp: - made micro-draw-operations use 32-bit-ints instead of 16-bit-integers - for performing better on 32-bit-platforms - - * data/locale/de.qm: - * data/locale/de.ts: - * include/mv_base.h: - * src/widgets/combobox.cpp: - * src/widgets/knob.cpp: - * src/widgets/automatable_button.cpp: - * src/core/mv_base.cpp: - also connect model-signals with view when using default-constructed - model - fixes missing updates on things like button-groups when using - automation - -2008-03-07 Tobias Doerffel - - * plugins/vst_base/lvsl_server.cpp: - show window before determining X-Window-ID as newer WINE-versions do - not create X-windows before actually showing window - - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_base/lvsl_client.h: - properly insert VST-editor-window into QMdiArea - - * plugins/vestige/vestige.cpp: - * plugins/vestige/vestige.h: - M/V-split - - * plugins/kicker/kicker.h: - * include/sample_buffer.h: - * configure.in: - * src/lib/sample_buffer.cpp: - misc coding-style-fixes - - * include/sample_buffer.h: - * src/lib/sample_buffer.cpp: - made sampleBuffer reentrant so that several threads can use - sampleBuffer::play() simultanously - fixes crashes when using - AudioFileProcessor or Patman in multithreaded mode - -2008-03-06 Tobias Doerffel - - * plugins/sf2_player/sf2_player.h: - * plugins/sf2_player/sf2_player.cpp: - added m_runningNotes-array to track overlapping or edge-to-edge notes - and act accordingly - -2008-03-04 Tobias Doerffel - - * src/widgets/graph.cpp: - fixed compiler-warnings - - * include/automatable_model.h: - * include/graph.h: - * include/surround_area.h: - * src/audio/audio_file_device.cpp: - * src/audio/audio_alsa.cpp: - * src/audio/audio_oss.cpp: - * src/audio/audio_port.cpp: - * src/audio/audio_jack.cpp: - * src/midi/midi_alsa_seq.cpp: - * src/lib/project_journal.cpp: - * src/lib/mmp.cpp: - * src/lib/oscillator.cpp: - * src/widgets/ladspa_control_view.cpp: - * src/widgets/envelope_and_lfo_view.cpp: - * src/widgets/instrument_midi_io_view.cpp: - * src/widgets/lcd_spinbox.cpp: - * src/widgets/group_box.cpp: - * src/widgets/volume_knob.cpp: - * src/tracks/automation_track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/track_container.cpp: - * src/core/effect_control_dialog.cpp: - * src/core/import_filter.cpp: - * src/core/setup_dialog.cpp: - * src/core/sample_play_handle.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/main.cpp: - * src/core/mixer.cpp: - * src/core/effect.cpp: - * src/core/instrument_midi_io.cpp: - * src/core/track.cpp: - * src/core/timeline.cpp: - * src/core/instrument.cpp: - * src/core/surround_area.cpp: - * src/core/effect_select_dialog.cpp: - * src/core/automation_editor.cpp: - * src/core/meter_dialog.cpp: - reduced dependencies from automatable_model_templates.h and fixed - according compiler-warnings - - * include/shared_object.h: - added mutex to protect reference-counter - -2008-03-03 Tobias Doerffel - - * src/core/piano_roll.cpp: - - fixed and improved painting of volume-lines - - fixed painting of note-detuning-dots - - fixed KEY_PRESSURE-events when changing volume of a note - - pass keyboard-events to piano-class if appropriate - - * include/piano.h: - * src/core/piano.cpp: - moved MIDI-event-code to piano-class - - * src/core/piano_roll.cpp: - * src/core/automation_editor.cpp: - set focus-policy in order to receive key-events - - * plugins/sf2_player/sf2_player.cpp: - - fixed open-file-dialog - - fixed order of member-variable-initialization - - * src/lib/sample_buffer.cpp: - added MP3-files to file-dialog-filter as they theoretically should be - supported through SDL_sound-library - - * src/core/mixer.cpp: - always process all note-play-handles of monophonic instruments by the - same thread serially - fixes problems with monophonic instruments - which rely on notes being processed in correct order - - * src/core/instrument_sound_shaping.cpp: - fixed out-of-range initial value of filter-frequency-model - - * src/core/main_window.cpp: - set directory before selecting file in QFileDialog - - * src/widgets/knob.cpp: - removed relative painting - fixes badly draw knobs in several cases - - * src/core/song_editor.cpp: - * src/core/track.cpp: - * src/widgets/knob.cpp: - * src/widgets/volume_knob.cpp: - made textFloat's work properly and displayed at correct position - - * src/widgets/text_float.cpp: - * include/text_float.h: - always use main-window as parent and make sure to be moved relative to - it, i.e. do not show outside of moved main-window - - * include/mmp.h: - * src/lib/mmp.cpp: - * src/core/song.cpp: - removed overwrite-check as in Qt4 QFileDialog does this on its own - - * include/midi_event_processor.h: - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - do not lock mixer and call notePlayHandle::noteOff() in - instrumentTrack::processInEvent() when processing monophonic - instruments in playNote() - fixes lockups in LB302 in multithreaded - mode - -2008-03-02 Tobias Doerffel - - * include/ladspa_control.h: - * src/widgets/ladspa_control_view.cpp: - * src/widgets/tempo_sync_knob.cpp: - fixed wrong integration of tempoSyncKnobModel - - * src/core/mv_base.cpp: - made dataChanged()->update() connection queued - -2008-03-01 Tobias Doerffel - - * plugins/patman/patman.cpp: - do not crash in patmanInstrument::playNote() when no file is set - - * include/ladspa_control.h: - * src/core/ladspa_control.cpp: - fixed missing tempoSyncKnobModel for not crashing when instantiating - LADSPA-plugins with time-knobs inside - - * src/lib/sample_buffer.cpp: - do not set global mixer lock in update() if no data has been set yet - - * plugins/patman/patman.cpp: - do not crash when loading settings where no file is set - - * plugins/triple_oscillator/triple_oscillator.cpp: - in saveSettings() fixed wrong integer-to-string-conversion which made - LMMS save broken files - -2008-02-29 Tobias Doerffel - - * src/widgets/text_float.cpp: - set Qt::ToolTip-window-flag in order to display correctly - some other - positioning code still needs to be fixed - - * include/import_filter.h: - fixed importFilter::readByte() to return proper integer instead of - signed char - makes import-filters finally work - - * plugins/midi_import/midi_import.cpp: - * plugins/flp_import/flp_import.cpp: - fixed parameter-list of lmms_plugin_main to work properly - -2008-02-29 Paul Giblock - - * include/lcd_spinbox.h: - * src/widgets/lcd_spinbox.cpp: - * data/themes/default/lcd_19red.png: - * data/themes/default/lcd_19green.png: - new non-QLcdSpinBox pixmap-based LCD spinbox - - * include/lmms_style.h: - * src/core/main.cpp: - * Makefile.am: - added lmmsStyle to aim for a consistant interface. Some Qt themes - make LMMS look really bad. Hopefully, over time, we can make a style - the unifies all our gui elements - - * src/core/track.cpp: - playing with alternating colors per tact - - * include/combobox.h: - * src/widgets/combobox.cpp: - * data/themes/default/combobox_bg.png: - * data/themes/default/combobox_arrow_selected.png: - - combobox now updates when incremented or decrementing. - - draw combo box with styled border, change arrow when pressed - -2008-02-28 Tobias Doerffel - - * src/core/plugin.cpp: - warn if LMMS-plugin does not have required _plugin_descriptor - field - -2008-02-28 Paul Giblock - - * plugins/sf2_player: - * plugins/sf2_player/patches_dialog.ui: - * plugins/sf2_player/logo.png: - * plugins/sf2_player/patches_dialog.cpp: - * plugins/sf2_player/sf2_player.cpp: - * plugins/sf2_player/Makefile.am: - * plugins/sf2_player/artwork.png: - * plugins/sf2_player/patches_dialog.h: - * plugins/sf2_player/sf2_player.h: - * plugins/Makefile.am: - * configure.in: - added beta of SoundFont player - -2008-02-28 Danny McRae - - * plugins/stk/Makefile.am: - removed voices from the default build - -2008-02-28 Tobias Doerffel - - * configure.in: - back in trunk - LMMS-MV is now default, so removed "mv"-suffix - -2008-02-27 Tobias Doerffel - - * plugins/ladspa_effect/caps/Compress.cc: - * plugins/ladspa_effect/caps/ToneStack.cc: - * plugins/ladspa_effect/caps/Compress.h: - * plugins/ladspa_effect/caps/ToneStack.h: - * plugins/ladspa_effect/caps/Roessler.h: - * plugins/ladspa_effect/caps/HRTF.cc: - * plugins/ladspa_effect/caps/HRTF.h: - * plugins/ladspa_effect/caps/basics.h: - * plugins/ladspa_effect/caps/Lorenz.cc: - * plugins/ladspa_effect/caps/Lorenz.h: - * plugins/ladspa_effect/caps/Amp.cc: - * plugins/ladspa_effect/caps/Amp.h: - * plugins/ladspa_effect/caps/Pan.h: - * plugins/ladspa_effect/caps/Phaser.cc: - * plugins/ladspa_effect/caps/White.h: - * plugins/ladspa_effect/caps/Preamp.cc: - * plugins/ladspa_effect/caps/Click.cc: - * plugins/ladspa_effect/caps/VCO.cc: - * plugins/ladspa_effect/caps/Clip.cc: - * plugins/ladspa_effect/caps/Click.h: - * plugins/ladspa_effect/caps/VCO.h: - * plugins/ladspa_effect/caps/ToneControls.cc: - * plugins/ladspa_effect/caps/Sin.cc: - * plugins/ladspa_effect/caps/Clip.h: - * plugins/ladspa_effect/caps/Sin.h: - * plugins/ladspa_effect/caps/Scape.cc: - * plugins/ladspa_effect/caps/Scape.h: - * plugins/ladspa_effect/caps/Roessler.cc: - * plugins/ladspa_effect/caps/interface.cc: - * plugins/ladspa_effect/caps/waves/click.h: - * plugins/ladspa_effect/caps/waves/money.h: - * plugins/ladspa_effect/caps/dsp/ToneStack.h: - * plugins/ladspa_effect/caps/dsp/LatFilt.h: - * plugins/ladspa_effect/caps/dsp/TDFII.h: - * plugins/ladspa_effect/caps/dsp/RMS.h: - * plugins/ladspa_effect/caps/dsp/OnePole.h: - * plugins/ladspa_effect/caps/dsp/tonestack/tables.h: - * plugins/ladspa_effect/caps/dsp/tonestack/vs_tab.h: - * plugins/ladspa_effect/caps/dsp/tonestack/ks_tab.h: - * plugins/ladspa_effect/caps/dsp/Eq.h: - * plugins/ladspa_effect/caps/dsp/BiQuad.h: - * plugins/ladspa_effect/caps/dsp/util.h: - * plugins/ladspa_effect/caps/dsp/FPTruncateMode.h: - * plugins/ladspa_effect/caps/dsp/TwelveAX7.h: - * plugins/ladspa_effect/caps/Chorus.cc: - * plugins/ladspa_effect/caps/Cabinet.cc: - * plugins/ladspa_effect/caps/Chorus.h: - * plugins/ladspa_effect/caps/Eq.cc: - * plugins/ladspa_effect/caps/Cabinet.h: - * plugins/ladspa_effect/caps/Eq.h: - * plugins/ladspa_effect/caps/README: - * plugins/ladspa_effect/caps/Pan.cc: - * plugins/ladspa_effect/caps/SweepVF.cc: - * plugins/ladspa_effect/caps/Descriptor.h: - * plugins/ladspa_effect/caps/White.cc: - * plugins/ladspa_effect/caps/SweepVF.h: - * plugins/ladspa_effect/caps/Phaser.h: - * plugins/ladspa_effect/caps/Reverb.cc: - * plugins/ladspa_effect/caps/Makefile.am: - * plugins/ladspa_effect/caps/Reverb.h: - integrated new version of CAPS and fixed miscompilation with GCC 4.3 - - * include/audio_port.h: - * src/audio/audio_port.cpp: - * src/core/mixer.cpp: - lock audioPort-buffers before writing them - - * include/export_project_dialog.h: - * src/core/song.cpp: - * src/core/main.cpp: - * src/core/export_project_dialog.cpp: - * src/core/engine.cpp: - * src/core/automation_pattern.cpp: - rendering from commandline is now done without creating main-window - and all the other UI-stuff - - * include/mixer.h: - * src/core/mixer.cpp: - distribute whole job-queue instead of single jobs and re-assign - unprocessed jobs to idle worker-threads - improves multi-threading - behaviour a lot - -2008-02-26 Tobias Doerffel - - * include/mixer.h: - * src/core/mixer.cpp: - initial support for parallel rendering via worker-threads - far from - being perfect (especially with small mixer-period-sizes) but seems to - help even on a DualCore machine - -2008-02-25 Tobias Doerffel - - * plugins/ladspa_browser/ladspa_browser.cpp: - * plugins/ladspa_browser/ladspa_browser.h: - incorporated recent API-changes - - * include/effect.h: - * include/instrument_functions.h: - * include/envelope_and_lfo_parameters.h: - * include/tempo_sync_knob.h: - * src/widgets/envelope_and_lfo_view.cpp: - * src/widgets/tempo_sync_knob.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/effect.cpp: - * src/core/instrument_functions.cpp: - splitted tempoSyncKnob into tempoSyncKnobModel and tempoSyncKnob - - * include/meter_dialog.h: - * src/core/meter_dialog.cpp: - splitted into meterModel and meterDialog - - * plugins/flp_import/flp_import.cpp: - * include/instrument_track.h: - * include/piano.h: - * src/tracks/instrument_track.cpp: - * src/core/piano_roll.cpp: - * src/core/piano.cpp: - * Makefile.am: - renamed piano_widget.{h,cpp} to piano.{h,cpp} - - * include/instrument_view.h: - * include/instrument_track.h: - * src/widgets/instrument_function_views.cpp: - * src/widgets/group_box.cpp: - * src/widgets/automatable_button.cpp: - * src/tracks/instrument_track.cpp: - fixed various crashes when removing instrument-track with visible - instrument-track-window or loading another instrument/preset - - * src/core/instrument.cpp: - * include/oscillator.h: - cleanups - - * src/lib/mmp.cpp: - fixed tag-renaming-loops - - * include/automatable_model_templates.h: - instantiate automation-pattern before loading settings of it - fixes - crashes when loading projects with automation inside - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - track-window-creation on-demand - makes loading/unloading projects - ultra-fast!! - - * plugins/triple_oscillator/triple_oscillator.cpp: - fixed wrong index for saving/restoring modulation-algo-settings - - now projects sound like they did in pre-MV - - * include/automation_editor.h: - * include/combobox.h: - * src/core/song.cpp: - * src/core/piano_roll.cpp: - * src/core/track.cpp: - * src/core/automation_editor.cpp: - fixed zooming-comboboxes in automation-editor and header-dependencies - - * src/widgets/combobox.cpp: - update() after wheelEvent - - * include/tool.h: - * src/core/tool.cpp: - * plugins/live_tool/live_tool.h: - * plugins/live_tool/live_tool.cpp: - made live-tool work after M/V-split - - * include/track.h: - * src/core/track.cpp: - - connect track's m_mutedModel to m_muteBtn of trackOperationsWidget - - set track for m_mutedModel - -2008-02-24 Paul Giblock - - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/bit_invader.h: - * plugins/bit_invader/Makefile.am: - M/V-split of Bit Invader instrument. - - * plugins/vibed/nine_button_selector.cpp: - Removed debug output - - * src/widgets/graph.cpp: - * include/graph.h: - Fixed some graph issues. Still more left to do - -2008-02-22 Paul Giblock - - * plugins/vibed/vibed.cpp: - * plugins/vibed/vibed.h: - * plugins/vibed/string_container.cpp: - * plugins/vibed/string_container.h: - * plugins/vibed/nine_button_selector.cpp: - * plugins/vibed/nine_button_selector.h: - * plugins/vibed/Makefile.am: - M/V-split of Vibed-instrument. Lacks user-specified wave, to be added on - my next commit. Also has an audio output bug, certain notes make weird - noises - - * plugins/stereo_enhancer/stereoenhancer_controls.cpp: - * plugins/stereo_enhancer/stereoenhancer_controls.h: - * plugins/stereo_enhancer/stereo_enhancer.cpp: - * plugins/stereo_enhancer/stereo_enhancer.h: - * plugins/stereo_enhancer/stereoenhancer_control_dialog.cpp: - * plugins/stereo_enhancer/stereoenhancer_control_dialog.h: - * plugins/stereo_enhancer/Makefile.am: - M/V-split of Stereo-enhancer effect. - - * src/core/piano_roll.cpp: - Changed quantization to change on the gridlines, instead of nearest-point - in the middle. Made this change here, because MIDI events should still be - quantized to nearest-point (I think) - - * src/widgets/graph.cpp: - * include/graph.h: - * Makefile.am: - Split graph and moved it to the shared widgets. Supports variable ranges, - sample-lengths, smoothing, normalizing, and is antialiased - -2008-02-18 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_subplugin_features.h: - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - * plugins/vst_effect/vst_control_dialog.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * include/plugin.h: - * include/audio_file_device.h: - * include/export.h: - * include/export_project_dialog.h: - * src/core/song.cpp: - * src/core/export_project_dialog.cpp: - coding-style improvements - - * src/core/main_window.cpp: - made song-export work again - - * plugins/patman/patman.cpp: - * plugins/patman/patman.h: - M/V-split of Patman-instrument - -2008-02-18 Tobias Doerffel - - * plugins/flp_import/flp_import.h: - * plugins/flp_import/flp_import.cpp: - * plugins/midi_import/midi_import.h: - * plugins/midi_import/midi_import.cpp: - * include/instrument_functions.h: - * include/song.h: - * include/envelope_and_lfo_parameters.h: - * include/instrument_sound_shaping.h: - made MIDI- and FLP-import-filter work - -2008-02-15 Paul Giblock - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/plucked_string_synth/plucked_string_synth.h: - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - - Updated some instruments for M/V. Unfortunately one is an old version - and the other is obsoleted - -2008-02-16 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_controls.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/stk/Makefile.am: - * include/mmp.h: - * include/instrument_midi_io_view.h: - * include/track.h: - * include/engine.h: - * include/name_label.h: - * include/instrument_track.h: - * include/instrument_functions.h: - * include/piano_widget.h: - * include/song.h: - * include/pattern.h: - * include/file_browser.h: - * include/envelope_and_lfo_parameters.h: - * include/envelope_and_lfo_view.h: - * include/instrument_sound_shaping.h: - * include/instrument_function_views.h: - * include/instrument_midi_io.h: - * include/bb_track.h: - * include/song_editor.h: - * include/dummy_instrument.h: - * include/journalling_object.h: - * include/sample_track.h: - * include/timeline.h: - * include/main_window.h: - * include/mv_base.h: - * include/bb_editor.h: - * include/arp_and_chords_tab_widget.h: - * include/automation_track.h: - * include/track_container.h: - * include/instrument_sound_shaping_view.h: - * configure.in: - * src/midi/midi_alsa_seq.cpp: - * src/lib/project_journal.cpp: - * src/lib/mmp.cpp: - * src/lib/journalling_object.cpp: - * src/widgets/instrument_sound_shaping_view.cpp: - * src/widgets/envelope_and_lfo_view.cpp: - * src/widgets/instrument_function_views.cpp: - * src/widgets/instrument_midi_io_view.cpp: - * src/widgets/project_notes.cpp: - * src/widgets/effect_rack_view.cpp: - * src/widgets/automatable_button.cpp: - * src/widgets/tempo_sync_knob.cpp: - * src/tracks/automation_track.cpp: - * src/tracks/sample_track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/note_play_handle.cpp: - * src/core/track_container.cpp: - * src/core/song.cpp: - * src/core/import_filter.cpp: - * src/core/file_browser.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/mixer.cpp: - * src/core/main.cpp: - * src/core/export_project_dialog.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/piano_roll.cpp: - * src/core/instrument_functions.cpp: - * src/core/instrument_midi_io.cpp: - * src/core/track.cpp: - * src/core/engine.cpp: - * src/core/timeline.cpp: - * src/core/instrument.cpp: - * src/core/piano_widget.cpp: - * src/core/main_window.cpp: - * src/core/song_editor.cpp: - * src/core/mv_base.cpp: - * src/core/automation_pattern.cpp: - * src/core/name_label.cpp: - * src/core/automation_editor.cpp: - * src/core/bb_editor.cpp: - * Makefile.am: - finally splitted rest of LMMS, i.e. tracks, track-containers, - track-content-objects, whole instrument-track/instrument-track-window - and so on - still a bit unstable but I'm sure we'll manage to get this - one very stable! - - diffstat says: - 79 files changed, 8019 insertions(+), 6226 deletions(-) - -2008-02-01 Danny McRae - - * Makefile.am: - * src/tracks/instrument_track.cpp: - * src/core/note_play_handle.cpp: - * src/core/envelope_and_lfo_parameters.cpp: - * src/core/mixer.cpp: - * src/core/instrument_sound_shaping.cpp: - * src/core/instrument_midi_io.cpp: - * src/core/song_editor.cpp: - Some of the files have been renamed, so I updated the - include references to get the build to work again. - - * include/basic_filters.h: - Added the ability to clear the filter taps to support - a LPF where the threshold is set by the velocity of - the note. - - * configure.in: - * plugins/stk/voices/resonate/resonate_processor.h: - * plugins/stk/voices/voices/resonate/resonate_instrument.h: - * plugins/stk/voices/voices/resonate/resonate_model.cpp: - * plugins/stk/voices/voices/resonate/resonate_instrument_view.cpp: - * plugins/stk/voices/voices/resonate/artwork.png: - * plugins/stk/voices/voices/resonate/resonate_processor.cpp: - * plugins/stk/voices/voices/resonate/resonate_instrument_view.h: - * plugins/stk/voices/voices/resonate/resonate_instrument.cpp: - * plugins/stk/voices/voices/resonate/logo.png: - * plugins/stk/voices/voices/resonate/resonate_model.h: - * plugins/stk/voices/voices/resonate/Makefile.am: - * plugins/stk/voices/voices/flute/artwork.png: - * plugins/stk/voices/voices/flute/flute_processor.cpp: - * plugins/stk/voices/voices/flute/flute_instrument_view.h: - * plugins/stk/voices/voices/flute/flute_model.h: - * plugins/stk/voices/voices/flute/flute_processor.h: - * plugins/stk/voices/voices/flute/flute_model.cpp: - * plugins/stk/voices/voices/flute/logo.png: - * plugins/stk/voices/voices/flute/flute_instrument.h: - * plugins/stk/voices/voices/flute/Makefile.am: - * plugins/stk/voices/voices/flute/flute_instrument_view.cpp: - * plugins/stk/voices/voices/flute/flute_instrument.cpp: - * plugins/stk/voices/voices/metal/metal_processor.h: - * plugins/stk/voices/voices/metal/metal_instrument.cpp: - * plugins/stk/voices/voices/metal/metal_processor.cpp: - * plugins/stk/voices/voices/metal/artwork.png: - * plugins/stk/voices/voices/metal/metal_instrument_view.cpp: - * plugins/stk/voices/voices/metal/metal_instrument.h: - * plugins/stk/voices/voices/metal/logo.png: - * plugins/stk/voices/voices/metal/metal_instrument_view.h: - * plugins/stk/voices/voices/metal/metal_model.cpp: - * plugins/stk/voices/voices/metal/Makefile.am: - * plugins/stk/voices/voices/metal/metal_model.h: - * plugins/stk/voices/voices/fmvoices/fmvoices_instrument.cpp: - * plugins/stk/voices/voices/fmvoices/fmvoices_processor.h: - * plugins/stk/voices/voices/fmvoices/fmvoices_instrument.h: - * plugins/stk/voices/voices/fmvoices/artwork.png: - * plugins/stk/voices/voices/fmvoices/fmvoices_instrument_view.h: - * plugins/stk/voices/voices/fmvoices/fmvoices_instrument_view.cpp: - * plugins/stk/voices/voices/fmvoices/logo.png: - * plugins/stk/voices/voices/fmvoices/fmvoices_processor.cpp: - * plugins/stk/voices/voices/fmvoices/fmvoices_model.cpp: - * plugins/stk/voices/voices/fmvoices/fmvoices_model.h: - * plugins/stk/voices/voices/fmvoices/Makefile.am: - * plugins/stk/voices/voices/moog/moog_instrument_view.h: - * plugins/stk/voices/voices/moog/moog_instrument_view.cpp: - * plugins/stk/voices/voices/moog/moog_model.cpp: - * plugins/stk/voices/voices/moog/moog_processor.h: - * plugins/stk/voices/voices/moog/artwork.png: - * plugins/stk/voices/voices/moog/logo.png: - * plugins/stk/voices/voices/moog/moog_model.h: - * plugins/stk/voices/voices/moog/moog_instrument.h: - * plugins/stk/voices/voices/moog/moog_instrument.cpp: - * plugins/stk/voices/voices/moog/moog_processor.cpp: - * plugins/stk/voices/voices/moog/Makefile.am: - * plugins/stk/voices/voices/include/stk_instrument_view.h: - * plugins/stk/voices/voices/include/stk_voice.h: - * plugins/stk/voices/voices/include/stk_instrument.h: - * plugins/stk/voices/voices/include/stk_model.h: - * plugins/stk/voices/voices/include/stk_processor.h: - * plugins/stk/voices/voices/wurley/wurley_instrument.h: - * plugins/stk/voices/voices/wurley/wurley_instrument_view.cpp: - * plugins/stk/voices/voices/wurley/wurley_model.cpp: - * plugins/stk/voices/voices/wurley/wurley_instrument_view.h: - * plugins/stk/voices/voices/wurley/wurley_model.h: - * plugins/stk/voices/voices/wurley/artwork.png: - * plugins/stk/voices/voices/wurley/wurley_processor.h: - * plugins/stk/voices/voices/wurley/logo.png: - * plugins/stk/voices/voices/wurley/Makefile.am: - * plugins/stk/voices/voices/wurley/wurley_processor.cpp: - * plugins/stk/voices/voices/wurley/wurley_instrument.cpp: - * plugins/stk/voices/voices/bowed/bowed_instrument.cpp: - * plugins/stk/voices/voices/bowed/bowed_model.cpp: - * plugins/stk/voices/voices/bowed/bowed_instrument_view.cpp: - * plugins/stk/voices/voices/bowed/bowed_model.h: - * plugins/stk/voices/voices/bowed/bowed_processor.h: - * plugins/stk/voices/voices/bowed/artwork.png: - * plugins/stk/voices/voices/bowed/bowed_processor.cpp: - * plugins/stk/voices/voices/bowed/logo.png: - * plugins/stk/voices/voices/bowed/bowed_instrument_view.h: - * plugins/stk/voices/voices/bowed/Makefile.am: - * plugins/stk/voices/voices/bowed/bowed_instrument.h: - * plugins/stk/voices/voices/blow_hole/blow_hole_instrument.cpp: - * plugins/stk/voices/voices/blow_hole/blow_hole_instrument_view.cpp: - * plugins/stk/voices/voices/blow_hole/artwork.png: - * plugins/stk/voices/voices/blow_hole/blow_hole_model.h: - * plugins/stk/voices/voices/blow_hole/blow_hole_processor.h: - * plugins/stk/voices/voices/blow_hole/logo.png: - * plugins/stk/voices/voices/blow_hole/blow_hole_processor.cpp: - * plugins/stk/voices/voices/blow_hole/blow_hole_instrument_view.h: - * plugins/stk/voices/voices/blow_hole/blow_hole_model.cpp: - * plugins/stk/voices/voices/blow_hole/Makefile.am: - * plugins/stk/voices/voices/blow_hole/blow_hole_instrument.h: - * plugins/stk/voices/voices/rhodey/rhodey_instrument_view.h: - * plugins/stk/voices/voices/rhodey/rhodey_processor.h: - * plugins/stk/voices/voices/rhodey/rhodey_processor.cpp: - * plugins/stk/voices/voices/rhodey/rhodey_instrument_view.cpp: - * plugins/stk/voices/voices/rhodey/artwork.png: - * plugins/stk/voices/voices/rhodey/rhodey_model.cpp: - * plugins/stk/voices/voices/rhodey/rhodey_model.h: - * plugins/stk/voices/voices/rhodey/rhodey_instrument.h: - * plugins/stk/voices/voices/rhodey/logo.png: - * plugins/stk/voices/voices/rhodey/rhodey_instrument.cpp: - * plugins/stk/voices/voices/rhodey/Makefile.am: - * plugins/stk/voices/voices/tubebell/tubebell_processor.cpp: - * plugins/stk/voices/voices/tubebell/tubebell_instrument_view.h: - * plugins/stk/voices/voices/tubebell/artwork.png: - * plugins/stk/voices/voices/tubebell/tubebell_instrument.h: - * plugins/stk/voices/voices/tubebell/tubebell_instrument.cpp: - * plugins/stk/voices/voices/tubebell/tubebell_model.h: - * plugins/stk/voices/voices/tubebell/logo.png: - * plugins/stk/voices/voices/tubebell/tubebell_model.cpp: - * plugins/stk/voices/voices/tubebell/tubebell_instrument_view.cpp: - * plugins/stk/voices/voices/tubebell/Makefile.am: - * plugins/stk/voices/voices/tubebell/tubebell_processor.h: - * plugins/stk/voices/voices/clarinet/clarinet_instrument.cpp: - * plugins/stk/voices/voices/clarinet/artwork.png: - * plugins/stk/voices/voices/clarinet/clarinet_processor.h: - * plugins/stk/voices/voices/clarinet/clarinet_processor.cpp: - * plugins/stk/voices/voices/clarinet/clarinet_instrument.h: - * plugins/stk/voices/voices/clarinet/clarinet_model.cpp: - * plugins/stk/voices/voices/clarinet/logo.png: - * plugins/stk/voices/voices/clarinet/clarinet_instrument_view.cpp: - * plugins/stk/voices/voices/clarinet/clarinet_model.h: - * plugins/stk/voices/voices/clarinet/Makefile.am: - * plugins/stk/voices/voices/clarinet/clarinet_instrument_view.h: - * plugins/stk/voices/voices/b3/b3_instrument.cpp: - * plugins/stk/voices/voices/b3/b3_model.h: - * plugins/stk/voices/voices/b3/b3_model.cpp: - * plugins/stk/voices/voices/b3/artwork.png: - * plugins/stk/voices/voices/b3/b3_instrument_view.h: - * plugins/stk/voices/voices/b3/logo.png: - * plugins/stk/voices/voices/b3/b3_processor.h: - * plugins/stk/voices/voices/b3/b3_instrument_view.cpp: - * plugins/stk/voices/voices/b3/b3_instrument.h: - * plugins/stk/voices/voices/b3/b3_processor.cpp: - * plugins/stk/voices/voices/b3/Makefile.am: - * plugins/stk/voices/voices/src/stk_model.cpp: - * plugins/stk/voices/voices/percflute/percflute_instrument.h: - * plugins/stk/voices/voices/percflute/percflute_model.h: - * plugins/stk/voices/voices/percflute/percflute_instrument_view.h: - * plugins/stk/voices/voices/percflute/percflute_processor.cpp: - * plugins/stk/voices/voices/percflute/percflute_processor.h: - * plugins/stk/voices/voices/percflute/artwork.png: - * plugins/stk/voices/voices/percflute/percflute_instrument_view.cpp: - * plugins/stk/voices/voices/percflute/percflute_instrument.cpp: - * plugins/stk/voices/voices/percflute/logo.png: - * plugins/stk/voices/voices/percflute/percflute_model.cpp: - * plugins/stk/voices/voices/percflute/Makefile.am: - * plugins/stk/voices/voices/blow_bottle/blow_bottle_processor.cpp: - * plugins/stk/voices/voices/blow_bottle/blow_bottle_model.h: - * plugins/stk/voices/voices/blow_bottle/blow_bottle_model.cpp: - * plugins/stk/voices/voices/blow_bottle/artwork.png: - * plugins/stk/voices/voices/blow_bottle/blow_bottle_processor.h: - * plugins/stk/voices/voices/blow_bottle/blow_bottle_instrument.h: - * plugins/stk/voices/voices/blow_bottle/blow_bottle_instrument_view.cpp: - * plugins/stk/voices/voices/blow_bottle/logo.png: - * plugins/stk/voices/voices/blow_bottle/blow_bottle_instrument_view.h: - * plugins/stk/voices/voices/blow_bottle/blow_bottle_instrument.cpp: - * plugins/stk/voices/voices/blow_bottle/Makefile.am: - * plugins/stk/voices/voices/Makefile.am: - * plugins/stk/voices/voices/brass/brass_instrument_view.h: - * plugins/stk/voices/voices/brass/brass_instrument.cpp: - * plugins/stk/voices/voices/brass/brass_processor.h: - * plugins/stk/voices/voices/brass/brass_processor.cpp: - * plugins/stk/voices/voices/brass/brass_instrument_view.cpp: - * plugins/stk/voices/voices/brass/artwork.png: - * plugins/stk/voices/voices/brass/brass_instrument.h: - * plugins/stk/voices/voices/brass/logo.png: - * plugins/stk/voices/voices/brass/brass_model.cpp: - * plugins/stk/voices/voices/brass/brass_model.h: - * plugins/stk/voices/voices/brass/Makefile.am: - * plugins/stk/voices/voices/bandedwg/bandedwg_processor.h: - * plugins/stk/voices/voices/bandedwg/bandedwg_instrument_view.h: - * plugins/stk/voices/voices/bandedwg/bandedwg_processor.cpp: - * plugins/stk/voices/voices/bandedwg/artwork.png: - * plugins/stk/voices/voices/bandedwg/bandedwg_model.h: - * plugins/stk/voices/voices/bandedwg/bandedwg_instrument.h: - * plugins/stk/voices/voices/bandedwg/bandedwg_instrument.cpp: - * plugins/stk/voices/voices/bandedwg/bandedwg_instrument_view.cpp: - * plugins/stk/voices/voices/bandedwg/logo.png: - * plugins/stk/voices/voices/bandedwg/bandedwg_model.cpp: - * plugins/stk/voices/voices/bandedwg/Makefile.am: - Started working on a multitimbral instrument that uses all of the - voices available in STK. Need to work out the differences in - level among the voices and figure out what the controls actually - do. Simplist way to do that was to build them as individual - instruments first. The models, views, and processors should be - reusable for the larger instrument. Except for bandedwg and - flute they all work, so if you're curious, add "voices" to the - Makefile.am in plugins/stk to get them to build. - -2007-01-30 Paul Giblock - - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - Began split on Organic. But doesn't show in instrument list - - * plugins/lb302/lb302.cpp: - Fixed comments - -2008-01-28 Paul Giblock - - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - finished LB302 M/V-split. however, more changes can be made to meet - the coding guidelines. Let's save this job for LB303 - - * include/automatable_model.h: - cleaned up code for boolModel - -2008-01-26 Tobias Doerffel - - * src/widgets/automatable_button.cpp: - - call updateButtons() after model-change - - use model()->value() rather than value() - - * plugins/triple_oscillator/triple_oscillator.cpp: - fixed upper boundaries for wave-shape- and modulation-algo-models - -2008-01-26 Tobias Doerffel - - * plugins/triple_oscillator/triple_oscillator.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - initial M/V-split - lots of debugging and cleanups pending, however - basically works :) - - * include/transformable_auto_model.h: - added transformableAutoModel-class which is not used yet but might be - helpful in some cases in the future - - * include/oscillator.h: - * src/lib/oscillator.cpp: - - changed coding-style for enum-constants - - use model for external wave-shape- and modulation-algo-parameter - - * src/widgets/ladspa_control_view.cpp: - added missing header - - * src/widgets/automatable_button.cpp: - update buttons after changing button-group's value - -2008-01-24 Tobias Doerffel - - * include/types.h: - replaced own buggy valueRanges-calculations by numeric_limits-class - - * plugins/lb302/lb302.cpp: - fixed broken plugin-entry-point - - * configure.in: - * plugins/bass_booster/bass_booster.cpp: - * plugins/bass_booster/bassbooster_controls.cpp: - * plugins/stk/mallets/mallets.cpp: - * include/automatable_model.h: - * include/journalling_object.h: - * src/audio/audio_file_device.cpp: - * src/audio/audio_alsa.cpp: - * src/audio/audio_oss.cpp: - * src/audio/audio_port.cpp: - * src/audio/audio_jack.cpp: - * src/midi/midi_alsa_seq.cpp: - * src/lib/project_journal.cpp: - * src/lib/mmp.cpp: - * src/lib/drumsynth.cpp: - * src/widgets/group_box.cpp: - * src/tracks/instrument_track.cpp: - * src/core/effect_chain.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/effect_control_dialog.cpp: - * src/core/setup_dialog.cpp: - * src/core/main.cpp: - * src/core/mixer.cpp: - * src/core/effect.cpp: - * src/core/timeline.cpp: - * src/core/effect_select_dialog.cpp: - * src/core/automation_editor.cpp: - * src/core/meter_dialog.cpp: - various fixes for GCC 4.3 - - * README: - cleanups / fixes - - * include/automatable_model.h: - cleanups / coding-style fixes - -2008-01-24 Paul Giblock - - * include/automatable_model.h: - * src/widgets/knob.cpp: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/effect.cpp: - * src/core/ladspa_control.cpp: - * src/core/envelope_tab_widget.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - add boolModel subclass in order to simplify the constructor - - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - split lb302 for M/V. However, lmms_plugin_main() receives null data, - which means the instrumentTrack cannot be set.. - -2008-01-18 Tobias Doerffel - - * src/core/effect_chain.cpp: - * src/lib/mmp.cpp: - added upgrade-path in order to properly load projects not using the - new effect-data-structure - - * plugins/bass_booster/bass_booster.h: - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/vst_effect/vst_effect.h: - removed nodeName()-function as effects must not overload it (they have - descriptors with they unique name in it) - - * include/effect_rack_view.h: - * src/widgets/effect_rack_view.cpp: - renamed updateView() to update() in order to also track - dataChanged()-signals of model without an additional connection - - * src/widgets/combobox.cpp: - fixed painting - - * src/widgets/ladspa_control_view.cpp: - * plugins/ladspa_effect/ladspa_control_dialog.cpp: - made control-layouting work again (did not work at all after Qt4-port) - - * src/core/ladspa_control.cpp: - added initialization for m_link-member-variable, optimized - linkEnabledModel-initialization - - * src/widgets/knob.cpp: - * plugins/ladspa_effect/ladspa_controls.cpp: - coding style fixes - - * Makefile.am: - moved ladspa_control_view.cpp to src/widgets/ - -2008-01-17 Tobias Doerffel - - * plugins/ladspa_effect/Makefile.am: - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_controls.h: - * plugins/ladspa_effect/ladspa_controls.cpp: - * plugins/ladspa_effect/ladspa_control_dialog.h: - * plugins/ladspa_effect/ladspa_control_dialog.cpp: - made work again after all the changes in the last days... - - * Makefile.am: - * include/ladspa_control.h: - * include/ladspa_control_view.h: - * src/core/ladspa_control.cpp: - * src/core/ladspa_control_view.cpp: - splitted ladspaControl-class into ladspaControl and ladspaControlView - -2008-01-14 Tobias Doerffel - - * plugins/bass_booster/bassbooster_controls.h: - * plugins/bass_booster/bass_booster.cpp: - * plugins/bass_booster/bassbooster_control_dialog.cpp: - * plugins/bass_booster/Makefile.am: - * plugins/bass_booster/bassbooster_controls.cpp: - * plugins/bass_booster/bass_booster.h: - * plugins/bass_booster/bassbooster_control_dialog.h: - made work with M/V as well as rewritten effect-framework - - * include/effect.h: - * include/effect_control_dialog.h: - * include/dummy_effect.h: - * include/effect_controls.h: - * src/widgets/effect_view.cpp: - * src/core/effect_control_dialog.cpp: - * src/core/effect.cpp: - * Makefile.am: - split off effectControlDialog into effectControlDialog and - effectControls - - * src/core/song_editor.cpp: - also connect to dataUnchanged()-signal of tempo-model in order to - setup everything correct by connected slot - - * configure.in: - - removed single-source-compile-feature - - made FASTCALL-usage optional for the time being - - * data/locale/de.ts: - * data/locale/de.qm: - updated German localization - -2008-01-09 Paul Giblock - - * acinclude.m4: - use pkg-config for more accurate Qt directory detection - -2008-01-06 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/bass_booster/bass_booster.cpp: - * plugins/bass_booster/bass_booster.h: - * plugins/vst_effect/vst_effect.cpp: - changes for making effects work again with new effect-framework - - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/stk/mallets/mallets.cpp: - * plugins/stk/mallets/mallets.h: - * plugins/ladspa_browser/ladspa_browser.cpp: - * plugins/ladspa_browser/ladspa_browser.h: - * plugins/kicker/kicker.cpp: - * plugins/kicker/kicker.h: - * include/dummy_plugin.h: - * include/instrument.h: - * include/plugin.h: - * include/tool.h: - * include/main_window.h: - * include/mv_base.h: - * include/dummy_instrument.h: - * src/core/plugin.cpp: - * src/core/tool.cpp: - * src/core/import_filter.cpp: - * src/core/instrument.cpp: - * src/core/surround_area.cpp: - * src/core/main_window.cpp: - moved createView()-functionality from instrument- to plugin-class - - * include/tab_widget.h: - code-formatting stuff - - * include/audio_port.h: - * include/instrument_track.h: - * include/sample_track.h: - * src/audio/audio_port.cpp: - * src/core/sample_play_handle.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - integrated new effect-framework - - * Makefile.am: - * include/dummy_effect.h: - * include/effect.h: - * include/effect_chain.h: - * include/effect_control_dialog.h: - * include/effect_label.h: - * include/effect_rack_view.h: - * include/effect_select_dialog.h: - * include/effect_tab_widget.h: - * include/effect_view.h: - * src/core/effect.cpp: - * src/core/effect_chain.cpp: - * src/core/effect_control_dialog.cpp: - * src/core/effect_select_dialog.cpp: - * src/core/effect_tab_widget.cpp: - * src/widgets/effect_label.cpp: - * src/widgets/effect_view.cpp: - * src/widgets/effect_rack_view.cpp: - rewrote view-component of effect-framework and removed effectTabWidget - - * include/automatable_model.h: - * src/widgets/automatable_slider.cpp: - * src/widgets/group_box.cpp: - * src/widgets/lcd_spinbox.cpp: - * src/widgets/combobox.cpp: - * src/widgets/knob.cpp: - * src/widgets/automatable_button.cpp: - pass model-pointer to modelView-constructor - -2008-01-05 Tobias Doerffel - - * plugins/organic/organic.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/stk/mallets/mallets.cpp: - make sure, pluginData-pointer is always initialized in playNote() - - * src/core/envelope_and_lfo_widget.cpp: - simple range-checking - -2008-01-04 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_control_dialog.cpp: - * plugins/ladspa_effect/ladspa_control_dialog.h: - minor fixes in order to compile again with lately changed effect-API - - * src/core/effect_tab_widget.cpp: - * src/lib/mmp.cpp: - renabled XML-attribute "fxdisabled" to "fxenabled" - - * src/core/effect_tab_widget.cpp: - * include/effect_tab_widget.h: - made effects working again by using effect-chain's m_enabledModel as - model for effect-groupbox - - * include/effect_chain.h: - * src/core/effect_chain.cpp: - * src/core/effect_tab_widget.cpp: - removed bypassed-property and introduced m_enabledModel - - * include/effect.h: - - made lot of methods const - - renamed enabled() to isEnabled() - -2008-01-04 Tobias Doerffel - - * src/core/bb_editor.cpp: - fix missing pattern in new projects by also tracking - dataUnchanged()-signals of bbComboBoxModel - - * include/automatable_model_templates.h: - * include/mv_base.h: - added dataUnchanged()-signal which should be emitted in case new data - was not set for the model because it's been equal to old data - -2008-01-04 Tobias Doerffel - - * plugins/stk/mallets/mallets.h: - * plugins/stk/mallets/mallets.cpp: - fixed outstanding issues with LED-checkbox and its model - -2008-01-04 Tobias Doerffel - - * include/group_box.h: - * src/widgets/group_box.cpp: - removed animation-functionality as it's useless - - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/envelope_tab_widget.cpp: - fixed boolModel-initializations - makes filter, arpeggio and chords - work again - -2008-01-03 Danny McRae - - * plugins/stk/mallets/mallets.h: - * plugins/stk/mallets/mallets.cpp: - made plugin work with M/V-architecture - -2008-01-03 Tobias Doerffel - - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - made plugin work with M/V-architecture - - * include/engine.h: - * include/plugin.h: - * src/core/engine.cpp: - fixes regarding coding style guidelines - -2008-01-02 Tobias Doerffel - - * plugins/kicker/kicker.cpp: - * plugins/kicker/kicker.h: - made plugin work with M/V-architecture - - * include/instrument.h: - * include/dummy_instrument.h: - * include/mv_base.h: - * src/tracks/instrument_track.cpp: - * src/core/instrument.cpp: - M/V-split for instrument-tracks - -2008-01-02 Tobias Doerffel - - * include/dummy_effect.h: - * src/core/effect.cpp: - make dummyEffect really work in case we need it - -2008-01-02 Tobias Doerffel - - * include/knob.h: - * include/effect.h: - * include/automatable_slider.h: - * include/lcd_spinbox.h: - * include/meter_dialog.h: - * include/midi_tab_widget.h: - * include/instrument_track.h: - * include/ladspa_control.h: - * include/piano_widget.h: - * include/detuning_helper.h: - * include/sample_play_handle.h: - * include/piano_roll.h: - * include/group_box.h: - * include/envelope_tab_widget.h: - * include/song_editor.h: - * include/automatable_button.h: - * include/tempo_sync_knob.h: - * include/journalling_object.h: - * include/setup_dialog.h: - * include/export_project_dialog.h: - * include/pixmap_button.h: - * include/sample_track.h: - * include/surround_area.h: - * include/volume_knob.h: - * include/bb_editor.h: - * include/rack_plugin.h: - * include/arp_and_chords_tab_widget.h: - * include/envelope_and_lfo_widget.h: - * include/combobox.h: - * include/led_checkbox.h: - * configure.in: - * src/audio/audio_alsa.cpp: - * src/audio/audio_oss.cpp: - * src/audio/audio_jack.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/automatable_slider.cpp: - * src/widgets/lcd_spinbox.cpp: - * src/widgets/group_box.cpp: - * src/widgets/combobox.cpp: - * src/widgets/led_checkbox.cpp: - * src/widgets/volume_knob.cpp: - * src/widgets/pixmap_button.cpp: - * src/widgets/knob.cpp: - * src/widgets/automatable_button.cpp: - * src/widgets/tempo_sync_knob.cpp: - * src/tracks/sample_track.cpp: - * src/tracks/instrument_track.cpp: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/envelope_and_lfo_widget.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/note_play_handle.cpp: - * src/core/midi_tab_widget.cpp: - * src/core/setup_dialog.cpp: - * src/core/sample_play_handle.cpp: - * src/core/export_project_dialog.cpp: - * src/core/effect.cpp: - * src/core/piano_roll.cpp: - * src/core/track.cpp: - * src/core/ladspa_control.cpp: - * src/core/note.cpp: - * src/core/envelope_tab_widget.cpp: - * src/core/instrument.cpp: - * src/core/piano_widget.cpp: - * src/core/surround_area.cpp: - * src/core/song_editor.cpp: - * src/core/automation_pattern.cpp: - * src/core/effect_tab_widget.cpp: - * src/core/automation_editor.cpp: - * src/core/bb_editor.cpp: - * src/core/meter_dialog.cpp: - * Makefile.am: - adaption of M/V-architecture - - * include/automatable_object_templates.h: - * include/automatable_object.h: - removed as replaced by automatable_model.h and - automatable_model_templates.h - - * include/mv_base.h: - * src/core/mv_base.cpp: - * include/automatable_model.h: - * include/automatable_model_templates.h: - added base-files for new M/V-architecture - - * src/widgets/rack_plugin.cpp: - fixed wrong signal-slot-connection which made gate-parameter of - effects not working - - * src/core/track_container.cpp: - when removing tracks start removing at the end of track-vector (i.e. - use m_trackWidgets.last() instead of m_trackWidgets.first()) - speeds - up things *a lot* - - * README: - * src/core/about_dialog.cpp: - fixed version and extended copyright from 2007 to 2008 - -2007-12-18 Tobias Doerffel - - * plugins/midi_import/midi_import.cpp: - load Patman-plugin instead of TripleOsc and try to load patch - according to program-change-events - -2007-12-14 Paul Wayper - - * include/volume_knob.h: - * src/widgets/volume_knob.cpp: - * src/core/setup_dialog.cpp: - * data/locale/nl.ts: - * data/locale/it.ts: - * data/locale/ca.ts: - * data/locale/ru.ts: - * data/locale/de.ts: - * data/locale/sv.ts: - Changed dbV to dBV throughout - -2007-12-12 Javier Serrano Polo - - * include/setup_dialog.h: - * src/core/setup_dialog.cpp: - - removed negative wording in general settings - - removed GIMP references - - * data/locale/ca.ts: - updated translation - -2007-12-11 Javier Serrano Polo - - * include/automation_editor.h: - * include/piano_roll.h: - * src/core/automation_editor.cpp: - * src/core/piano_roll.cpp: - optimized paint events - - * data/themes/default/style.css: - * src/core/automation_editor.cpp: - * src/core/piano_roll.cpp: - use styled background - - * src/core/track_container.cpp: - update display after loading settings - -2007-12-07 Javier Serrano Polo - - * include/main_window.h: - * include/song_editor.h: - * src/core/file_browser.cpp: - * src/core/main_window.cpp: - * src/core/song_editor.cpp: - use custom modified project indicator, fixed - - * include/bb_editor.h: - * include/song_editor.h: - * include/track.h: - * include/track_container.h: - * src/core/bb_editor.cpp: - * src/core/song_editor.cpp: - * src/core/track.cpp: - * src/core/track_container.cpp: - * src/tracks/pattern.cpp: - * src/tracks/sample_track.cpp: - added layouts, fixes scrolling - - * include/track.h: - * include/track_container.h: - * src/core/bb_editor.cpp: - * src/core/song_editor.cpp: - * src/core/track.cpp: - * src/core/track_container.cpp: - * src/tracks/bb_track.cpp: - associate track containers with tracks directly - - * src/core/track.cpp: - * src/core/track_container.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - simplified updateAfterTrackAdd() calls - - * data/themes/default/style.css: - * src/core/track.cpp: - use style sheet painting - - * include/track.h: - * src/core/track.cpp: - removed discouraged repaint() - - * include/bb_editor.h: - * include/song_editor.h: - * src/core/bb_editor.cpp: - * src/core/song_editor.cpp: - * src/widgets/project_notes.cpp: - use default close event handler - - * src/core/bb_editor.cpp: - * src/core/track.cpp: - removed trivial asserts - - * data/locale/ca.ts: - updated translation - -2007-11-27 Tobias Doerffel - - * include/plugin.h: - * include/base64.h: - * src/lib/base64.cpp: - fixed loading of base64-encoded data being generated via Qt3-version - of QDataStream-class - -2007-11-27 Javier Serrano Polo - - * include/main_window.h: - * include/song_editor.h: - * src/core/engine.cpp: - * src/core/main_window.cpp: - * src/core/song_editor.cpp: - * src/lib/project_journal.cpp: - added modified project indicator - - * include/ladspa_base.h: - * include/plugin.h: - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - * plugins/ladspa_effect/ladspa_subplugin_features.h: - fixed invalid key segfault - - * src/core/main_window.cpp: - fixed instrument track visual glitches when loading - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - removed QMdiSubWindow inheritance, fixes MDI focus segfault - - * src/core/track_container.cpp: - fixed interrupted loading segfault - - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_effect.h: - removed singleton reference - - * src/core/config_mgr.cpp: - integrated mkPath() calls - - * plugins/ladspa_browser/ladspa_browser.cpp: - centralized title change - - * include/song_editor.h: - * src/core/song_editor.cpp: - reduced dependencies - - * data/locale/ca.ts: - updated translation - -2007-11-26 Paul Giblock - - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - reverted to old lb302. There is a bug in sound output, will look - into it, but I'd rather have a working repository - - * data/presets/LB302/Oh Synth.cs.xml: - new preset - -2007-11-24 Paul Giblock - - * plugins/lb302/lb302.cpp: - re-enabled lb302 background - - * plugins/lb302/artwork.png: - updated skin I had sitting around - -2007-11-23 Paul Giblock - - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - reformated code to match code style rules - - * src/widgets/tool_button.cpp: - improved appearance of toolbar buttons - -2007-11-23 Tobias Doerffel - - * plugins/ladspa_browser/ladspa_browser.cpp: - improved layout - - * src/widgets/tab_bar.cpp: - - improved layout - - change icon-size-property for tabButtons in order to make them look - as in 0.3.x - -2007-11-23 Javier Serrano Polo - - * Makefile.am: - * plugins/ladspa_browser/ladspa_browser.cpp: - * plugins/ladspa_browser/ladspa_browser.h: - * plugins/ladspa_browser/ladspa_description.cpp: - * plugins/ladspa_browser/ladspa_description.h: - * plugins/ladspa_browser/ladspa_port_dialog.cpp: - * plugins/ladspa_browser/ladspa_port_dialog.h: - * plugins/ladspa_browser/logo.png: - * plugins/ladspa_browser/Makefile.am: - * plugins/Makefile.am: - resurrected LADSPA browser - - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - minor simplification - - * src/core/song_editor.cpp: - * src/widgets/automatable_slider.cpp: - upgraded automatable sliders to Qt4 - - * configure.in: - * include/engine.h: - * plugins/Makefile.am: - * src/core/config_mgr.cpp: - * src/core/engine.cpp: - removed references to optional LADSPA support - - * data/themes/default/style.css: - * src/core/main_window.cpp: - moved workspace background to style sheet - - * src/core/main_window.cpp: - added workspace scroll bars - - * include/track_container.h: - * src/core/song_editor.cpp: - removed obsolete centralWiget() - - * plugins/live_tool/live_tool.cpp: - * plugins/live_tool/live_tool.h: - fixed i18n - - * plugins/live_tool/live_tool.cpp: - cosmetic changes - - * data/locale/ca.ts: - updated translation - - * resources/*: - removed unused images - -2007-11-22 Paul Giblock - - * src/widgets/text_float.cpp: - * src/core/track.cpp: - - fixed segfaults from clicking on track content objects after loading a - project. - - I don't have a copy of 3.1 to reference, so I don't know where the - textFloat is normally displayed. Feel free to adjust. - -2007-11-21 Tobias Doerffel - - * src/lib/sample_buffer.cpp: - - duplicate ASCII-string from file.toAscii().constData() in order to not - get corrupted - fixes random problems with loading OGG-files - - sample-visualization now floating-point-based - - * src/widgets/combobox.cpp: - fixed text-drawing - - * src/widgets/led_checkbox.cpp: - * src/widgets/tab_widget.cpp: - added workarounds for obviously non-working font-property - - * src/widgets/knob.cpp: - - knob::drawKnob( ... ) now completely works with floats - - use anti-aliasing when drawing tick - - * src/tracks/sample_track.cpp: - fixed painting of sample-TCO's - - * src/core/arp_and_chords_tab_widget.cpp: - removed obviously non-working comboBox::setFont( ... )-calls - - * src/core/envelope_and_lfo_widget.cpp: - use line-width of 1.5 instead of 2 for drawing LFO - - * src/core/main.cpp: - do not set default font-size - - * data/locale/de.ts: - * data/locale/de.qm: - fixed German localization - -2007-11-20 Javier Serrano Polo - - * include/drumsynth.h: - * licenses/drumsynth.LICENSE: - * src/lib/drumsynth.cpp: - relicensed under GPL, thanks to Paul Kellett. - - * src/lib/sample_buffer.cpp: - fixed Vorbis loading - - * include/effect_label.h: - * plugins/live_tool/live_tool.cpp: - * src/core/automation_editor.cpp: - * src/core/bb_editor.cpp: - * src/core/effect_tab_widget.cpp: - * src/core/main_window.cpp: - * src/core/song_editor.cpp: - * src/core/tool.cpp: - * src/widgets/effect_label.cpp: - * src/widgets/project_notes.cpp: - fixed MDI windows - - * include/main_window.h: - * src/core/automation_editor.cpp: - * src/core/main_window.cpp: - * src/core/piano_roll.cpp: - * src/core/song_editor.cpp: - fixed non-MDI mode - - * include/automatable_button.h: - * src/widgets/automatable_button.cpp: - inherit from QPushButton - - * include/tool.h: - * plugins/live_tool/live_tool.cpp: - * plugins/live_tool/live_tool.h: - * src/core/main_window.cpp: - * src/core/tool.cpp: - simplified tool interface - - * plugins/live_tool/live_tool.cpp: - fixed instrument toggling - - * plugins/live_tool/live_tool.cpp: - * plugins/live_tool/live_tool.h: - fixed focus bug - - * include/effect_label.h: - * src/widgets/effect_label.cpp: - simplified window management - - * include/effect_label.h: - * include/main_window.h: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_effect/vst_effect.h: - * src/core/track_container.cpp: - reduced dependencies - - * data/samples/drumsynth/misc_bass/Makefile.am: - * data/samples/drumsynth/misc_claps/Makefile.am: - * data/samples/drumsynth/misc_electro/Makefile.am: - * data/samples/drumsynth/misc_fx/Makefile.am: - * data/samples/drumsynth/misc_hats/Makefile.am: - * data/samples/drumsynth/misc_perc/Makefile.am: - * data/samples/drumsynth/misc_synth/Makefile.am: - * data/samples/drumsynth/r_b/Makefile.am: - replaced more filenames with underscores, thanks to Vik. - -2007-11-20 Paul Giblock - - * src/core/main_window: - fixed flashing/moving windows on project load - - * src/core/song_editor.cpp: - inverted direction of master-volume and master-pitch sliders - -2007-11-19 Paul Giblock - - * plugins/midi_import/midi_import.cpp: - fixed debugging code so file would compile - -2007-11-18 Paul Giblock - - * include/track_container.h: - removed some obsolete functions - -2007-11-18 Tobias Doerffel - - * plugins/vst_base/lvsl_client.cpp: - fixed usage of QMdiArea instead of QWorkspace - - * include/main_window.h: - added inclusion of QMdiArea-header - - * include/track_container.h: - fixed some code to match coding-style-guidelines - - * acinclude.m4: - reverted Paul's private changes - -2007-11-18 Paul Giblock - - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/bass_booster/bass_booster.h: - * plugins/stereo_enhancer/stereoenhancer_control_dialog.cpp - * plugins/stereo_enhancer/stereoenhancer_control_dialog.h - * include/main_window.h: - * include/instrument_track.h: - * include/track_container.h: - * src/widgets/rack_plugin.cpp: - * src/widgets/project_notes.cpp: - * src/widgets/tempo_sync_knob.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * src/core/track_container.cpp: - * src/core/tool.cpp: - * src/core/file_browser.cpp: - * src/core/main.cpp: - * src/core/piano_roll.cpp: - * src/core/main_window.cpp: - * src/core/song_editor.cpp: - * src/core/automation_pattern.cpp: - * src/core/automation_editor.cpp: - * src/core/bb_editor.cpp: - Replaced references to QWorkspace, made everything work with QMdiArea - - * include/main_window.h: - mainWindow::workspace() now returns a QMdiArea - - * include/rack_plugin.h: - Add m_subWindow to track QMdiSubWindow independently of the - control dialog - - * include/track_container.h: - Emulate centralWidget by returning this pointer - - * AUTHORS: - Added Paul Giblock as an author - - * src/core/track_container.cpp: - Adding a subwindow before the widget is fully constructed causes - problems: no icon, no geometry, and sometime multiple windows. - Force each subclass to do their own workspace()->addWindow() - - * src/core/main_window.cpp: - toggling of subWindows is performed on the parentWidgets. However, - things like instrumentTrack are actually QMdiSubWindows themselves - -2007-11-14 Javier Serrano Polo - - * configure.in: - * data/samples/drumsynth/*: - * data/samples/Makefile.am: - * include/drumsynth.h: - * include/sample_buffer.h: - * licenses/drumsynth.LICENSE: - * Makefile.am: - * plugins/audio_file_processor/audio_file_processor.cpp: - * src/lib/drumsynth.cpp: - * src/lib/sample_buffer.cpp: - imported DrumSynth from 0.3 branch - - * include/sample_buffer.h: - * plugins/audio_file_processor/artwork.png: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * src/lib/sample_buffer.cpp: - dropped dot drawing method - - * src/lib/sample_buffer.cpp: - - fixed DrumSynth support when missing Vorbis - - use working line drawing method from 0.3 branch - - * plugins/audio_file_processor/audio_file_processor.cpp: - fixed sample display - - * src/core/track.cpp: - * src/core/track_container.cpp: - fixed track removal segfault - - * data/locale/ca.ts: - updated translation - -2007-11-12 Tobias Doerffel - - * plugins/stereo_enhancer/stereo_enhancer.h: - * plugins/stereo_enhancer/stereo_enhancer.cpp: - * plugins/stereo_enhancer/stereoenhancer_control_dialog.h: - * plugins/stereo_enhancer/stereoenhancer_control_dialog.cpp: - * plugins/stereo_enhancer/Makefile.am: - added StereoEnhancer-plugin from - Lou Herard - -2007-11-12 Tobias Doerffel - - * plugins/ladspa_effect/caps/basics.h: - * plugins/ladspa_effect/caps/interface.cc: - * configure.in: - small fixes for cross-compilation - - * Makefile.am: - * src/core/ladspa_base.cpp: - removed as obsolete - -2007-11-10 Javier Serrano Polo - - * Makefile.am: - * include/envelope_and_lfo_widget.h: - * include/pixmap_button.h: - * include/spc_bg_hndl_widget.h: - * include/tab_widget.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/bit_invader.h: - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/patman/patman.cpp: - * plugins/patman/patman.h: - * plugins/vestige/vestige.cpp: - * plugins/vestige/vestige.h: - * src/core/envelope_and_lfo_widget.cpp: - * src/widgets/group_box.cpp: - * src/widgets/knob.cpp: - * src/widgets/led_checkbox.cpp: - * src/widgets/pixmap_button.cpp: - * src/widgets/tab_widget.cpp: - removed obsolete specialBgHandlingWidget - - * src/core/main_window.cpp: - fixed label in save project dialog - - * data/themes/default/style.css: - * include/track.h: - * src/core/track.cpp: - turned more code into style sheet - - * data/themes/default/style.css: - * src/core/track.cpp: - reverted positioning in style sheet - - * data/themes/default/style.css: - restricted style inheritance - - * plugins/bass_booster/bassbooster_control_dialog.cpp: - * plugins/flp_import/unrtf/parse.c: - * plugins/vestige/vestige.h: - * plugins/vst_effect/vst_control_dialog.cpp: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vst_effect/vst_subplugin_features.cpp: - removed Qt3 code - - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/bit_invader.h: - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/vestige/vestige.cpp: - reduced dependencies - - * plugins/bit_invader/bit_invader.cpp: - removed deprecated code - -2007-11-06 Javier Serrano Polo - - * include/track.h: - * src/core/track.cpp: - optimized trackOperationsWidget paint event - - * data/themes/default/style.css: - * src/core/track.cpp: - turned some code into style sheet - -2007-11-03 Javier Serrano Polo - - * plugins/singerbot/singerbot_proxy.cpp: - initial release, separate process to deal with Festival - - * plugins/singerbot/file.h: - initial release, file descriptor wrapper - - * plugins/singerbot/Makefile.am: - * plugins/singerbot/singerbot.cpp: - * plugins/singerbot/singerbot.h: - use external proxy - - * include/main_window.h: - * src/core/main_window.cpp: - upgraded recently opened files feature - - * include/main_window.h: - * src/core/main_window.cpp: - * src/core/song_editor.cpp: - fixed recently opened files segfault - - * include/mmp.h: - * src/lib/mmp.cpp: - simplified save extension handling - - * src/core/song_editor.cpp: - * src/lib/mmp.cpp: - fixed recently opened files bug (#1800364) - - * data/themes/default/style.css: - * data/themes/Makefile.am: - * include/config_mgr.h: - * src/core/config_mgr.cpp: - * src/core/main_window.cpp: - added style sheet support - - * include/caption_menu.h: - * src/widgets/caption_menu.cpp: - initial release, context menu with a caption - - * plugins/vibed/impulse_editor.cpp: - * plugins/vibed/nine_button_selector.cpp: - * plugins/vibed/vibed.cpp: - * src/core/piano_widget.cpp: - * src/core/surround_area.cpp: - * src/widgets/automatable_button.cpp: - * src/widgets/automatable_slider.cpp: - * src/widgets/combobox.cpp: - * src/widgets/knob.cpp: - * src/widgets/lcd_spinbox.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/tempo_sync_knob.cpp: - use caption menu - - * src/core/main_window.cpp: - set workspace's background with its own method - - * acinclude.m4: - * include/file_browser.h: - * src/core/file_browser.cpp: - * src/core/main_window.cpp: - replaced Qt3-based file browser implementation - - * src/core/file_browser.cpp: - enabled match in directory content filter - - * src/widgets/automatable_slider.cpp: - fixed mouse release segfault - - * acinclude.m4: - * src/core/main.cpp: - assume Qt translations are properly configured - - * src/core/main.cpp: - use standard return values - - * src/core/config_mgr.cpp: - removed line breaks inside paragraphs, wrapping should work - - * src/audio/audio_alsa.cpp: - * src/midi/midi_alsa_seq.cpp: - removed discouraged alloca calls - - * include/main_window.h: - * include/rack_plugin.h: - * plugins/bass_booster/bass_booster.h: - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_effect/vst_effect.h: - * src/core/automation_editor.cpp: - * src/core/file_browser.cpp: - * src/core/main_window.cpp: - * src/core/piano_roll.cpp: - * src/core/surround_area.cpp: - * src/core/tool.cpp: - * src/core/track_container.cpp: - * src/tracks/instrument_track.cpp: - * src/widgets/combobox.cpp: - * src/widgets/effect_label.cpp: - * src/widgets/knob.cpp: - * src/widgets/project_notes.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/tempo_sync_knob.cpp: - reduced include dependencies - - * plugins/flp_import/unrtf/attr.c: - * plugins/flp_import/unrtf/attr.h: - * plugins/flp_import/unrtf/convert.c: - * plugins/flp_import/unrtf/error.c: - * plugins/flp_import/unrtf/error.h: - * plugins/flp_import/unrtf/html.c: - * plugins/flp_import/unrtf/malloc.c: - * plugins/flp_import/unrtf/malloc.h: - * plugins/flp_import/unrtf/output.c: - * plugins/flp_import/unrtf/output.h: - * src/audio/audio_file_ogg.cpp: - replaced deprecated string conversions - - * plugins/lb302/lb302.cpp: - * src/widgets/kmultitabbar.cpp: - fixed different signedness comparison - - * plugins/lb302/lb302.cpp: - * plugins/midi_import/midi_import.cpp: - commented out unused variables - - * plugins/flp_import/unrtf/convert.c: - replaced empty conditional - - * src/widgets/kmultitabbar.cpp: - added copyright notice - - * src/core/automation_pattern.cpp: - * src/core/config_mgr.cpp: - * src/core/import_filter.cpp: - * src/core/ladspa_manager.cpp: - * src/core/setup_dialog.cpp: - * src/core/track.cpp: - * src/core/track_container.cpp: - * src/lib/sample_buffer.cpp: - * src/midi/midi_mapper.cpp: - * src/widgets/tab_bar.cpp: - * src/widgets/text_float.cpp: - removed old undefs - - * configure.in: - readded unsafe-loop-optimizations warning - - * data/locale/ca.ts: - updated translation - - * data/locale/qt_*.qm: - removed old Qt3 translations - -2007-10-30 Tobias Doerffel - - * src/core/note_play_handle.cpp: - fixed crash in case of framesLeft() being less or equal zero while - instrument::playNote is being called (e.g. when decreasing release - while a note is active) - -2007-10-04 Javier Serrano Polo - - * configure.in: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_base/lvsl_server.cpp: - * plugins/vst_base/Makefile.am: - * src/lib/journalling_object.cpp: - amd64 fixes - - * plugins/vestige/vestige.cpp: - fixed loading deadlock - - * plugins/vst_base/Makefile.am: - renamed lvsl_server.c to lvsl_server.cpp - - * plugins/vst_base/lvsl_server.cpp: - restricted shared memory permissions - - * plugins/vst_base/communication.h: - improved string communication - - * configure.in: - look for wine header in system folder too - - * configure.in: - * Makefile.am: - * plugins/Makefile.am: - added extra plugins support - - * include/main_window.h: - * src/core/main_window.cpp: - use desktop services for online help - - * src/core/main_window.cpp: - - use background artwork - - updated wiki URL - - * src/core/automation_editor.cpp: - * src/core/piano_roll.cpp: - * src/tracks/instrument_track.cpp: - * src/widgets/effect_label.cpp: - fixed null workspace segfaults - - * plugins/stk/mallets/mallets.cpp: - enabled missing files message - - * src/core/main.cpp: - use processed argc/argv rather than deprecated functions - - * plugins/singerbot/singerbot.cpp: - detected heap corruption - - * data/locale/ca.ts: - updated translation - - * plugins/polyb302/polyb302.cpp: - * plugins/polyb302/polyb302.h: - dropped Qt3-support - - * plugins/polyb302/polyb302.cpp: - applied relevant LB302 changes - -2007-09-25 Tobias Doerffel - - * include/mixer.h: - * include/visualization_widget.h: - * src/core/mixer.cpp: - * src/widget/visualization_widget.cpp: - reworked code for retrieving current mixer-buffer for visualizing it - - do not use signal/slot-mechanism for passing pointer and use - currentReadBuffer() + mixer-mutex instead which probably fixes some - mixer-related crashes - - * src/widget/effect_label.cpp: - set window-title for effect-chain-windows of a sample-track etc. - -2007-09-16 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - * include/effect_select_dialog.h: - * src/core/effect_select_dialog.cpp: - replaced Q3ListBox with QListWidget and made layouting-stuff of - plugin-description-widget working properly - - * data/locale/de.ts: - fixed some strings in German localization - -2007-09-03 Tobias Doerffel - - * plugins/patman/patman.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - cleanups - - * plugins/ladspa_base: - * plugins/ladspa_base/Makefile.am: - removed - - * configure.in: - * Makefile.am: - * plugins/ladspa_effect/Makefile.am: - * src/core/engine.cpp: - * src/core/ladspa_base.cpp: - * src/core/ladspa_port_dialog.cpp: - * src/core/ladspa_2_lmms.cpp: - * src/core/ladspa_manager.cpp: - * src/core/ladspa_control.cpp: - * include/ladspa_manager.h: - * include/ladspa_2_lmms.h: - * include/ladspa_control.h: - * include/ladspa_port_dialog.h: - * include/ladspa_base.h: - moved all code from LADSPA-base-library into LMMS-core - -2007-09-02 Javier Serrano Polo - - * include/project_notes.h: - * src/widgets/project_notes.cpp: - made usable with Qt4 - -2007-08-26 Tobias Doerffel - - * plugins/patman/patman.cpp: - * plugins/patman/patman.h: - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_control_dialog.cpp: - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/ladspa_effect/ladspa_control_dialog.h: - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - * plugins/organic/organic.cpp: - * plugins/lb302/lb302.cpp: - * plugins/bit_invader/graph.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/graph.h: - * plugins/vst_effect/vst_effect.h: - * plugins/vibed/graph.cpp: - * plugins/vibed/impulse_editor.h: - * plugins/vibed/nine_button_selector.h: - * plugins/vibed/vibed.h: - * plugins/vibed/graph.h: - * plugins/vibed/string_container.h: - * plugins/vibed/impulse_editor.cpp: - * plugins/vibed/nine_button_selector.cpp: - * plugins/vibed/vibed.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/singerbot/singerbot.h: - * plugins/singerbot/singerbot.cpp: - * plugins/live_tool/live_tool.cpp: - * plugins/ladspa_base/ladspa_manager.cpp: - * plugins/ladspa_base/ladspa_2_lmms.h: - * plugins/ladspa_base/ladspa_manager.h: - * plugins/ladspa_base/ladspa_control.cpp: - * plugins/ladspa_base/ladspa_port_dialog.cpp: - * plugins/ladspa_base/ladspa_control.h: - * plugins/ladspa_base/ladspa_port_dialog.h: - * plugins/ladspa_base/ladspa_2_lmms.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/stk/mallets/mallets.cpp: - * plugins/stk/mallets/mallets.h: - * plugins/vestige/vestige.cpp: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_base/lvsl_client.h: - * plugins/kicker/kicker.cpp: - * plugins/Makefile.am: - * plugins/flp_import/flp_import.h: - * plugins/flp_import/flp_import.cpp: - * plugins/midi_import/midi_import.h: - * plugins/midi_import/midi_import.cpp: - * include/mmp.h: - * include/knob.h: - * include/cpuload_widget.h: - * include/fade_button.h: - * include/templates.h: - * include/automatable_slider.h: - * include/lcd_spinbox.h: - * include/track.h: - * include/spc_bg_hndl_widget.h: - * include/note.h: - * include/tool_button.h: - * include/embed.h: - * include/name_label.h: - * include/midi_alsa_raw.h: - * include/gui_templates.h: - * include/visualization_widget.h: - * include/tab_widget.h: - * include/config_mgr.h: - * include/midi_tab_widget.h: - * include/import_filter.h: - * include/mixer.h: - * include/instrument_track.h: - * include/audio_port.h: - * include/instrument.h: - * include/text_float.h: - * include/piano_widget.h: - * include/sample_buffer.h: - * include/effect_select_dialog.h: - * include/automation_pattern.h: - * include/midi_mapper.h: - * include/nstate_button.h: - * include/plugin.h: - * include/clipboard.h: - * include/note_play_handle.h: - * include/side_bar.h: - * include/rack_view.h: - * include/pattern.h: - * include/string_pair_drag.h: - * include/audio_file_device.h: - * include/kmultitabbar.h: - * include/file_browser.h: - * include/base64.h: - * include/audio_jack.h: - * include/about_dialog.h: - * include/piano_roll.h: - * include/group_box.h: - * include/envelope_tab_widget.h: - * include/rubberband.h: - * include/bb_track.h: - * include/song_editor.h: - * include/project_notes.h: - * include/effect_tab_widget.h: - * include/kmultitabbar-qt3.h: - * include/automatable_button.h: - * include/midi_alsa_seq.h: - * include/tab_button.h: - * include/journalling_object.h: - * include/setup_dialog.h: - * include/export_project_dialog.h: - * include/rename_dialog.h: - * include/pixmap_button.h: - * include/tab_bar.h: - * include/effect_label.h: - * include/automatable_object_templates.h: - * include/sample_track.h: - * include/timeline.h: - * include/surround_area.h: - * include/main_window.h: - * include/audio_device.h: - * include/midi_client.h: - * include/automatable_object.h: - * include/automation_editor.h: - * include/midi_port.h: - * include/audio_sample_recorder.h: - * include/bb_editor.h: - * include/effect_chain.h: - * include/arp_and_chords_tab_widget.h: - * include/project_journal.h: - * include/plugin_browser.h: - * include/envelope_and_lfo_widget.h: - * include/preset_preview_play_handle.h: - * include/qt3support.h: - * include/track_container.h: - * include/combobox.h: - * include/side_bar_widget.h: - * include/play_handle.h: - * include/qxembed.h: - * include/xqmap.h: - * configure.in: - * src/audio/audio_file_device.cpp: - * src/audio/audio_alsa.cpp: - * src/audio/audio_oss.cpp: - * src/audio/audio_jack.cpp: - * src/midi/midi_client.cpp: - * src/midi/midi_mapper.cpp: - * src/midi/midi_oss.cpp: - * src/midi/midi_alsa_seq.cpp: - * src/midi/midi_alsa_raw.cpp: - * src/lib/string_pair_drag.cpp: - * src/lib/base64.cpp: - * src/lib/mmp.cpp: - * src/lib/journalling_object.cpp: - * src/lib/sample_buffer.cpp: - * src/lib/embed.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/automatable_slider.cpp: - * src/widgets/visualization_widget.cpp: - * src/widgets/group_box.cpp: - * src/widgets/lcd_spinbox.cpp: - * src/widgets/rubberband.cpp: - * src/widgets/tool_button.cpp: - * src/widgets/combobox.cpp: - * src/widgets/text_float.cpp: - * src/widgets/tab_widget.cpp: - * src/widgets/rack_view.cpp: - * src/widgets/led_checkbox.cpp: - * src/widgets/side_bar_widget.cpp: - * src/widgets/project_notes.cpp: - * src/widgets/volume_knob.cpp: - * src/widgets/kmultitabbar.cpp: - * src/widgets/qxembed.cpp: - * src/widgets/rename_dialog.cpp: - * src/widgets/pixmap_button.cpp: - * src/widgets/nstate_button.cpp: - * src/widgets/knob.cpp: - * src/widgets/automatable_button.cpp: - * src/widgets/tempo_sync_knob.cpp: - * src/widgets/fade_button.cpp: - * src/widgets/cpuload_widget.cpp: - * src/widgets/tab_bar.cpp: - * src/widgets/tooltip.cpp: - * src/tracks/sample_track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * src/core/plugin.cpp: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/plugin_browser.cpp: - * src/core/envelope_and_lfo_widget.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/track_container.cpp: - * src/core/config_mgr.cpp: - * src/core/midi_tab_widget.cpp: - * src/core/effect_control_dialog.cpp: - * src/core/import_filter.cpp: - * src/core/setup_dialog.cpp: - * src/core/file_browser.cpp: - * src/core/main.cpp: - * src/core/mixer.cpp: - * src/core/export_project_dialog.cpp: - * src/core/about_dialog.cpp: - * src/core/piano_roll.cpp: - * src/core/track.cpp: - * src/core/engine.cpp: - * src/core/note.cpp: - * src/core/timeline.cpp: - * src/core/envelope_tab_widget.cpp: - * src/core/surround_area.cpp: - * src/core/piano_widget.cpp: - * src/core/effect_select_dialog.cpp: - * src/core/main_window.cpp: - * src/core/song_editor.cpp: - * src/core/automation_pattern.cpp: - * src/core/name_label.cpp: - * src/core/effect_tab_widget.cpp: - * src/core/automation_editor.cpp: - * src/core/bb_editor.cpp: - * acinclude.m4: - * Makefile.am: - dropped Qt3-support and improved Qt4-support - -2007-08-23 Tobias Doerffel - - * configure.in: - bumped to 0.4.x development series - -2007-08-20 Tobias Doerffel - - * configure.in: - * README: - * lmms.spec.in: - finally made 0.3.0 release :) - - * Makefile.am: - added missing entry for 3rd-party samplerate.h - - * data/projects/cool_songs/Makefile.am: - * data/projects/covers/Makefile.am: - * data/projects/demos/Makefile.am: - * data/projects/misc/Makefile.am: - * data/projects/tutorials/Makefile.am: - added missing mmpz-wildcard - - * data/projects/covers/MonkeyIsland1-Intro.mmpz: - another cool cover - - * data/projects/covers/J.S.Bach-Preludium_and_Fugue_A-Minor.mmp: - removed - - * data/projects/covers/J.S.Bach-Preludium_and_Fugue_A-Minor.mmpz: - reworked - - * data/projects/demos/demo1.mmp: - * data/projects/demos/demo2.mmp: - * data/projects/demos/demo3.mmp: - * data/projects/cool_songs/Siegel-DreamWave.mmp: - updated - - * data/projects/misc/lb302quick.mmp: - * data/projects/demos/basses-demo.mmp: - removed because of really low-quality and/or duplicate - - * data/projects/demos/lb302quick.mmpz: - added another demo - - * data/projects/cool_songs/StrictProduction-Lamentelnes.mmp: - * data/projects/cool_songs/StrictProduction-DearJonDoe.mmp: - * data/projects/cool_songs/OrtalDj-FirstProyect.mmp: - * data/projects/cool_songs/Siegel-SpeedTrack.mmp: - * data/projects/cool_songs/Chris-RaveRiff.mmpz: - * data/projects/cool_songs/MysthR-Living.mmpz: - * data/projects/cool_songs/j1m-DingDong.mmp: - * data/projects/cool_songs/BlueWolf-DreamTravel.mmp: - * data/projects/cool_songs/Silva-ElvesCall.mmp: - added some more really cool projects - - * data/samples/drums/bassdrum04.ogg: - resampled to end at zero-level - fixes clicks in some projects - - * data/samples/drums/nasty_bass01.ogg: - * data/samples/drums/nasty_snare01.ogg: - * data/samples/drums/rim01.ogg: - * data/samples/drums/ride02.ogg: - * data/samples/drums/nasty_rim01.ogg: - * data/samples/drums/hihat_opened03.ogg - * data/samples/misc/applause01.ogg: - added samples - - * data/presets/TripleOscillator/SawLead.cs.xml: - * data/presets/TripleOscillator/SawLead2.cs.xml: - * data/presets/TripleOscillator/HardClipping.cs.xml: - * data/presets/TripleOscillator/PowerStrings.cs.xml: - * data/presets/TripleOscillator/SquareLead.cs.xml: - * data/presets/TripleOscillator/SquareLead2.cs.xml: - added some presets - - * plugins/lb302/lb302.cpp: - removed debug-out - - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/bit_invader/bit_invader.h: - * plugins/bit_invader/bit_invader.cpp: - added applyRelease(...)-call in playNote(...) and - re-implemented desiredReleaseFrames()-method - - * include/mmp.h: - * src/lib/mmp.cpp: - * src/tracks/instrument_track.cpp: - * src/core/main_window.cpp: - * src/core/song_editor.cpp: - fixed some bugs concerning recent-files-list - -2007-08-20 dieEasy - - * data/locale/it.ts: - updated Italian localization-file - -2007-08-19 Tobias Doerffel - - * data/locale/de.ts: - * data/locale/de.qm: - updated German localization-file - - * Makefile.am: - fixed command for updating TS-files - - * include/config_mgr.h: - * include/main_window.h: - * src/core/config_mgr.cpp: - * src/core/main_window.cpp: - added support for "Recently opened files"-menu - - * src/core/main_window.cpp: - - cleanups - - limit x-coordinate of a widget to be >= 0 in - mainWindow::restoreWidgetState( ... ) - fixes bug with appearently - inacccessible title-bars of piano-roll, song-editor etc. after - loading project - - * include/config_mgr.h: - * src/core/engine.cpp: - also destroy config-manager at engine::destroy() - - * src/audio/audio_jack.cpp: - added define for support for per-track audio-ports - almost works - except that the buffers of the audio-port are already cleared again at - the time the callback fills the buffers - will need an additional - buffer in audio-ports or something like that - - * src/core/mixer.cpp: - * src/lib/journalling_object.cpp: - * src/lib/project_journal.cpp: - * src/widgets/knob.cpp: - removed debug-out - - * plugins/patman/patman.cpp: - set directory of sample-selection-dialog to /usr/share/midi/freepats - if it exists - - * configure.in: - * plugins/Makefile.am: - * plugins/vibed/vibed.cpp: - * lib/src/mmp.cpp: - replaced obsolete PluckedStringSynth with Vibed - - * configure.in: - * plugins/Makefile.am: - removed Polyb302 from build as the same results can be achieved either - via (improved and maintained) LB302 or TripleOsc+filter - Polyb302 - just increases redundancy and adds extra maintainance-work - - * plugins/stk/mallets/mallets.cpp: - do not crash if Stk-files are missing - -2007-08-18 Tobias Doerffel - - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - - rewrote code for monophonic behaviour (calculation of position at - which to resume states etc.) - - added some debugging-stuff - - * src/core/mixer.cpp: - remove play-handles *after* we played all play-handles - - * src/tracks/instrument_track.cpp: - fixed a bug in monophonic behaviour - -2007-08-16 Tobias Doerffel - - * include/instrument.h: - * src/tracks/instrument_track.cpp: - reverted previous changes (behaviour with monophonic instruments) - -2007-08-06 Tobias Doerffel - - * plugins/triple_oscillator/triple_oscillator.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - use new applyRelease()-method - - * include/instrument.h: - * src/core/instrument.cpp: - added method instrument::applyRelease( ... ) which applies a release - on given buffer according to the value returned by - desiredReleaseFrames() - instruments can use this easily by simply - calling this method before calling - getInstrumentTrack()->processAudioBuffer() - - * src/core/preset_preview_play_handle.cpp: - * src/tracks/instrument_track.cpp: - use only half of valueRange::max because otherwise we have - overflows at several places - - * src/core/note_play_handle.cpp: - fixed framesLeft()-method to return correct values if plugin has - desiredReleaseFrames() > 0 - - * include/note_play_handle.h: - cleanups - - * configure.in: - bumped to 0.3.0-rc2 - - * src/lib/mmp.cpp: - added more compat-code to upgrade() for being able to properly open - files created by 0.0.9 and the whole 0.1.x-series - - * plugins/flp_import/flp_import.cpp: - * include/arp_and_chords_tab_widget.h: - * src/core/arp_and_chords_tab_widget.cpp: - * src/lib/mmp.cpp: - cleaned up all the arpeggio-direction-hacks - now the values are UP - (0) to RANDOM (3) at *all* places - required some compat-hacks in - mmp-upgrade()-method - - * include/file_browser.h: - * src/core/file_browser.cpp: - protect m_previewPlayHandle with mutex - fixes crash when releasing - mouse button on preset-file with VST-plugin/-effect while VST-plugin - is still loading - -2007-08-04 Tobias Doerffel - - * src/widget/visualization_widget.cpp: - proper visualization even with period-sizes < 128 - - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/kicker/kicker.cpp: - * plugins/lb302/lb302.cpp: - * plugins/patman/patman.cpp: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/polyb302/polyb302.cpp: - * plugins/singerbot/singerbot.cpp: - * plugins/stk/mallets/mallets.cpp: - * plugins/vibed/vibed.cpp: - removed check for framesLeftForCurrentPeriod() being zero - fixed by - patch below - - * src/tracks/instrument_track.cpp: - - acquire mixer-lock while calling noteOff() in - instrumentTrack::processInEvent( ... ) - fixes asynchronously - modifications of variables in notePlayHandle which led to segfaults in - some cases - - when encountering old running notes on monophonic instruments only - clear the part of the audio-port-buffer where the new note will be - mixed in - -2007-08-03 Tobias Doerffel - - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/kicker/kicker.cpp: - * plugins/lb302/lb302.cpp: - * plugins/patman/patman.cpp: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/polyb302/polyb302.cpp: - * plugins/singerbot/singerbot.cpp: - * plugins/stk/mallets/mallets.cpp: - * plugins/vibed/vibed.cpp: - added check for framesLeftForCurrentPeriod() being zero - fixes - segfault in some cases - - * src/tracks/instrument_track.cpp: - - do not simply pass-through _frames-parameter, use - notePlayHandle::framesLeftForCurrentPeriod() if possible - - disabled basic envelopes for the time being - - better handling of monophonic instruments - - do not play new notePlayHandles directly, set offset instead and let - mixer manage the rest - - * src/tracks/sample_track.cpp: - do not play new samplePlayHandles directly, set offset instead and let - mixer manage the rest - - * include/note_play_handle.h: - - removed framesAhead-property - now replaced by offset-property of - base-class - - introduced methods framesLeft() and framesLeftForCurrentPeriod() - - proper usage of them in plugins etc. fixes more clicks/pops especially - in monophonic instruments (LB302!) - - * src/core/mixer.cpp: - call songEditor::processNextBuffer() *before* playing all play-handles - - * src/core/mixer.cpp: - * include/mixer.h: - extended clearAudioBuffer()-methods by offset - - * include/play_handle.h: - added offset-property - - * include/mixer.h: - * most other files: - renamed "framesPerAudioBuffer()" to "framesPerPeriod()" - - * include/types.h: - * most other files: - renamed type "fpab_t" to "fpp_t" - -2007-07-30 Tobias Doerffel - - * plugins/singerbot/singerbot.h: - * include/sample_buffer.h: - * include/audio_device.h: - * configure.in: - * acinclude.m4: - * Makefile.am: - use 3rd-party code if libsamplerate is not available on system - - * src/3rdparty/samplerate/src_linear.c: - * src/3rdparty/samplerate/samplerate.h: - * src/3rdparty/samplerate/fastest_coeffs.h: - * src/3rdparty/samplerate/src_sinc.c: - * src/3rdparty/samplerate/float_cast.h: - * src/3rdparty/samplerate/mid_qual_coeffs.h: - * src/3rdparty/samplerate/src_zoh.c: - * src/3rdparty/samplerate/high_qual_coeffs.h: - * src/3rdparty/samplerate/samplerate.c: - * src/3rdparty/samplerate/common.h: - added libsamplerate-source-code - -2007-07-29 Tobias Doerffel - - * configure.in: - - made 0.3.0-rc1 release - - replaced "+=" operator by according X="$X ..." constructs as older - bashes have problems with it - - * configure.in: - * Makefile.am: - * include/audio_device.h: - * include/sample_buffer.h: - * src/audio/audio_device.cpp: - * src/lib/sample_buffer.cpp: - removed already broken support for building LMMS without libsamplerate - - * acinclude.m4: - disabled Qt4-support - re-enable it / rewrite Qt4-detection code in - 0.4.x-devel-branch - -2007-07-23 Tobias Doerffel - - * plugins/midi_import/midi_import.h: - * plugins/midi_import/midi_import.cpp: - - when adding notes to pattern *never* let them be quantized - fixes - bug where notes of imported MIDI-files were not where they should have - been - - added support for tempo-change-events by modifying - automation-pattern of tempo-knob of track-container (if such exists) - - import track-names - - proper handling of time-base, -division etc. - - * include/midi.h: - added midiMetaEvents-enum - - * include/song_editor.h: - * include/track_container.h: - * src/core/song_editor.cpp: - added virtual tempoAutomationPattern()-method which returns - automation-pattern of tempo-object (i.e. bpmSpinBox) if such exists - for a certain track-container - - * include/automation_pattern.h: - - added non-const version of object()-method - - made lot of other methods const - -2007-07-21 Tobias Doerffel - - * include/mixer.h: - * src/core/mixer.cpp: - added more mutexes to protect all important data-structures more - granularly and safely - fixes some potential segfaults - - * src/tracks/instrument_track.cpp: - - lock mixer while loading instrument / track-specific settings - fixes - segfault when dragging preset/instrument plugin to existing track - while playing - - remove effects in loadTrackSpecificSettings() if none were in preset - (e.g. old preset-file) - - * include/rack_view.h: - * include/effect_tab_widget.h: - * src/widgets/rack_view.cpp: - - delete all existing plugins before adding new ones in - rackView::loadSettings() - - cleanups - - * configure.in: - cleanups - -2007-07-20 Tobias Doerffel - - * lmms.spec.in: - merged changes found in - https://sourceforge.net/tracker/download.php?group_id=105168&atid=640436&file_id=225331&aid=1702303 - - * configure.in: - - cleaned up and improved detection of WINE-development-files and/or - single components of it and removed aeffectx.h-detection-stuff as - not needed anymore - - changed warning on missing STK-files - - several improvements of output-texts - -2007-07-17 Tobias Doerffel - - * configure.in: - - removed unsafe flags - - disabled single-source-compiling per default - - * src/audio/audio_port.cpp: - initialize all member-variables in initialization-list of - audioPort-constructor - this way the audio-port isn't being added to - the mixer before it's completely initialized - fixes some segfaults - - * include/midi.h: - * plugins/midi_import/midi_import.h: - * plugins/midi_import/midi_import.cpp: - - initial incomplete handling for tempo-events - - properly aligned imported notes - -2007-07-16 Tobias Doerffel - - * src/core/mixer.cpp: - fixed logical error in mixer::renderNextBuffer() which led to lot of - clicks and pops when using parallelization-level > 1 - - * include/note_play_handle.h: - * src/tracks/instrument_track-cpp: - fixed broken detection of last period of a note which resulted in - clicks and pops as the soft fade-out at the end sometimes was done twice - -2007-05-12 Javier Serrano Polo - - * include/clipboard.h: - * include/mmp.h: - * include/note.h: - * include/piano_roll.h: - * src/core/note.cpp: - * src/core/piano_roll.cpp: - * src/lib/clipboard.cpp: - * src/lib/mmp.cpp: - use the global clipboard to copy notes - - * include/group_box.h: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/envelope_tab_widget.cpp: - * src/lib/mmp.cpp: - * src/widgets/group_box.cpp: - save groupbox automation - - * include/surround_area.h: - * src/core/surround_area.cpp: - * src/core/track.cpp: - * src/lib/mmp.cpp: - calculate volume vector in a more consistent way - - * src/core/track.cpp: - fixed drag track onto another segfault - - * include/piano_widget.h: - * src/core/piano_widget.cpp: - fixed release invalid key segfault - - * src/tracks/instrument_track.cpp: - fixed freeze pattern segfault - - * include/preset_preview_play_handle.h: - * src/core/engine.cpp: - * src/core/preset_preview_play_handle.cpp: - fixed uninitialized preset preview container segfault - - * include/main_window.h: - * src/core/main_window.cpp: - added Qt4 menu implementations - - * include/file_browser.h: - * include/qt3support.h: - * src/core/file_browser.cpp: - fixed Qt4 context menu - - * data/locale/ca.ts: - * src/tracks/pattern.cpp: - hide irrelevant freeze options from context menu - -2007-05-07 Javier Serrano Polo - - * include/audio_jack.h: - * include/effect.h: - * include/effect_chain.h: - * include/envelope_and_lfo_widget.h: - * include/instrument_track.h: - * include/mixer.h: - * include/pattern.h: - * include/sample_buffer.h: - * include/shared_object.h: - * plugins/ladspa_base/ladspa_control.cpp: - * plugins/ladspa_base/ladspa_control.h: - * plugins/ladspa_effect/ladspa_effect.cpp: - * src/audio/audio_jack.cpp: - * src/core/effect.cpp: - * src/core/effect_chain.cpp: - * src/core/envelope_and_lfo_widget.cpp: - * src/core/envelope_tab_widget.cpp: - * src/core/file_browser.cpp: - * src/core/mixer.cpp: - * src/core/piano_roll.cpp: - * src/core/song_editor.cpp: - * src/core/track.cpp: - * src/core/track_container.cpp: - * src/lib/oscillator.cpp: - * src/lib/sample_buffer.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - - removed process locks - - use mixer lock if necessary - - * include/detuning_helper.h: - initial release, light replacement for the note detuning knob - - * Makefile.am: - * include/automatable_object.h: - * include/automatable_object_templates.h: - * include/note.h: - * include/note_play_handle.h: - * src/core/note.cpp: - * src/core/note_play_handle.cpp: - use detuning helpers - - * Makefile.am: - * include/note_play_handle.h: - * src/core/note_play_handle.cpp: - dropped QObject inheritance - - * include/note_play_handle.h: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/note_play_handle.cpp: - simplified subnote creation - - * include/pattern.h: - * include/piano_roll.h: - * src/core/piano_roll.cpp: - * src/tracks/instrument_track.cpp: - note list became read-only - - * include/oscillator.h: - * plugins/organic/organic.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * src/lib/oscillator.cpp: - use references instead of pointers - - * include/oscillator.h: - * include/sample_buffer.h: - use read-only user waveform - - * include/custom_events.h: - initial release, custom events list - - * include/update_event.h: - initial release, allow thread-safe GUI updates - - * Makefile.am: - * include/fade_button.h: - * include/piano_widget.h: - * src/core/piano_widget.cpp: - * src/widgets/fade_button.cpp: - use thread-safe GUI updates - - * include/automation_editor.h: - * include/piano_roll.h: - * src/core/automation_editor.cpp: - * src/core/piano_roll.cpp: - simplified paint event - - * include/instrument.h: - * include/instrument_play_handle.h: - * include/mixer.h: - * include/note_play_handle.h: - * include/play_handle.h: - * include/preset_preview_play_handle.h: - * include/sample_play_handle.h: - * include/track.h: - * plugins/vestige/vestige.cpp: - * src/core/instrument.cpp: - * src/core/mixer.cpp: - * src/core/note_play_handle.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/sample_play_handle.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - simplified handle removal - - * include/mixer.h: - - removed duplicate playHandles() - - removed unnecessary private copy constructor - - * include/track.h: - * include/track_container.h: - * src/core/track.cpp: - * src/core/track_container.cpp: - simplified track clonation - - * include/track.h: - * src/core/track.cpp: - simplified track removal - - * include/instrument_track.h: - * include/note_play_handle.h: - * src/core/note_play_handle.cpp: - * src/tracks/instrument_track.cpp: - - moved piano widget control to instrument track - - calculate frequencies in note play handle - - * include/note_play_handle.h: - * plugins/organic/organic.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - public note frequency became read-only - - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/lb302/lb302.cpp: - * plugins/patman/patman.cpp: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/polyb302/polyb302.cpp: - * plugins/singerbot/singerbot.cpp: - * plugins/stk/mallets/mallets.cpp: - * plugins/vibed/vibed.cpp: - use precalculated note frequency - - * include/automatable_object_templates.h: - reduced XML size for single-valued patterns - - * src/core/automation_pattern.cpp: - * src/tracks/automation_pattern.cpp: - - moved to core - - initialize copy constructor - - * include/automation_pattern.h: - * src/core/automation_pattern.cpp: - - show read-only data - - disconnect single-valued patterns from track - - * include/level_object.h: - * src/core/automation_pattern.cpp: - added display name - - * include/project_version.h: - * src/lib/project_version.cpp: - initial release, compare application versions - - * include/mmp.h: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/song_editor.cpp: - * src/lib/mmp.cpp: - * src/tracks/sample_track.cpp: - added upgrade feature - - * Makefile.am: - * src/lmms_single_source.cpp: - - moved automation pattern to core - - added project version - - * include/arp_and_chords_tab_widget.h: - * include/audio_jack.h: - * include/audio_oss.h: - * include/audio_port.h: - * include/audio_sdl.h: - * include/automatable_slider.h: - * include/automation_editor.h: - * include/automation_pattern.h: - * include/config_mgr.h: - * include/effect.h: - * include/effect_control_dialog.h: - * include/effect_label.h: - * include/effect_tab_widget.h: - * include/engine.h: - * include/envelope_tab_widget.h: - * include/fifo_buffer.h: - * include/instrument.h: - * include/instrument_track.h: - * include/level_object.h: - * include/main_window.h: - * include/meter_dialog.h: - * include/midi_dummy.h: - * include/midi_event_processor.h: - * include/midi_port.h: - * include/mixer.h: - * include/note_play_handle.h: - * include/pattern.h: - * include/piano_roll.h: - * include/piano_widget.h: - * include/plugin.h: - * include/preset_preview_play_handle.h: - * include/rack_plugin.h: - * include/rack_view.h: - * include/sample_play_handle.h: - * include/sample_track.h: - * include/side_bar.h: - * include/surround_area.h: - * include/tempo_sync_knob.h: - * include/tool.h: - * include/track_container.h: - * include/volume_knob.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/bass_booster/bassbooster_control_dialog.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/flp_import/flp_import.cpp: - * plugins/kicker/kicker.cpp: - * plugins/ladspa_base/ladspa_control.cpp: - * plugins/ladspa_base/ladspa_control.h: - * plugins/ladspa_base/ladspa_manager.h: - * plugins/ladspa_effect/ladspa_control_dialog.h: - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - * plugins/organic/organic.cpp: - * plugins/patman/patman.cpp: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/polyb302/polyb302.cpp: - * plugins/polyb302/polyb302.h: - * plugins/singerbot/singerbot.cpp: - * plugins/singerbot/singerbot.h: - * plugins/stk/mallets/mallets.cpp: - * plugins/stk/mallets/mallets.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/vestige/vestige.cpp: - * plugins/vestige/vestige.h: - * plugins/vibed/impulse_editor.cpp: - * plugins/vibed/vibed.cpp: - * plugins/vst_effect/vst_control_dialog.cpp: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vst_effect/vst_subplugin_features.cpp: - * src/core/automation_pattern.cpp: - * src/core/effect_control_dialog.cpp: - * src/core/effect_tab_widget.cpp: - * src/core/envelope_tab_widget.cpp: - * src/core/midi_tab_widget.cpp: - * src/core/piano_widget.cpp: - * src/core/plugin.cpp: - * src/core/surround_area.cpp: - * src/core/track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - * src/widgets/automatable_slider.cpp: - * src/widgets/effect_label.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/tempo_sync_knob.cpp: - reduced dependencies - - * plugins/ladspa_base/ladspa_manager.cpp: - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - * src/audio/audio_port.cpp: - * src/core/engine.cpp: - * src/midi/midi_client.cpp: - * src/tracks/instrument_track.cpp: - * src/widgets/knob.cpp: - * src/widgets/rack_view.cpp: - fixed memory leaks - - * include/automatable_object_templates.h: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/singerbot/singerbot.cpp: - * plugins/vibed/vibrating_string.cpp: - * src/core/envelope_and_lfo_widget.cpp: - * src/lib/sample_buffer.cpp: - simplified deletions - - * include/song_editor.h: - * src/core/song_editor.cpp: - improved destructor workaround (still a workaround) - - * src/core/timeline.cpp: - avoid invalid reference - - * src/core/config_mgr.cpp: - removed invariant condition - - * src/core/automation_editor.cpp: - * src/core/envelope_and_lfo_widget.cpp: - * src/core/piano_roll.cpp: - reordered inline functions - - * src/core/plugin.cpp: - initialize dummy plugin subfeatures - - * include/effect_chain.h: - * src/core/effect_chain.cpp: - - normalized destructor - - renamed deleteEffect() to removeEffect(), the effect isn't deleted - actually - - simplified removeEffect() - - * src/widgets/rack_view.cpp: - simplified deletePlugin() - - * include/rack_plugin.h: - * src/widgets/rack_plugin.cpp: - - fixed hot insertion/removal - - simplified context menu - - * src/lib/project_journal.cpp: - initialize journalling state - - * include/arp_and_chords_tab_widget.h: - arpeggio directions are public - - * src/core/midi_tab_widget.cpp: - spin boxes are initially disabled - - * plugins/ladspa_base/ladspa_control.cpp: - * plugins/ladspa_effect/ladspa_control_dialog.cpp: - disabled link automation - - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - - save/load start/end knobs automation - - don't reset start/end knob values when changing the sample file - - removed unused setStartAndEndKnob() - - * plugins/polyb302/polyb302.cpp: - * plugins/polyb302/polyb302.h: - removed slide toggle - - * include/effect_label.h: - * src/widgets/effect_label.cpp: - - delete related effect window - - display label text - - * include/audio_device.h: - * include/audio_dummy.h - * include/midi_client.h: - * include/midi_dummy.h: - hide empty settings box - - * include/pattern.h: - * plugins/flp_import/flp_import.cpp: - * src/tracks/pattern.cpp: - - simplified beat insertion/display - - removed unused functions - - * include/mixer.h: - * src/tracks/pattern.cpp: - render note tails in frozen patterns - - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/triple_oscillator/triple_oscillator.h: - added oscillator objects - - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - - normalized member names - - simplified waveshape selection - - * include/automatable_object.h: - * include/knob.h: - * src/widgets/knob.cpp: - * src/widgets/volume_knob.cpp: - removed automatable object custom data - - * plugins/singerbot/singerbot.cpp: - * plugins/singerbot/singerbot.h: - - reworked play process without sample buffers - - retry wave generation on damaged environment - - * configure.in: - * plugins/ladspa_effect/Makefile.am: - added --without-caps configure option - - * configure.in: - added extra compilation warnings - - * include/qt3support.h: - removed (non-)bug comment - - * data/locale/ca.ts: - updated translation - -2007-04-25 Javier Serrano Polo - - * include/basic_filters.h: - * plugins/flp_import/flp_import.cpp: - * src/core/envelope_tab_widget.cpp: - simplified filtering - - * plugins/vst_base/lvsl_server.c: - clear output buffers before processing - - * plugins/vestige/vestige.cpp: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_base/lvsl_client.h: - fixed sample rate change - - * data/locale/ca.ts: - updated translation - -2007-04-24 Javier Serrano Polo - - * include/buffer_allocator.h: - * src/lib/buffer_allocator.cpp: - removed, obsoleted by small audio buffers - - * Makefile.am: - * include/audio_device.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/kicker/kicker.cpp: - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/lb302/lb302.cpp: - * plugins/organic/organic.cpp: - * plugins/patman/patman.cpp: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/polyb302/polyb302.cpp: - * plugins/singerbot/singerbot.cpp: - * plugins/stk/mallets/mallets.cpp: - * plugins/stk/mallets/mallets.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/vestige/vestige.cpp: - * plugins/vibed/vibed.cpp: - * plugins/vibed/vibed.h: - * plugins/vibed/vibrating_string.cpp: - * plugins/vibed/vibrating_string.h: - * plugins/vst_effect/vst_effect.cpp: - * src/lmms_single_source.cpp: - * src/audio/audio_alsa.cpp: - * src/audio/audio_device.cpp: - * src/audio/audio_file_device.cpp: - * src/audio/audio_file_wave.cpp: - * src/audio/audio_jack.cpp: - * src/audio/audio_oss.cpp: - * src/audio/audio_port.cpp: - * src/audio/audio_sample_recorder.cpp: - * src/audio/audio_sdl.cpp: - * src/core/main_window.cpp: - * src/core/mixer.cpp: - * src/core/sample_play_handle.cpp: - * src/tracks/pattern.cpp: - * src/widgets/visualization_widget.cpp: - removed buffer allocator - - * include/automatable_object_templates.h: - initial release, templates extracted from automatable_object.h - - * Makefile.am: - * include/automatable_object.h: - * plugins/ladspa_base/ladspa_control.cpp: - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/patman/patman.cpp: - * plugins/singerbot/singerbot.cpp: - * src/core/automation_editor.cpp: - * src/core/bb_editor.cpp: - * src/core/envelope_and_lfo_widget.cpp: - * src/core/export_project_dialog.cpp: - * src/core/note.cpp: - * src/core/note_play_handle.cpp: - * src/core/piano_roll.cpp: - * src/core/piano_widget.cpp: - * src/core/setup_dialog.cpp: - * src/core/song_editor.cpp: - * src/core/surround_area.cpp: - * src/core/track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - * src/widgets/automatable_button.cpp: - * src/widgets/automatable_slider.cpp: - * src/widgets/combobox.cpp: - * src/widgets/effect_label.cpp: - * src/widgets/knob.cpp: - * src/widgets/lcd_spinbox.cpp: - * src/widgets/led_checkbox.cpp: - * src/widgets/pixmap_button.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/tempo_sync_knob.cpp: - * src/widgets/volume_knob.cpp: - reduced dependencies on automatable object - - * src/audio/audio_device.cpp: - * src/core/export_project_dialog.cpp: - * src/core/mixer.cpp: - fixed deadlocks - - * include/audio_dummy.h: - don't process buffers - - * src/audio/audio_sample_recorder.cpp: - fixed high quality - - * include/basic_filters.h: - * include/envelope_and_lfo_widget.h: - * src/core/envelope_tab_widget.cpp: - simplified envelope processing - - * include/basic_filters.h: - - use samplerate member as sample rate - - reformatted - - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - reverted layout changes in QT3, fixes descriptions - - * plugins/triple_oscillator/artwork.png: - * plugins/triple_oscillator/triple_oscillator.cpp: - updated GUI - - * include/tempo_sync_knob.h: - * src/widgets/tempo_sync_knob.cpp: - graceful shutdown - - * src/widgets/automatable_button.cpp: - fixed undef - - * plugins/ladspa_effect/caps/Makefile.am: - use DESTDIR - -2007-04-21 Javier Serrano Polo - - * plugins/singerbot/singerbot.cpp: - * src/audio/audio_jack.cpp: - * src/audio/audio_sdl.cpp: - assume 1-case semaphores, fixes single source compilation - - * configure.in: - fixed --enable options - -2007-04-20 Tobias Doerffel - - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - * plugins/patman/patman.cpp: - * plugins/singerbot/singerbot.h: - * plugins/singerbot/singerbot.cpp: - * plugins/live_tool/live_tool.cpp: - * plugins/polyb302/polyb302.cpp: - * include/fifo_buffer.h: - * include/bb_track.h: - * include/audio_device.h: - * include/midi_client.h: - * include/qt3support.h: - * src/audio/audio_sdl.cpp: - * src/audio/audio_jack.cpp: - * src/core/note_play_handle.cpp: - * src/core/track_container.cpp: - * src/core/tool.cpp: - * src/core/setup_dialog.cpp: - * src/core/track.cpp: - * src/core/effect_select_dialog.cpp: - * src/core/main_window.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/tool_button.cpp: - * src/widgets/rack_view.cpp: - * src/widgets/effect_label.cpp: - fixes for Qt4-version - - * plugins/midi_import/midi_import.cpp: - * src/core/automation_editor.cpp: - * src/core/piano_roll.cpp: - added inclusion of debug.h which includes assert.h for not failing to - compile on several platforms - -2007-04-20 Javier Serrano Polo - - * executable files: - removed executable property - -2007-04-19 Javier Serrano Polo - - * include/audio_port.h: - * include/automatable_button.h: - * include/automatable_object.h: - * include/automatable_slider.h: - * include/automation_editor.h: - * include/automation_pattern.h: - * include/bb_editor.h: - * include/bb_track.h: - * include/combobox.h: - * include/cpuload_widget.h: - * include/dummy_plugin.h: - * include/effect.h: - * include/effect_chain.h: - * include/effect_label.h: - * include/effect_select_dialog.h: - * include/engine.h: - * include/envelope_and_lfo_widget.h: - * include/export_project_dialog.h: - * include/file_browser.h: - * include/group_box.h: - * include/import_filter.h: - * include/instrument.h: - * include/journalling_object.h: - * include/knob.h: - * include/lcd_spinbox.h: - * include/led_checkbox.h: - * include/main_window.h: - * include/midi_alsa_raw.h: - * include/midi_alsa_seq.h: - * include/midi_client.h: - * include/midi_dummy.h: - * include/midi_oss.h: - * include/mixer.h: - * include/name_label.h: - * include/note.h: - * include/pattern.h: - * include/piano_roll.h: - * include/pixmap_button.h: - * include/plugin.h: - * include/plugin_browser.h: - * include/preset_preview_play_handle.h: - * include/project_journal.h: - * include/project_notes.h: - * include/rack_view.h: - * include/sample_buffer.h: - * include/sample_play_handle.h: - * include/setup_dialog.h: - * include/song_editor.h: - * include/string_pair_drag.h: - * include/surround_area.h: - * include/tempo_sync_knob.h: - * include/timeline.h: - * include/track_container.h: - * include/visualization_widget.h: - * include/volume_knob.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/bass_booster/bass_booster.cpp: - * plugins/bass_booster/bass_booster.h: - * plugins/bass_booster/bassbooster_control_dialog.cpp - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/graph.cpp: - * plugins/bit_invader/graph.h: - * plugins/flp_import/flp_import.cpp: - * plugins/kicker/kicker.cpp: - * plugins/ladspa_base/ladspa_2_lmms.cpp: - * plugins/ladspa_base/ladspa_2_lmms.h: - * plugins/ladspa_base/ladspa_base.h: - * plugins/ladspa_base/ladspa_control.cpp: - * plugins/ladspa_base/ladspa_control.h: - * plugins/ladspa_base/ladspa_manager.cpp: - * plugins/ladspa_base/ladspa_manager.h: - * plugins/ladspa_base/ladspa_port_dialog.cpp: - * plugins/ladspa_base/ladspa_port_dialog.h: - * plugins/ladspa_effect/ladspa_control_dialog.cpp: - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - * plugins/ladspa_effect/ladspa_subplugin_features.h: - * plugins/lb302/lb302.cpp: - * plugins/live_tool/live_tool.cpp: - * plugins/midi_import/midi_import.cpp: - * plugins/organic/organic.cpp: - * plugins/patman/patman.cpp: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/polyb302/polyb302.cpp: - * plugins/polyb302/polyb302.h: - * plugins/singerbot/singerbot.cpp: - * plugins/stk/mallets/mallets.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/vestige/vestige.cpp: - * plugins/vibed/graph.cpp: - * plugins/vibed/graph.h: - * plugins/vibed/impulse_editor.cpp: - * plugins/vibed/impulse_editor.h: - * plugins/vibed/nine_button_selector.cpp: - * plugins/vibed/nine_button_selector.h: - * plugins/vibed/vibed.cpp: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_base/lvsl_client.h: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vst_effect/vst_effect.h: - * plugins/vst_effect/vst_subplugin_features.cpp: - * plugins/vst_effect/vst_subplugin_features.h: - * src/audio/audio_alsa.cpp: - * src/audio/audio_jack.cpp: - * src/audio/audio_oss.cpp: - * src/audio/audio_port.cpp: - * src/audio/audio_sample_recorder.cpp: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/automation_editor.cpp: - * src/core/bb_editor.cpp: - * src/core/effect.cpp: - * src/core/effect_chain.cpp: - * src/core/effect_control_dialog.cpp: - * src/core/effect_select_dialog.cpp: - * src/core/effect_tab_widget.cpp: - * src/core/engine.cpp: - * src/core/envelope_and_lfo_widget.cpp: - * src/core/envelope_tab_widget.cpp: - * src/core/export_project_dialog.cpp: - * src/core/file_browser.cpp: - * src/core/import_filter.cpp: - * src/core/instrument.cpp: - * src/core/main.cpp: - * src/core/main_window.cpp: - * src/core/meter_dialog.cpp: - * src/core/midi_tab_widget.cpp: - * src/core/mixer.cpp: - * src/core/name_label.cpp: - * src/core/note.cpp: - * src/core/note_play_handle.cpp: - * src/core/piano_roll.cpp: - * src/core/piano_widget.cpp: - * src/core/plugin.cpp: - * src/core/plugin_browser.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/sample_play_handle.cpp: - * src/core/setup_dialog.cpp: - * src/core/song_editor.cpp: - * src/core/surround_area.cpp: - * src/core/timeline.cpp: - * src/core/tool.cpp: - * src/core/track.cpp: - * src/core/track_container.cpp: - * src/lib/journalling_object.cpp: - * src/lib/project_journal.cpp: - * src/lib/sample_buffer.cpp: - * src/lib/string_pair_drag.cpp: - * src/midi/midi_alsa_raw.cpp: - * src/midi/midi_alsa_seq.cpp: - * src/midi/midi_client.cpp: - * src/midi/midi_oss.cpp: - * src/tracks/automation_pattern.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * src/tracks/sample_track.cpp: - * src/widgets/automatable_button.cpp: - * src/widgets/automatable_slider.cpp: - * src/widgets/combobox.cpp: - * src/widgets/cpuload_widget.cpp: - * src/widgets/effect_label.cpp: - * src/widgets/group_box.cpp: - * src/widgets/knob.cpp: - * src/widgets/lcd_spinbox.cpp: - * src/widgets/led_checkbox.cpp: - * src/widgets/pixmap_button.cpp: - * src/widgets/project_notes.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/rack_view.cpp: - * src/widgets/tempo_sync_knob.cpp: - * src/widgets/visualization_widget.cpp: - * src/widgets/volume_knob.cpp: - return of the singletons - - * include/fifo_buffer.h: - initial release, allows chunked audio buffer - - * include/audio_alsa.h: - * include/audio_device.h: - * include/audio_dummy.h: - * include/audio_jack.h: - * include/audio_oss.h: - * include/audio_sdl.h: - * include/mixer.h: - * src/audio/audio_alsa.cpp: - * src/audio/audio_device.cpp: - * src/audio/audio_jack.cpp: - * src/audio/audio_oss.cpp: - * src/audio/audio_sdl.cpp: - * src/core/mixer.cpp: - * src/core/setup_dialog.cpp: - use chunked audio buffer - - * src/core/mixer.cpp: - don't delete the audio device when changing quality, fixes JACK without - external server - - * include/sample_buffer.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/patman/patman.cpp: - * src/lib/sample_buffer.cpp: - handle different sample rates, fixes many looping patch samples - - * src/core/sample_play_handle.cpp: - fixed high quality - - * plugins/patman/patman.cpp: - automated Loop and Tune modes - - * plugins/audio_file_processor/audio_file_processor.cpp: - automated Loop mode - - * src/core/automation_editor.cpp: - fixed selections - - * src/core/track_container.cpp: - use modularized sample extensions - - * include/string_pair_drag.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/patman/patman.cpp: - * src/lib/string_pair_drag.cpp: - changed string pair MIME type - - * src/lib/mmp.cpp: - renamed root element - - * data/lmms.xml: - initial release, project MIME type - - * data/Makefile.am: - install project MIME type - - * data/lmms.desktop: - - added project MIME type - - added Catalan translation - - * include/oscillator.h: - * src/lib/oscillator.cpp: - got switches out of for-loops - - * include/arp_and_chords_tab_widget.h: - * include/effect_tab_widget.h: - * include/instrument_track.h: - * include/midi_tab_widget.h: - * include/track.h: - cleaned up dependencies - - * data/locale/ca.ts: - updated translation - -2007-04-07 Javier Serrano Polo - - * plugins/patman/artwork.png: - * plugins/patman/logo.png: - * plugins/patman/loop_off.png: - * plugins/patman/loop_on.png: - * plugins/patman/Makefile.am: - * plugins/patman/patman.cpp: - * plugins/patman/patman.h: - * plugins/patman/tune_off.png: - * plugins/patman/tune_on.png: - initial release, PatMan instrument plugin - - * include/sample_buffer.h: - * src/lib/sample_buffer.cpp: - - added start/end loop points, different from start/end sample points - - added sample frequency - - reworked resampling, fixes resampling underruns/clicks - - reused try-to-make-relative and try-to-make-absolute file handling - - reused samplerate conversion - - * include/sample_buffer.h: - * include/sample_play_handle.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/singerbot/singerbot.cpp: - * src/core/sample_play_handle.cpp: - * src/lib/sample_buffer.cpp: - added per handle state - - * include/engine.h: - * include/file_browser.h: - * include/plugin.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * src/core/engine.cpp: - * src/core/file_browser.cpp: - * src/core/main_window.cpp: - modularized sample extensions - - * plugins/audio_file_processor/audio_file_processor.cpp: - - check dragged file extension - - accept dragged files from desktop - - fit displayed file name in the background box - - * src/core/track_container.cpp: - fixed track swapping - - * src/tracks/bb_track.cpp: - fixed loading last bb-track name - - * include/pattern.h: - * src/tracks/pattern.cpp: - removed obsolete method - - * plugins/polyb302/polyb302.cpp: - * plugins/polyb302/polyb302.h: - simplified inclusions and comments - - * include/main_window.h: - cosmetic, grouped methods - - * data/locale/ca.ts: - updated translation - -2007-04-01 Tobias Doerffel - - * src/lmms_single_source.cpp: - moved inclusion of file_browser.cpp up as it has problems with headers - included by later files - -2007-03-28 Javier Serrano Polo - - * include/mixer.h: - * include/note_play_handle.h: - * src/core/note_play_handle.cpp: - * src/core/song_editor.cpp: - fixed notes with dynamic tempo - - * include/main_window.h: - * src/core/main_window.cpp: - added online help - - * include/file_browser.h: - * src/core/file_browser.cpp: - - filter directories without relevant content - - simplified entry retrieval - - * include/basic_filters.h: - limit Moog instability - - * src/core/main.cpp: - updated year - - * src/widgets/knob.cpp: - initialize members according to last arrangement - - * data/locale/ca.ts: - updated translation - -2007-03-26 Tobias Doerffel - - * configure.in: - fixed "typo" in help - -2007-03-25 Javier Serrano Polo - - * plugins/polyb302/artwork.png: - * plugins/polyb302/logo.png: - * plugins/polyb302/Makefile.am: - * plugins/polyb302/polyb302.cpp: - * plugins/polyb302/polyb302.h: - initial release, polyphonic version of lb302 plugin - - * include/instrument_track.h: - * include/note_play_handle.h: - * src/core/note_play_handle.cpp: - * src/tracks/instrument_track.cpp: - trigger detuning without signals - - * configure.in: - fixed singerbot error - - * include/knob.h: - arranged private/protected members - - * data/locale/ca.ts: - updated translation - -2007-03-07 Javier Serrano Polo - - * plugins/singerbot/singerbot.cpp: - fixed high quality play - - * data/locale/ca.ts: - shortened some words - -2007-02-28 Javier Serrano Polo - - * src/audio/audio_alsa.cpp: - * src/audio/audio_sdl.cpp: - fixed high quality play - - * include/audio_alsa.h: - * include/audio_device.h: - * include/audio_dummy.h: - * include/audio_jack.h: - * include/audio_oss.h: - * include/audio_sdl.h: - * include/midi_alsa_raw.h: - * include/midi_alsa_seq.h - * include/midi_client.h: - * include/midi_dummy.h: - * include/midi_oss.h: - * include/setup_dialog.h: - * src/core/setup_dialog.cpp: - save device names without localization - - * data/locale/ca.ts: - updated translation - - * plugins/lb302/lb302.cpp: - * src/audio/audio_alsa.cpp: - * src/audio/audio_oss.cpp: - fixed typos - -2007-02-27 Javier Serrano Polo - - * src/widgets/fade_button.cpp: - simplified timer usage, fixes frozen leds and hopefully the segfaults - - * src/core/config_mgr.cpp: - create widgets once - -2007-02-25 Javier Serrano Polo - - * plugins/singerbot/singerbot.cpp: - * plugins/singerbot/singerbot.h: - use libsamplerate - - * plugins/singerbot/singerbot.cpp: - - resample while playing, reduced start-up CPU usage - - joined scheme commands - - * configure.in: - - added libsamplerate dependency to singerbot - - don't add plugin libraries to global LIBS - - * src/core/automation_editor.cpp: - - fixed selection - - values moved at time 0 don't move horizontally - - * src/core/piano_roll.cpp: - little optimization when selecting all notes - - * src/tracks/instrument_track.cpp: - emit sentMidiTime always, pitch automation mustn't be disabled - - * plugins/ladspa_base/ladspa_control.cpp: - * plugins/ladspa_effect/ladspa_effect.cpp: - raise gain range up to 10 - - * include/effect_select_dialog.h: - * include/plugin.h: - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - * plugins/ladspa_effect/ladspa_subplugin_features.h: - * plugins/vst_effect/vst_subplugin_features.cpp: - * plugins/vst_effect/vst_subplugin_features.h: - * src/core/effect_select_dialog.cpp: - changed description layout - - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - simplified translations - - * plugins/live_tool/live_tool.cpp: - added what's-this-text - -2007-02-20 Alexey Kouznetsov - - * data/locale/ru.ts: - updated Russian translation - -2007-02-16 Tobias Doerffel - - * Makefile.am: - added include/effect_lib.h to sources-list - -2007-02-03 Paul Giblock - - * plugins/lb302/lb302.cpp: - * plugins/lb302/lb302.h: - * plugins/lb302/artwork.png: - * plugins/lb302/logo.png: - * plugins/lb302/Makefile.am: - * plugins/lb302/README: - Initial release. LB302 Bass Synth beta instrument plugin - - * configure.in: - * plugins/Makefile.am: - * src/tracks/instrument_track.cpp: - Added LB302 support - - * data/projects/misc/lb302_quick.mmp: - Added LB302 demo - - * src/widgets/knob.cpp: - Fixed compile-time bug caused by pointer casted to uint - -2007-01-21 Tobias Doerffel - - * src/core/note_play_handle.cpp: - removed obsolete support for monophonic instruments - - * src/tracks/instrument_track.cpp: - added new code for better support of monophonic instrument - -2007-01-20 Javier Serrano Polo - - * plugins/singerbot/artwork.png: - * plugins/singerbot/logo.png: - * plugins/singerbot/Makefile.am: - * plugins/singerbot/singerbot.h: - * plugins/singerbot/singerbot.cpp: - initial release, SingerBot (experimental) instrument plugin - - * configure.in: - * include/note_play_handle.h: - * plugins/Makefile.am: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/note_play_handle.cpp: - * src/tracks/instrument_track.cpp: - added singerbot support - - * include/sample_buffer.h: - deleteResampling methods made static - - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/organic/organic.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * src/core/note_play_handle.cpp: - * src/tracks/instrument_track.cpp: - call deleteNotePluginData() only if there is plugin data, fixes - unprotected instruments - - * plugins/vestige/vestige.cpp: - trigger deleteNotePluginData() - - * src/tracks/instrument_track.cpp: - avoid double unlock - - * configure.in: - fixed configuring with --with-stk - - * acinclude.m4: - moved QT_TRANSLATIONS_DIR to config.h - - * plugins/flp_import/flp_import.cpp: - * plugins/flp_import/unrtf/word.c: - optimized unsafe loops - - * src/lib/sample_buffer.cpp: - * src/widgets/project_notes.cpp: - minor cosmetic changes - - * include/shared_object.h: - not really thread-safe, will be removed - -2007-01-02 Tobias Doerffel - - * src/core/note.cpp: - fixed segfault in hasDetuningInfo() if m_detuning was NULL - - * README: - * src/core/about_dialog.cpp: - extended copyright from 2006 to 2007 - -2006-12-28 Tobias Doerffel - - * configure.in: - some cleanups and fixes - - * src/tracks/instrument_track.cpp: - before calling mixer::addPlayHandle(), unlock m_notesMutex as in some - cases (when running into xruns) - instrumentTrack::deleteNotePluginData() is called while the mutex is - locked and the program was frozen - - * include/track.h: - * plugins/flp_import/flp_import.cpp: - * plugins/midi_import/midi_import.cpp: - * src/core/file_browser.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/song_editor.cpp: - * src/core/track.cpp: - * src/core/track_container.cpp: - * src/tracks/instrument_track.cpp: - changed name of constant CHANNEL_TRACK to INSTRUMENT_TRACK - -2006-12-24 Tobias Doerffel - - * plugins/kicker/kicker.cpp: - changed minimal value for frequency-knobs from 40 to 5 Hz - -2006-12-23 Javier Serrano Polo - - * plugins/kicker/kicker.cpp: - fixed envelope segfault - -2006-12-21 Tobias Doerffel - - * include/note_play_handle.h: - * src/core/note_play_handle.cpp: - added parameter to nphsOfInstrumentTrack() which will cause the method - to add note-play-handles even if they're released - - * include/effect_lib.h: - - renamed bassBosst to fastBastBoost - - added new bassBoost-class based on audacity's bass-boost-effect - - * plugins/kicker/kicker.cpp: - * include/effect_lib.h: - introduced new distortion-class which sounds better than - foldback-distortion - -2006-12-20 Javier Serrano Polo - - * src/widgets/rack_plugin.cpp: - * src/widgets/tempo_sync_knob.cpp: - defer deletion of additional windows, fixes event-loop segfault - -2006-12-20 Tobias Doerffel - - * src/tracks/instrument_track.cpp: - fixed basic envelope - - * plugins/kicker/kicker.h: - * plugins/kicker/kicker.cpp: - * plugins/kicker/logo.png: - * plugins/kicker/artwork.png: - * plugins/kicker/Makefile.am: - * plugins/Makefile.am: - * configure.in: - added Kicker-plugin, a versatile kick- & bassdrum-synthesizer - - * include/sweep_oscillator.h: - added simple sweep-oscillator-class - - * include/effect_lib.h: - - added foldbackDistortion-class - - added process()-methods to monoBase- and stereoBase-class - - added bypass-classes for mono and stereo - - added effect-chaining-class - - * configure.in: - fail if -fomit-frame-pointer is found in compiler-flags and - VST-support is not disabled - -2006-12-19 Javier Serrano Polo - - * include/tool.h: - * src/core/tool.cpp: - initial release, base class for all tool plugins - - * include/plugin.h: - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - renamed AnalysisTools to Tool - - * include/main_window.h: - * src/core/main_window.cpp: - added tools menu - - * Makefile.am: - * src/lmms_single_source.cpp: - added tool plugins - - * configure.in: - * plugins/live_tool/artwork.png: - * plugins/live_tool/live_tool.cpp: - * plugins/live_tool/live_tool.h: - * plugins/live_tool/logo.png: - * plugins/live_tool/Makefile.am: - added live tool, an example tool plugin - - * plugins/Makefile.am: - - added live tool - - eased SVN merging - - * data/*/Makefile.am: - * data/*/*/Makefile.am: - * plugins/vst_base/Makefile.am: - - removed wildcard extension for POSIX compliance - - fixed additional automake 1.10 issues - -2006-12-18 Tobias Doerffel - - * plugins/bass_booster/bassboster_control_dialog.h: - * plugins/bass_booster/bassboster_control_dialog.cpp: - set changed parameters directly using new set...-methods of effect-lib - (preserves current effect-state and therefore avoids clicks in sound- - stream) - - * include/effect_lib.h: - - renamed class "base" to "monoBase" - - monoToStereoAdaptor can now have different effects for the two - channels - - added stereoToMonoAdaptor - - extended baseBoost-class by several methods - - * plugins/vestige/vestige.h: - * plugins/vestige/vestige.cpp: - added note-state-array for handling sequences of "note-on note-off" - events while the according note is already on which for example is the - case when placing the two notes at the same key next to each other - - until now the plugin started playing the second note but stopped - immediately as the note-off-event of the first note arrived later than - the note-on-event of the second one - - * src/core/instrument.cpp: - always call invalidate() in destructor so (instrumentPlayHandle- - driven) plugins do not have to care about it - - * src/tracks/instrument_track.cpp: - make sure value returned by masterKey() is within allowed range - - * src/core/mixer.cpp: - fixed bug which caused LMMS to crash when using parallelizing-level - above 1 and invalidated play-handles were existing - -2006-12-17 Tobias Doerffel - - * plugins/bass_booster/bassboster_control_dialog.cpp: - * plugins/bass_booster/bassboster_control_dialog.h: - * plugins/bass_booster/bass_boster.h: - * plugins/bass_booster/bass_boster.cpp: - * plugins/bass_booster/Makefile.am: - * plugins/Makefile.am: - * configure.in: - added bassbooster-effect-plugin - - * src/core/effect_select_dialog.cpp: - added support for effects without sub-plugin-support and fixed some - potential crashs - - * include/effect_lib.h: - added simple but powerful template-based effect-library with currently - two basic effects - -2006-12-11 Javier Serrano Polo - - * include/sample_buffer.h: - * src/lib/sample_buffer.cpp: - - fixed SDL_sound decoding - - enabled speex samples - - * src/core/file_browser.cpp: - * src/core/main_window.cpp: - enabled speex samples - - * plugins/ladspa_effect/ladspa_effect.cpp: - fixed adding effect segfault - -2006-12-09 Tobias Doerffel - - * configure.in: - check for ${prefix} before extending CFLAGS etc. - should fix issue - with make-problems when using older automake-versions - - * include/instrument.h: - * include/envelope_tab_widget.h: - * src/core/envelope_tab_widget.cpp: - support for instruments which want to define their own number of - release-frames - - * include/instrument_track.h: - * include/instrument.h: - * src/core/note_play_handle.cpp: - support for monophonic instruments - - * include/mixer.h: - * src/core/mixer.cpp: - made mixer::removePlayHandle() to accept const-pointers - -2006-12-06 Javier Serrano Polo - - * include/note.h: - * src/core/note.cpp: - show detuning in the piano roll - - * include/piano_roll.h: - * src/core/piano_roll.cpp: - - show note detuning - - save last key when starting to play, fixes held notes bug - - removed cursor enter/leave events, they could be ignored - - optimized unsafe loops - - * include/xqmap.h: - initial release, QMap with lowerBound for Qt3 - - * include/automation_pattern.h: - * src/tracks/automation_pattern.cpp: - - use lowerBound find, resets to proper values - - work with inverted midi time - - * include/automation_editor.h: - * src/core/automation_editor.cpp: - - work with inverted midi time - - fixed display of hidden values - - added red cross - - update detuning in the piano roll - - removed cursor enter/leave events, they could be ignored - - optimized unsafe loops - - minor optimizations - - * include/note_play_handle.h: - * src/core/arp_and_chords_tab_widget.cpp: - set subnotes' BB track - - * data/track_icons/*.png: - re-added corrupted images - - * src/core/name_label.cpp: - added bad pixmap protection - - * src/audio/audio_alsa.cpp: - - removed unnecessary asynchronous behaviour, fixes large audio buffers - - fill the whole period buffer, avoids underrun in synchronous mode - - * src/core/setup_dialog.cpp: - don't use the journal - - * include/journalling_object.h: - ease short disabling - - * include/automatable_object.h: - - use light journal disabling - - use the journal if necessary - - * src/widgets/knob.cpp: - * src/widgets/lcd_spinbox.cpp: - * src/widgets/volume_knob.cpp: - use the journal if necessary - - * src/widgets/tempo_sync_knob.cpp: - - change icon when changing mode, fixes automation crash - - disable the journal when calculating sync time - - * src/core/bb_editor.cpp: - don't create TCOs when there aren't any BB tracks - - * src/tracks/instrument_track.cpp: - removed temporary fix - -2006-12-05 Tobias Doerffel - - * plugins/ladspa_effect/caps/Makefile.am: - added include-path of LMMS for successfully compiling CAPS with shipped - LADSPA-header - - * src/tracks/instrument_track.cpp: - integrated patch from Jean-Yves Lefort - -2006-12-04 Tobias Doerffel - - * Makefile.am: - added ladspa-1.1.h to source-file-list - - * plugins/ladspa_effect/caps/basics.h: - include shipped LADSPA-header if none was found during configure - -2006-12-03 Alexey Kouznetsov - - * data/locale/ru.ts: - updated Russian translation - -2006-11-19 Tobias Doerffel - - * plugins/vst_base/lvsl_server.c: - proper handling of pitch-bend-events - - * plugins/vestige/vestige.h: - * plugins/vestige/vestige.cpp: - handle MIDI-events by forwarding them to VST-plugin - - * include/instrument.h: - * src/tracks/instrument_track.cpp: - if supported by according instrument, it now can handle all incoming - MIDI-events (except Noteon and Noteoff) - - * src/midi/midi_alsa_seq.cpp: - more complete implementation of MIDI-event-handling - -2006-11-15 Javier Serrano Polo - - * include/audio_alsa.h: - * src/audio/audio_alsa.cpp: - * src/audio/audio_device.cpp: - * src/audio/audio_file_wave.cpp: - convert-endian-based conversion instead of little-endian-based, - fixes OSS and SDL - - * include/audio_sdl.h: - * src/audio/audio_sdl.cpp: - fill the whole audio buffer - -2006-11-11 Javier Serrano Polo - - * src/core/piano_roll.cpp: - fixed pasting recorded notes segfault - - * configure.in: - turned EXTRAFLAGS into DEFAULTFLAGS - -2006-11-11 Tobias Doerffel - - * plugins/flp_import/flp_import.cpp: - include ctype.h - -2006-11-08 Javier Serrano Polo - - * include/bb_track.h: - * src/tracks/bb_track.cpp: - change color of selected group of TCOs - - * plugins/vst_base/lvsl_server.c: - fixed segfault when initializing some VST plugins - - * src/lib/sample_buffer.cpp: - fixed switching from normal play to resampling play - -2006-10-30 Tobias Doerffel - - * src/lib/string_pair_drag.cpp: - when decoding value of stringPairDrag-class use everything after ":" - instead of first section as the value (string) itself might contain - ":"-characters - makes it possible to drag'n'drop instrument-tracks - with VeSTige-instrument and avoids crash - - * src/core/piano_roll.cpp: - when checking cursor-position in edit-mode (move/resize note), do - comparisons in pixels instead of tact64th - fixes bug that 32th- and - 64th-notes could not be resized - - * src/core/file_browser.cpp: - also recognize "mmpz"-files as projects and load them when - double-clicking them - - * src/tracks/pattern.cpp: - when loading pattern, check type afterwards and correct if necessary - -2006-10-09 Mikael Freeman - - * data/locale/sv.ts: - updated Swedish translation - -2006-09-28 Tobias Doerffel - - * include/setup_dialog.h: - * src/core/main_window.cpp: - * src/core/setup_dialog.cpp: - * src/lib/mmp.cpp: - added support for compressed project ("mmpz"-extension), files are - compressed if extension given to multimediaProject::writeFile() is - mmpz or (if none given) user enabled compression as default - - * data/locale/de.ts: - updated German translation (still incomplete (mainly for - mallets-plugin)) - - * lmms.1: - updated manpage (added link to Wiki and updated description) - - * configure.in: - * include/ladspa-1.1.h: - * plugins/ladspa_base/ladspa_manager.h: - added the latest LADSPA-header to be shipped with LMMS for always - building LMMS with LADSPA-support, even if no ladspa.h was found on - system (still causes warning) - -2006-09-25 Tobias Doerffel - - * configure.in: - * plugins/ladspa_effect/Makefile.am: - * plugins/ladspa_effect/caps/Makefile.am: - added missing Makefile.am and re-added CAPS-support - -2006-09-25 Danny McRae - - * plugins/vibed/vibrating_string.cpp: - 2x oversampling in non-hq-mode to get the instument to sound the - same in both modes - - * configure.in: - * plugins/ladspa_effect/Makefile.am: - removed references to CAPS (sorry about that Toby, but I couldn't get - anything to build with them--there's no make info in the CAPS dir) - -2006-09-25 Tobias Doerffel - - * acinclude.m4: - * configure.in: - * Makefile.am: - * include/piano_roll.h: - * include/piano_widget.h: - * src/core/piano_roll.cpp: - * src/core/piano_widget.cpp: - made LMMS compile with mingw-cross-compiler - - * include/automatable_slider.h: - * plugins/stk/mallets/mallets.cpp: - * plugins/vst_effect/vst_subplugin_features.cpp: - * plugins/vst_effect/vst_subplugin_features.cpp: - * src/core/meter_dialog.cpp: - * src/widgets/automatable_slider.cpp: - * src/widgets/knob.cpp: - * src/widgets/volume_knob.cpp: - Qt4-fixes - - * plugins/audio_file_processor/audio_file_processor.cpp: - * src/lib/sample_buffer.cpp: - removed obsolete inclusion of paths.h - - * include/rack_view.h: - * plugins/ladspa_effect/ladspa_effect.cpp: - * src/core/effect_control_dialog.cpp: - include qt3-support-header first - - * plugins/vst_effect/vst_control_dialog.cpp: - do not try to reparent effect's plugin-widget in destructor - fixes - crash when deleting vst-effect from effect-chain - - * src/lib/mmp.cpp: - do not indent mmp-files anymore as it wastes *a lot* of unneccesary - space - - * data/projects/cool_songs/StrictProduction-Underline.mmp: - added another cool project - - * plugins/ladspa_base/ladspa_manager.cpp: - - always add /usr/lib/ladspa and /usr/local/lib/ladspa to directories - where to search for LADSPA-plugins - - also search in /usr/lib/lmms/ladspa for LADSPA-plugins (that's where - for example CAPS is installed) - - * plugins/ladspa_effect/caps/: - added CAPS (C Audio Plugin Suite) for providing a basic LADSPA-plugin- - collection - -2006-09-23 Tobias Doerffel - - * plugins/vst_effect/vst_control_dialog.cpp: - save and load settings of VST-effect - with this VST-effect-support is - complete for now - - * plugins/vst_base/lvsl_client.h: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vestige/vestige.cpp: - moved code from vestigeInstrument::saveSettings() and - vestigeInstrument::loadSettings() to remoteVSTPlugin - - * plugins/ladspa_effect/ladspa_control_dialog.h: - changed node-name from "controls" to "ladspacontrols" to be more - consistent with naming-conventions - - * plugins/ladspa_effect/ladspa_subplugin_features.h: - * plugins/ladspa_effect/ladspa_subplugin_features.cpp: - moved ladspaSubPluginFeatures-code from LADSPA-base to where it - belongs/is used - in LADSPA-effect - - * data/projects/demos/Zvonsully-RaceTheZBeat.mmp: - * data/projects/cool_songs/Malex-Horizon4.mmp: - added two projects - - * plugins/ladspa_base/ladspa_browser.cpp: - * plugins/ladspa_base/ladspa_subplugin_features.cpp: - removed #ifdef SINGLE_SOURCE_COMPILE, as this doesn't affect plugins - - fixes bug with undefined symbol in libladspaeffect.so - - * configure.in: - enable VST-support per default - - * include/aeffectx.h: - added Javier's header (with dssi-vst-patch) - - * data/lmms: - * data/lmms.desktop: - * data/Makefile.am: - added desktop- and menu-entry-file for LMMS (thanks to Javier for the - latter one on debian-list) - -2006-09-23 Mikael Freeman - - * data/locale/sv.ts: - added first Swedish translation (very incomplete) - -2006-09-22 Tobias Doerffel - - * plugins/vst_base/lvsl_client.cpp: - m_initialized is now set before calling waitForProcessingFinished(), - makes VST-effects work - -2006-09-21 Tobias Doerffel - - * plugins/vst_effect/Makefile.am: - * plugins/vst_effect/logo.png: - * plugins/vst_effect/vst_effect.h: - * plugins/vst_effect/vst_effect.cpp: - * plugins/vst_effect/vst_control_dialog.h: - * plugins/vst_effect/vst_control_dialog.cpp: - * plugins/vst_effect/vst_subplugin_features.h: - * plugins/vst_effect/vst_subplugin_features.cpp: - added plugin for supporting VST-effects inside LMMS - currently very - experimental and incomplete, but it compiles and works somehow ;-) - - * plugins/ladspa_effect/Makefile.am: - generating ladspa_effect.moc not needed ynmore - - * plugins/vestige/Makefile.am: - - use new vstbase-library - - do not link against X11, as not needed anymore - - * plugins/Makefile.am: - * plugins/vst_base/Makefile.am: - * plugins/vst_base/communication.h: - * plugins/vst_base/lvsl_client.h: - * plugins/vst_base/lvsl_client.cpp: - * plugins/vst_base/lvsl_server.c: - * plugins/vst_base/vst_base.cpp: - moved LVSL-code into separate library for allowing multiple - LMMS-plugins to deal with VST-plugins - -2006-09-20 Tobias Doerffel - - * plugins/*/*.png: - * data/locale/*.qm: - * data/samples/*: - * data/themes/*: - re-added all binary files as they were corrupted during SVN-migration - for some reason - - * configure.in: - * Makefile.am: - * plugins/ladspa_base/*: - * include/config_mgr.h: - * include/engine.h: - * include/setup_dialog.h: - * src/audio/audio_port.cpp: - * src/core/config_mgr.cpp: - * src/core/engine.cpp: - * src/core/setup_dialog.cpp: - * src/lmms_single_source.cpp: - moved all LADSPA-related code into separate library against which LMMS - is linked when compiling with LADSPA-support - - * Makefile.cvs: - renamed to Makefile.svn as LMMS-CVS-repo was migrated to subversion - -2006-09-18 Tobias Doerffel - - * plugins/vestige/vestige.h: - * plugins/vestige/vestige.cpp: - * plugin/vestige/lvsl_client.h: - * plugin/vestige/lvsl_client.cpp: - take advantage of LMMS' new parallelizing-support - works indeed the - way expected! all VST-servers are now balanced all over available CPUs - - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/bit_invader/bit_invader.h: - * plugins/bit_invader/bit_invader.cpp: - * plugins/organic/organic.h: - * plugins/organic/organic.cpp: - * plugins/plucked_string_synth/plucked_string_synth.h: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/mallets/mallets.h: - * plugins/mallets/mallets.cpp: - * plugins/vestige/vestige.h: - * plugins/vestige/vestige.cpp: - * plugins/vibed/vibed.h: - * plugins/vibed/vibed.cpp: - * include/instrument.h: - * include/instrument_play_handle.h: - * include/mixer.h: - * include/note_play_handle.h: - * include/play_handle.h: - * include/plugin.h: - * include/preset_preview_play_handle.h: - * include/sample_play_handle.h: - * include/setup_dialog.h: - * include/track.h: - * src/core/instrument.cpp: - * src/core/mixer.cpp: - * src/core/plugin.cpp: - * src/core/preset_preview_play_handle.cpp: - * src/core/sample_play_handle.cpp: - * src/core/setup_dialog.cpp: - * src/tracks/instrument_track.cpp: - added first simple support for parallelizing sound-processing for - using full power of SMP-systems (e.g. my new dual-core-notebook :-) - -2006-09-17 Javier Serrano Polo - - * include/tempo_sync_knob.h: - fixed save/load segfault in LADSPA controls - - * src/core/song_editor.cpp: - fixed looping when processing the audio buffer - - * include/timeline.h: - * src/core/timeline.cpp: - update loop points state button when loading a project - - * src/core/automation_editor.cpp: - fixed segfault when stopping without pattern - -2006-09-17 Tobias Doerffel - - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/flp_import/flp_import.cpp: - * plugins/midi_import/midi_import.cpp: - * plugins/organic/organic.cpp: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/mallets/mallets.cpp: - * plugins/vestige/vestige.cpp: - * plugins/vibed/vibed.cpp: - extended plugin-descriptor by sub_plugin_features-field (for - non-effects likely NULL) - - * include/audio_port.h: - * include/effect.h: - * include/effect_chain.h: - * include/effect_label.h: - * include/effect_tab_widget.h: - * include/instrument.h: - * include/instrument_track.h: - * include/ladspa_browser.h: - * include/ladspa_manager.h: - * include/main_window.h: - * include/plugin.h: - * include/rack_plugin.h: - * include/rack_view.h: - * include/sample_track.h: - * src/lmms_single_source.cpp: - * src/audio/audio_port.cpp: - * src/core/effect.cpp: - * src/core/effect_chain.cp: - * src/core/effect_tab_widget.cpp: - * src/core/import_filter.cpp: - * src/core/ladspa_browser.cpp: - * src/core/main_window.cpp: - * src/core/mixer.cpp: - * src/core/plugin.cpp: - * src/core/plugin_browser.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - * src/widgets/effect_label.cpp: - * src/widgets/ladspa_control.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/rack_view.cpp: - added generic effect-framework based on LADSPA-effect-code for using - arbitrary effects inside LMMS and using sub-plugins (such as - LADSPA-plugins) transparently at the same time, now writing of any - other effects an begin - - * plugins/ladspa_effect/ladspa_effect.h: - * plugins/ladspa_effect/ladspa_effect.cpp: - * plugins/ladspa_effect/ladspa_control_dialog.h: - * plugins/ladspa_effect/ladspa_control_dialog.cpp: - moved LADSPA-effect-support into separate plugin - - * include/dummy_effect.h: - * include/effect_control_dialog.h: - * include/effect_select_dialog.h: - * include/ladspa_base.h: - * include/ladspa_subplugin_features.h: - * src/core/effect_control_dialog.cpp: - * src/core/effect_select_dialog.cpp: - * src/core/ladspa_subplugin_features.cpp: - added (see description above) - - * include/ladspa_control_dialog.h: - * include/ladspa_description.h: - * include/ladspa_effect.h: - * include/select_ladspa_dialog.h: - * src/core/ladspa_control_dialog.cpp: - * src/core/ladspa_effect.cpp: - * src/core/select_ladspa_dialog.cpp: - removed - - * data/locale/de.ts: - updated German translation - - * configure.in: - - do not set wrong VST_SUPPORT-condition if winegcc was found and - --with-vst specified but VST-headers are missing - - LADSPA-support not experimental anymore and enabled per default when - header is found - - use -O2 per default - -2006-09-11 Javier Serrano Polo - - * plugins/vestige/lvsl_server.c: - save/load all plugin parameters - -2006-09-09 Javier Serrano Polo - - * src/core/automation_editor.cpp: - fixed single source compilation - -2006-09-08 Danny McRae - * configure.in: - fixed check for STK headers and library - - * plugins/stk/mallets/mallets.h: - removed the meaningless index boundary limiter for m_delayRead and - m_delayWrite - - * configure.in: - * plugins/Makefile.am: - * plugins/stk/Makefile.am: - began work on supporting STK instruments - - * plugins/stk/mallets/Makefile.am: - * plugins/stk/mallets/artwork.png: - * plugins/stk/mallets/logo.png: - * plugins/stk/mallets/mallets.h: - * plugins/stk/mallets/mallets.cpp: - added mallets instrument - - * include/config_mgr.h: - * src/core/config_mgr.cpp: - * include/setup_dialog.h: - * src/core/setup_dialog.cpp: - added STK rawwave to directory selector - -2006-09-03 Thomas Girard - - * src/core/file_browser.cpp: - fixed bad project browsing segfault - -2006-09-03 Javier Serrano Polo - - * include/bb_track.h: - * src/core/track.cpp: - integrated Toby's Qt4 fixes - - * src/widgets/tempo_sync_knob.cpp: - - integrated Toby's Qt4 fixes - - connect the meter dialog only when custom sync - - don't set the modified flag on automated changes - - * src/core/song_editor.cpp: - - integrated Toby's Qt4 fixes - - rely on objects to set the modified flag - - * src/core/meter_dialog.cpp: - added names to display in the automation editor - -2006-09-03 Tobias Doerffel - - * acinclude.m4: - * include/effect_tab_widget.h: - * include/ladspa_description.h: - * include/qt3support.h: - * include/rack_view.h: - * include/track.h: - * src/audio/audio_device.cpp: - * src/core/automation_editor.cpp: - * src/core/effect_tab_widget.cpp: - * src/core/envelope_and_lfo_widget.cpp: - * src/core/ladspa_control_dialog.cpp: - * src/core/ladspa_effect.cpp: - * src/core/ladspa_port_dialog.cpp: - * src/core/name_label.cpp: - * src/core/note.cpp: - * src/core/piano_roll.cpp: - * src/lib/ladspa_2_lmms.cpp: - * src/lib/ladspa_manager.cpp: - * src/tracks/automation_pattern.cpp: - * src/tracks/instrument_track.cpp: - * src/widgets/effect_label.cpp: - * src/widgets/ladspa_control.cpp: - * src/widgets/ladspa_description.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/rack_view.cpp: - * src/widgets/volume_knob.cpp: - Qt4-compat fixes - -2006-08-30 Danny McRae - * src/widgets/ladspa_control.cpp: - added a lock to prevent segfaults when changing the values - while playing - - * src/core/ladspa_effect.cpp: - corrected the labeling of "(ms)" which were showing up as - "(ms))" - - * Makefile.am: - * src/lmms_single_source.cpp: - * include/meter_dialog.h: - * src/core/meter_dialog.cpp: - * include/tempo_sync_knob.h: - * src/widgets/tempo_sync_knob: - added user definable settings for tempo sync - - * src/core/arp_and_chords_tab_widget.cpp: - - changed arp time knob to save using new tempo sync format - - fixed a bug that was preventing the arp groupbox state from - being restored properly - - * src/core/envelope_and_lfo_widget.cpp: - changed lfo time knob to save using new tempo sync format - -2006-08-28 Javier Serrano Polo - - * COPYING: - updated GPL - - * README: - * source files: - updated FSF address - - * depcomp: - removed generated file - - * mkinstalldirs: - removed auxiliary automake file - -2006-08-27 Javier Serrano Polo - - * include/automation_track.h: - * include/bb_editor.h: - * include/bb_track.h: - * include/instrument_track.h: - * include/sample_track.h: - * src/core/bb_editor.cpp: - * src/core/song_editor.cpp: - * src/tracks/automation_track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/sample_track.cpp: - removed start frame from play() methods - - * src/tracks/instrument_track.cpp: - - removed start frame from play() methods - - removed checks when sending automation events - - * include/track.h: - - removed start frame from play() methods - - removed checks when sending automation events - - use update() instead of repaint() - - * src/core/track.cpp: - - fixed no bb-track case - - removed checks when sending automation events - - use update() instead of repaint() - - * src/core/track_container.cpp: - * src/widgets/kmultitabbar.cpp: - * src/widgets/text_float.cpp: - use update() instead of repaint() - - * include/automation_editor.h: - * include/piano_roll.h: - * src/core/automation_editor.cpp: - * src/core/piano_roll.cpp: - moved update() reimplementations to methods called from paintEvent() - - * include/envelope_and_lfo_widget.h: - * src/core/envelope_tab_widget.cpp: - optimized envelope and LFO computations - - * src/core/envelope_and_lfo_widget.cpp: - - optimized envelope and LFO computations - - separated sample variables updates from paint events - - * include/combobox.h: - clear the menu when the combobox is cleared - - * src/midi/midi_alsa_seq.cpp: - clean-up properly - -2006-08-24 Javier Serrano Polo - - * include/shared_object.h: - initial release, shared object for use among threads - - * include/sample_buffer.h: - became a shared object - - * src/tracks/instrument_track.cpp: - use sample handles to play frozen patterns, fixes crackling - - * include/pattern.h: - * src/tracks/pattern.cpp: - allow access to the frozen pattern - - * include/sample_play_handle.h: - * src/core/sample_play_handle.cpp: - - react to bb-track mute automation - - added constructor to handle frozen patterns - - use shared sample buffers - - * include/instrument_track.h: - getAudioPort() is required - - * include/sample_track.h: - * src/tracks/sample_track.cpp: - - removed obsolete play() in sampleTCO - - use shared sample buffers - - * src/core/envelope_and_lfo_widget.cpp: - fixed load settings deadlock - - * src/audio/audio_device.cpp: - graceful shutdown - - * include/midi_alsa_seq.h: - * src/midi/midi_alsa_seq.cpp: - added pipe to detect shutdown - - * Makefile.am: - added shared object - -2006-08-22 Tobias Doerffel - - * configure.in: - - changed package-maintainer-email-address to lmms-devel-list - - removed -floop-optimization2-flag as it is deprecated and not - supported by coming GCC 4.2 - -2006-08-20 Javier Serrano Polo - - * include/envelope_and_lfo_widget.h: - * src/core/envelope_and_lfo_widget.cpp: - * src/core/envelope_tab_widget.cpp: - changed busy flag into busy mutex, improves thread safety - -2006-08-18 Javier Serrano Polo - - * src/core/bb_editor.cpp: - removed disabled tracks - - * src/tracks/instrument_track.cpp: - added automation disabled - - * include/bb_track.h: - * include/track.h: - * src/core/track.cpp: - * src/tracks/bb_track.cpp: - renamed disabled track logic to automation disabled - - * include/pattern.h: - * src/tracks/pattern.cpp: - added empty() to check whether there is any relevant note - - * src/lib/oscillator.cpp: - check user waveform presence, fixes organic segfault - - * src/core/name_label.cpp: - changed icon selection, fixes loss of icon - -2006-08-17 Erwin Goossen - - * data/locale/nl.ts: - updated Dutch translation - -2006-08-16 Danny McRae - * src/widgets/tempo_sync_knob.cpp: - changed context menu to only display possible note length - options based on the knob's max value - - * include/ladspa_effect.h: - * src/core/ladspa_effect.cpp: - - added a new port data type TIME for port names containing - "(ms)", "(S)", or "(Seconds)" - - converts units to milliseconds for TIME ports - - * src/widgets/ladspa_control.cpp: - use a tempoSyncKnob for TIME ports - - * src/widgets/automatable_button.cpp: - remove toggled signal sent from method toggle--it's also sent - from setValue, and the double signal was wreaking havoc with - the channel linkings - - * include/ladspa_control.h: - * include/ladspa_control_dialog.h: - * src/core/ladspa_control_dialog.cpp: - * src/widgets/ladspa_control.cpp: - * src/widgets/rack_plugin.cpp: - - added channel link selectors for individual ports - - don't show control edit button for plugins with no controls - -2006-08-16 Erwin Goossen - - * data/locale/nl.ts: - added Dutch translation - -2006-08-15 Javier Serrano Polo - - * include/automatable_object.h: - fixed unlinking objects - - * include/automation_pattern.h: - added constructor for unlinking objects - - * src/tracks/automation_pattern.cpp: - - added constructor for unlinking objects - - don't remove value at position 0 - - * INSTALL: - * Makefile.cvs: - * install-sh: - * missing: - removed more generated files - -2006-08-15 Tobias Doerffel - - * src/widgets/knob.cpp: - support for linking knobs using + drag'n'drop (note that - connetions are not saved!) - -2006-08-15 Danny McRae - * src/widgets/ladspa_control.cpp: - doubled the number of steps in the knobs - - * src/core/ladspa_control_dialog.cpp: - changed linking to default on - - * data/themes/default/effect_plugin.png: - * src/widgets/rack_plugin.cpp: - * src/widgets/rack_view.cpp: - added some texture to the plugin widget - - * src/core/ladspa_control_dialog.cpp: - save and restore the channel link state - - * src/widgets/rack_plugin.cpp: - added deletion of the control view to the dtor to make it clean - up after itself - - * include/automatable_object.h: - * include/ladspa_control.h: - * include/ladspa_control_dialog.h: - * src/core/ladspa_control_dialog.cpp: - * src/core/ladspa_control.cpp: - - added a link channels option to the ladspa controls - - * All of the effects related files: - reformatted to respect the 80 characters per line convention - -2006-08-15 Tobias Doerffel - - * Makefile.cvs: - small makefile to be run before configure for creating/copying all - necessary files - - * config.sub: - * config.guess: - * configure: - * config.h.in: - * ltmain.sh: - removed - -2006-08-14 Danny McRae - * Makefile.am: - * include/ladspa_effect.h: - * src/core/ladspa_effect.cpp: - * include/effect.h: - * include/effect_chain.h: - * include/ladspa_browser: - * include/ladspa_control_dialog.h: - * include/rack_plugin.h: - * select_ladspa_dialog.h: - * src/core/effect.cpp: - * src/core/effect_chain.cpp: - * src/core/ladspa_browser.cpp: - * src/core/ladspa_control_dialog.cpp: - * src/core/select_ladspa_dialog.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - * src/widgets/ladspa_control.cpp: - * src/widgets/rack_plugin.cpp: - - separated ladspa specific stuff into a class derived from - effect - - changed the default value range for unhinted ports from - (-99999,99999) to (0,1) - -2006-08-13 Javier Serrano Polo - - * src/tracks/sample_track.cpp: - moved playing to samplePlayHandle, removes crackling - - * include/sample_track.h: - - allow sample buffer access - - getAudioPort() is required - - removed slots, moved playing to samplePlayHandle - - * include/sample_play_handle.h. - * src/core/sample_play_handle.cpp: - - became a QObject - - create handle from sampleTCO - - fill audio buffer from the requested base frame - - made automation-awared - - * Makefile.am: - samplePlayHandle is now a QObject - - * include/sample_buffer.h: - - use fast sample generation, rely on proper waveforms - - removed locks in sample generation - - added lock methods for use in higher levels - - * src/lib/oscillator.cpp: - lock user waveform once per loop - - * data/samples/shapes/low_sine.wav: - low frequency sine for use in the oscillator - - * include/lmms_math.h: - added fast pseudo-random integer generator - - * include/oscillator.h: - - use fast noise generation - - simplified user-wave call, frames must never be 0 - - * include/basic_filters.h: - - added minQ "constant" - - limit Q resonance - - * src/core/envelope_tab_widget.cpp: - added minQ "constant" - -2006-08-10 Danny McRae - * src/widgets/ladspa_control.cpp: - unfixed my misunderstood fix of the setting of sample rate - dependent ports - - * src/core/mixer: - got rid of the "more_effect |= ..." nonsense - - * src/widgets/effect_label.cpp: - * src/widgets/rack_plugin.cpp: - changed the parenting of the control dialog to main window - instead of NULL - -2006-08-11 Tobias Doerffel - - * configure.in: - added check for ctype.h to make LMMS work on Zenwalk-systems - -2006-08-10 Javier Serrano Polo - - * include/bb_track.h: - * include/track.h: - * src/core/bb_editor.cpp: - added disabled tracks - - * src/tracks/bb_track.cpp: - - added disabled tracks - - fixed BB-track 0 cloning bug - - * src/core/track.cpp: - - added disabled tracks - - update track operations menu - - simplified engine access - - fixed BB-track 0 cloning bug - - improved removing automation patterns - - * include/track_container.h: - - moved tracks() to public - - added node name - - * src/core/track_container.cpp: - added node name - - * data/themes/default/mute_on_disabled.png: - * data/themes/default/track_op_menu_disabled.png: - * data/themes/default/mute_off_disabled.png: - * resources/mute_on_disabled.png: - * resources/track_op_menu_disabled.png: - * resources/mute_off_disabled.png: - added disabled track artwork - -2006-08-10 Danny McRae - * include/effect.h: - * include/effect_chain.h: - * include/effect_label.h: - * include/effect_tab_widget.h: - * include/ladspa_control.h: - * include/ladspa_control_dialog.h: - * include/ladspa_description.h: - * include/rack_plugin.h: - * include/rack_view.h: - * src/core/effect.cpp: - * src/core/effect_tab_widget.cpp: - * src/core/ladspa_port_dialog.cpp: - * src/core/ladspa_control_dialog.cpp: - * src/widgets/ladspa_description.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/rack_view.cpp: - added Qt4 includes - - * include/config_mgr.h: - * include/setup_dialog.h: - * src/core/config_mgr.cpp: - * src/core/setup_dialog.cpp: - * src/lib/ladspa_manager.cpp: - -added ladspa search path to user configuration - -made ladspa loader ignore all files not ending in "so" - - * include/effect.h: - * src/core/effect.cpp: - * src/widgets/ladspa_control.cpp: - corrected an error in setting the values for sample rate - dependent ports - - the crackling in the sample tracks is due to rounding errors - in the calculation of _start_frame in sampleTrack::play that - cause it to occasionally skip a sample. Don't know what to - do about it--just thought it should be noted somewhere. - -2006-08-09 Danny McRae - * Makefile.am: - * include/effect_label.h: - * include/effect_tab_widget.h: - * include/instrument_track.h: - * include/ladspa_control.h: - * include/ladspa_control_dialog.h: - * include/rack_plugin.h: - * include/rack_view.h: - * src/lmms_single_source.cpp: - * src/audio/audio_port.cpp: - * src/core/effect.cpp: - * src/core/effect_tab_widget.cpp: - * src/core/ladspa_control_dialog.cpp: - * src/core/ladspa_port_dialog.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - * src/widgets/ladspa_control.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/rack_view.cpp: - -full save and load - -added effects to sample tracks - -fixed the knob twoddling segfaults (hopefully) - -somewhere between 0.2.1 and yesterday a crackling has been - introduced in the sample tracks. My largish checkins - look like an obvious culprit, but it would have to be - something I forgot to #ifdef LADSPA_SUPPORT out. - -2006-08-08 Danny McRae - * include/effect.h: - * include/effect_chain.h: - * include/effect_tab_widget.h: - * include/ladspa_browser.h: - * include/ladspa_control.h: - * include/ladspa_control_dialog.h: - * include/rack_plugin.h: - * include/rack_view.h: - * src/core/effect.cpp: - * src/core/effect_chain.cpp: - * src/core/effect_tab_widget.cpp: - * src/core/ladspa_browser.cpp: - * src/core/ladspa_control_dialog.cpp: - * src/tracks/instrument_track.cpp: - * src/widgets/ladspa_control.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/rack_view.cpp: - -added ability to change the order of effects or delete them - -partial save and load support - -still getting spurious segfaults when twoddling with knobs, - the textFloat associated with the knob is being reparented to - NULL(?!), but works well enough to at least hear what things - sound like with effects - -2006-08-07 Danny McRae - * include/oscillator.h: - * plugins/vibed/vibrating_string.h: - * plugins/vibed/vibrating_string.cpp: - clean up some things that were preventing the getNextSample - methods from being inlined - - * configure: - * configure.in: - -made ladspa support default off - -must pass --with-ladspa to get it to build - - * Makefile.am: - * data/themes/default/add.png: - * data/themes/default/analysis.png: - * data/themes/default/ports.png: - * data/themes/default/uhoh.png: - * data/themes/default/unavailable_sound.png: - * data/themes/blue_scene/add.png: - * data/themes/blue_scene/analysis.png: - * data/themes/blue_scene/ports.png: - * data/themes/blue_scene/uhoh.png: - * data/themes/blue_scene/unavailable_sound.png: - * include/audio_port.h: - * include/effect_chain.h: - * include/effect_tab_widget.h: - * include/effect.h: - * include/engine.h: - * include/group_box.h: - * include/instrument_track.h: - * include/ladspa_2_lmms.h: - * include/ladspa_browser.h: - * include/ladspa_control.h: - * include/ladspa_control_dialog.h: - * include/ladspa_description.h: - * include/ladspa_manager.h: - * include/ladspa_port_dialog.h: - * include/main_window.h: - * include/rack_plugin.h: - * include/rack_view.h: - * include/select_ladspa_dialog.h: - * src/lmms_single_source.cpp: - * src/audio/audio_port.cpp: - * src/core/effect_chain.cpp: - * src/core/effect_tab_widget.cpp: - * src/core/effect.cpp: - * src/core/engine.cpp: - * src/core/ladspa_browser.cpp: - * src/core/ladspa_control.cpp: - * src/core/ladspa_port_dialog.cpp: - * src/core/main_window.cpp: - * src/core/mixer.cpp: - * src/core/select_ladspa_dialog.cpp: - * src/lib/ladspa_2_lmms.cpp: - * src/lib/ladspa_manager.cpp: - * src/tracks/instrument_track.cpp: - * src/widgets/group_box.cpp: - * src/widgets/ladspa_control.cpp: - * src/widgets/ladspa_description.cpp: - * src/widgets/rack_plugin.cpp: - * src/widgets/rack_view.cpp: - -added preliminary support for ladspa effects - -no load or save - -expect segfaults - -2006-08-07 Javier Serrano Polo - - * include/lcd_spinbox.h: - added manualChange signal - - * src/widgets/lcd_spinbox.cpp: - - added manualChange signal - - emit valueChanged whenever value is changed - - removed redundant journalling operations - - * src/core/song_editor.cpp: - - set modified flag if there's a manual BPM change - - set tempo if BPM value has changed - - allow further processing on muted tracks - - * include/note_play_handle.h: - * src/core/note_play_handle.cpp: - * src/tracks/instrument_track.cpp: - added bbTrack reference to check whether it's muted - - * src/tracks/bb_track.cpp: - send automation events - - * include/mixer.h: - * src/core/mixer.cpp: - fixed overflow when using big audio buffers - - * plugins/audio_file_processor/audio_file_processor.cpp: - use automation in start-/end-point knobs - - * plugins/vibed/vibed.cpp: - fixed reversed pan - -2006-08-06 Javier Serrano Polo - - * include/engine.h: - * include/midi_time.h: - * src/core/engine.cpp: - * src/core/note_play_handle.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/sample_track.cpp: - frames computation based on 64th of a tact, fixes BB-pattern arbitrary - positioning in song editor - - * include/song_editor.h: - * src/core/song_editor.cpp: - - frames computation based on 64th of a tact - - changed playPos frame counter to float, improves timing precision - - * src/tracks/instrument_track.cpp: - - frames computation based on 64th of a tact - - simplified note playing - -2006-08-03 Javier Serrano Polo - - * src/core/automation_editor.cpp: - - fixed vertical bars in Auto view - - fixed selection frame drawing - - renamed some members and variables - - * include/automation_editor.h: - renamed some members - -2006-08-01 Javier Serrano Polo - - * include/automation_editor.h: - added "Auto" view - - * src/core/automation_editor.cpp: - - added "Auto" view - - improved labels display - - removed duplicate variable y_base - - * include/song_editor.h: - * src/core/engine.cpp: - * src/core/song_editor.cpp: - - moved framesPerTact() from songEditor to engine - - update frames per tact only when changes happen - - * include/engine.h: - * src/core/note_play_handle.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - moved framesPerTact() from songEditor to engine - -2006-07-27 Tobias Doerffel - - * configure.in: - made 0.2.1 release - - * include/mixer.h: - * include/visualization_widget.h: - * src/widgets/visualization_widget.cpp: - fixed a bug in connection between mixer and visualization-widget - -2006-07-24 Javier Serrano Polo - - * src/tracks/instrument_track.cpp: - handle notes deleted when keys still pressed - - * include/song_editor.h: - * src/core/note.cpp: - * src/core/song_editor.cpp: - added checks to avoid segfaults when closing the application - -2006-07-23 Javier Serrano Polo - - * src/core/piano_widget.cpp: - initialize m_lastKey, fixes segfault - - * src/core/automation_editor.cpp: - * src/core/note_play_handle.cpp: - added checks to avoid segfaults when closing the application - -2006-07-22 Javier Serrano Polo - - * include/automatable_object.h: - avoid unnecessary level updates - - * include/track.h: - * src/tracks/instrument_track.cpp: - trigger automation only when time has changed - - * src/core/track.cpp: - - trigger automation only when time has changed - - remove references from patterns when closing the application - - * include/automation_pattern.h: - added method to avoid segfaults when closing the application - - * src/tracks/automation_pattern.cpp: - - added check to avoid segfaults when closing the application - - reverted processMidiTime(), that processing is needed - - * src/core/track_container.cpp: - * src/lib/journalling_object.cpp: - added checks to avoid segfaults when closing the application - - * include/engine.h: - * src/core/engine.cpp: - - do the clean-up in close() - - ensure deleted elements aren't accessed - - * src/core/main_window.cpp: - close the engine rather than delete it - - * include/instrument_track.h: - allow access to the piano widget - - * include/piano_widget.h: - moved key event handlers to public - - * include/piano_roll.h: - redirect events to the piano widget - - * src/core/piano_roll.cpp: - - changed some accelerators - - redirect keyboard events to the piano widget - - fixed segfault when pressing Ctrl with no pattern - - * src/core/automation_editor.cpp: - changed some accelerators - - * src/core/song_editor.cpp: - play the automation track only when playing song - - * include/automation_track.h: - removed unused signal section - - * data/locale/ca.ts: - updated translation - -2006-07-21 Danny McRae - - * configure.in: - - removed -fomit-frame-pointer flag--causes wine to crash on - Ubuntu - - added check for gcc 4.0 for optimization flags--left it - commented out--needs to be tested with 4.1 - -2006-07-20 Tobias Doerffel - - * src/tracks/automation_pattern.cpp: - automationPattern::processMidiTime(): do not start search on time-map if - empty - find() on maps is horribly slow and makes LMMS unusable (still - have to find a better solution without any find()s at all) - -2006-07-19 Tobias Doerffel - - * configure.in: - - added optimization-flags - - made 0.2.0 release - - * vst_sdk23_headers.diff: - - removed as not needed anymore - -2006-07-17 Tobias Doerffel - - * data/locale/de.ts: - * data/locale/de.qm: - updated German translation - - * include/automation_editor.h: - decreased DEFAULT_Y_DELTA - - * plugins/flp_import/flp_import.cpp: - removed some obsolete code - -2006-07-17 dieEasy - - * locale/it.ts: - updated Italian translation - -2006-07-16 Javier Serrano Polo - - * data/themes/default/automation.png: - * resources/automation.png: - * src/core/automation_editor.cpp: - * src/core/main_window.cpp: - * src/core/piano_roll.cpp: - * src/core/piano_widget.cpp: - * src/core/surround_area.cpp: - * src/widgets/automatable_button.cpp: - * src/widgets/automatable_slider.cpp: - * src/widgets/combobox.cpp: - * src/widgets/knob.cpp: - * src/widgets/lcd_spinbox.cpp: - * src/widgets/tempo_sync_knob.cpp: - added automation icon - -2006-07-15 Javier Serrano Polo - - * data/locale/ca.ts: - updated translation - - * src/core/automation_editor.cpp: - corrected help sentence - -2006-07-14 Javier Serrano Polo - - * include/note.h: - * src/core/note.cpp: - - added detuning knob - - added explicit constructor from another note - - * include/note_play_handle.h: - * src/core/note_play_handle.cpp: - handle detuning automation - - * include/instrument_track.h: - send a signal when handling automation - - * src/tracks/instrument_track.cpp: - - send a signal when handling automation - - use note detuning to calculate frequency - - * src/core/arp_and_chords_tab_widget.cpp: - extended detuning to chords and arpeggios - - * include/automation_pattern.h: - * src/tracks/automation_pattern.cpp: - - automation pattern can be initialized without track - - slots moved to public - - * include/automatable_object.h: - automation pattern can be initialized without track - - * src/core/song_editor.cpp: - * src/widgets/automatable_slider.cpp: - updated clear automation method name - - * include/piano_roll.h: - added open (note in editor) mode and support methods - - * src/core/piano_roll.cpp: - - added open (note in editor) mode and support methods - - clone detuning knobs when copying/pasting notes - - * src/core/automation_editor.cpp: - - improved display when no pattern - - play buttons can be used to play related note patterns - - improved play/pause button display - -2006-07-10 Javier Serrano Polo - - * include/combobox.h: - * src/widgets/combobox.cpp: - - use automation capabilities - - added context menu - - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/automation_editor.cpp: - * src/core/envelope_tab_widget.cpp: - * src/core/export_project_dialog.cpp: - * src/core/piano_roll.cpp: - upgraded combo boxes - - * src/core/bb_editor.cpp: - - upgraded combo box - - improved bb-track management - - * src/tracks/bb_track.cpp: - - update bb editor combo box when removed - - moving track is the active one - - * src/core/song_editor.cpp: - - upgraded combo box - - use default template to create new projects - - * include/main_window.h: - * src/core/main_window.cpp: - - added user templates to templates menu - - update templates menu when accessed - -2006-07-09 Javier Serrano Polo - - * include/piano_widget.h: - * src/core/piano_widget.cpp: - - use automation capabilities using a helper knob - - added context menu - - added save/load methods - - use raw keycodes to play the piano - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - - don't set song modified flag when playing automation - - use piano widget save/load methods - -2006-07-08 Javier Serrano Polo - - * include/automation_track.h: - * src/tracks/automation_track.cpp: - initial release, to handle automation of objects without a track - - * include/lcd_spinbox.h: - * src/widgets/lcd_spinbox.cpp: - - use automation capabilities - - added context menu - - * include/automatable_slider.h: - * src/widgets/automatable_slider.cpp: - initial release, slider with automation - - * include/song_editor.h: - * src/core/song_editor.cpp: - - use automatable sliders - - use automation track - - upgraded lcd spin box - - joined some slider creation code between QT versions - - show slider status on manual change only - - * include/track.h: - * src/core/track.cpp: - added automation track - - * src/audio/audio_alsa.cpp: - * src/audio/audio_jack.cpp: - * src/audio/audio_oss.cpp: - * src/core/midi_tab_widget.cpp: - * src/tracks/instrument_track.cpp: - upgraded lcd spin boxes - - * include/automatable_object.h: - check whether the automation editor has been created - - * src/core/surround_area.cpp: - fixed position rounding - - * Makefile.am: - * src/lmms_single_source.cpp: - added automatable_slider and automation_track - -2006-07-03 Javier Serrano Polo - - * plugins/audio_file_processor/audio_file_processor.cpp: - removed all automation - - * src/widgets/automatable_button.cpp: - button groups may not use automation - - * src/widgets/knob.cpp: - knobs may not use automation - - * include/automatable_object.h: - - moved update flag to automation pattern - - moved nullTrack() to public - - * include/automation_pattern.h: - * src/tracks/automation_pattern.cpp: - moved update flag from automatable object - -2006-07-02 Javier Serrano Polo - - * include/surround_area.h: - * src/core/surround_area.cpp: - - use automation capabilities using helper knobs - - added context menu - - added save/load methods - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - use upgraded surround area - - * include/automatable_button.h: - * src/widgets/automatable_button.cpp: - - use automation capabilities in button and button group - - added button context menu - - * include/group_box.h: - * include/led_checkbox.h: - * include/pixmap_button.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/vestige/vestige.cpp: - * plugins/vibed/impulse_editor.cpp: - * plugins/vibed/impulse_editor.h: - * plugins/vibed/nine_button_selector.cpp: - * plugins/vibed/nine_button_selector.h: - * plugins/vibed/vibed.cpp: - * src/core/envelope_tab_widget.cpp: - * src/core/export_project_dialog.cpp: - * src/core/midi_tab_widget.cpp: - * src/core/setup_dialog.cpp: - * src/core/track.cpp: - * src/widgets/group_box.cpp: - * src/widgets/led_checkbox.cpp: - * src/widgets/pixmap_button.cpp: - upgraded buttons - - * plugins/bit_invader/bit_invader.cpp: - - upgraded buttons - - use sample length knob automation - - * plugins/organic/organic.cpp: - - upgraded button - - use waveshape knob automation - - * plugins/triple_oscillator/triple_oscillator.cpp: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/envelope_and_lfo_widget.cpp: - upgraded buttons and button groups - - * include/automatable_object.h: - - moved getAutomationPattern to public - - added some checks and minor fixes - - * src/core/automation_editor.cpp: - improved levels display - - * src/core/song_editor.cpp: - save/load automation editor state - - * src/widgets/tempo_sync_knob.cpp: - added automation editor option in context menu - -2006-06-29 Javier Serrano Polo - - * Makefile.am: - * include/automation_editor.h: - * include/automation_pattern.h: - * include/engine.h: - * include/main_window.h: - * include/song_editor.h: - * include/time_pattern.h: - * include/time_roll.h: - * include/track.h: - * src/lmms_single_source.cpp: - * src/core/automation_editor.cpp: - * src/core/engine.cpp: - * src/core/main_window.cpp: - * src/core/time_roll.cpp: - * src/core/track.cpp: - * src/tracks/automation_pattern.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/sample_track.cpp: - * src/tracks/time_pattern.cpp: - * src/widgets/knob.cpp: - renamed time* classes to automation* ones - - * include/automatable_object.h: - - renamed time* classes to automation* ones - - fixed int classes rounding - - * plugins/organic/organic.cpp: - save harmonic settings like before - - * data/presets/Organic/organ_risingsun.cs.xml: - * data/presets/Organic/organ_swish.cs.xml: - * data/presets/Organic/pad_ethereal.cs.xml: - * data/presets/Organic/pad_rich.cs.xml: - * data/presets/Organic/pad_sweep.cs.xml: - * data/presets/Organic/sequencer_64.cs.xml: - upgraded to new detuning algorithm - -2006-06-28 Javier Serrano Polo - - * include/level_object.h: - * src/tracks/time_pattern.cpp: - added level<->label methods - - * include/automatable_object.h: - - added level<->label methods - - minimized rounding errors - -2006-06-27 Tobias Doerffel - - * plugins/vestige/lvsl_server.c: - compatibility with older VST-headers (2.0) mentioned by configure - - * acinclude.m4: - * configure.in: - compat-fixes for FreeBSD - -2006-06-27 Javier Serrano Polo - - * include/time_pattern.h: - * src/tracks/time_pattern.cpp: - initial release, pattern for dynamic values - - * include/time_roll.h: - * src/core/time_roll.cpp: - initial release, time pattern editor - - * include/level_object.h: - initial release, mainly used by the time-roll - - * include/automatable_object.h: - - added levelObject inheritance and related functions - - added time pattern - - moved linkObject methods to private for safety - - save/load settings can use generic names and types other than double - - * include/engine.h: - * include/main_window.h: - * src/core/engine.cpp: - * src/core/main_window.cpp: - added time-roll - - * include/knob.h: - * src/widgets/knob.cpp: - - use automation capabilities - - added time-roll option in context menu - - * include/tempo_sync_knob.h: - * include/volume_knob.h: - * src/widgets/automatable_button.cpp: - * src/widgets/lcd_spinbox.cpp: - * src/widgets/tempo_sync_knob.cpp: - * src/widgets/volume_knob.cpp: - added automation - - * include/envelope_and_lfo_widget.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/organic/organic.cpp: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/vibed/vibed.cpp: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/envelope_and_lfo_widget.cpp: - * src/core/envelope_tab_widget.cpp: - added automation to many knobs - - * include/track.h: - * src/core/track.cpp: - - added time pattern - - added name methods - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - - moved name scope to track - - added automation to knobs - - don't try to load a time pattern plugin - - * src/tracks/sample_track.cpp: - added automation to knob - - * include/note.h: - * src/core/note.cpp: - moved quantized() to public - - * include/qt3support.h: - added QPointer - - * include/song_editor.h: - added time pattern - - * src/core/piano_roll.cpp: - * src/core/song_editor.cpp: - simplified combobox numbers generation - - * data/themes/default/zoom_x.png: - * data/themes/default/zoom_y.png: - * resources/zoom_x.png: - * resources/zoom_y.png: - icons for the time-roll - - * Makefile.am: - * src/lmms_single_source.cpp: - added new files - -2006-06-12 Tobias Doerffel - - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/triple_oscillator/triple_oscillator.h: - updated code which uses knob-identification-capabilities - - * include/knob.h: - * include/volume_knob.h: - * src/widgets/knob.cpp: - * src/widgets/volume_knob.cpp: - use data-property of automatableObject for identifying the knob - (replaces the id-stuff) - - * include/automatable_object.h: - added data-property in which any arbitrary information can be stored - -2006-06-10 Javier Serrano Polo - - * src/lib/sample_buffer.cpp: - - fixed bug when sample processor generates less frames than the audio - buffer size - - load full wav samples - - * data/presets/AudioFileProcessor/Fat-Reversed-Kick.cs.xml: - * data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.cs.xml: - upgraded to newer version, end frame value caused segfault - -2006-06-09 Javier Serrano Polo - - * include/lmms_math.h: - * include/oscillator.h: - * include/sample_buffer.h: - * src/lib/oscillator.cpp: - - reverted to PM and added FM as a new modulation method - - improved performance, specially PM/FM - - moved fraction() to global scope - - removed absolute value from userWaveSample, it's handled by fraction() - - * plugins/triple_oscillator/pm_active.png: - * plugins/triple_oscillator/pm_inactive.png: - * plugins/triple_oscillator/triple_oscillator.cpp: - added PM buttons, hid FM ones - - * Makefile.am: - added lmms_math.h - - * data/locale/ca.ts: - updated translation - -2006-06-05 Javier Serrano Polo - - * include/oscillator.h: - * include/panning.h: - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/triple_oscillator/triple_oscillator.h: - * src/lib/oscillator.cpp: - oscillator rewrite, now many parameters may be changed between audio - buffer updates - - * Makefile.am: - note_play_handle is now a QObject - - * data/projects/cool_songs/Djeezus-BeatRolls.mmp: - * data/projects/cool_songs/Djeezus-Oscilisous.mmp: - * data/projects/cool_songs/Marfil-MarfilDrum01.mmp: - * data/projects/cool_songs/Mart-Concave_flow.mmp: - * data/projects/cool_songs/Mart-Dirt_Track.mmp: - * data/projects/cool_songs/MaxFellner-Ease.mmp: - * data/projects/cool_songs/SharkyX-DeadManDancing.mmp: - * data/projects/cool_songs/SharkyX-Experiments.mmp: - * data/projects/cool_songs/Siegel-DreamWave.mmp: - * data/projects/cool_songs/TobyDox-Confused.mmp: - * data/projects/cool_songs/TobyDox-Psycho.mmp: - * data/projects/cool_songs/TobyDox-TheFourthDimension.mmp: - * data/projects/covers/J.S.Bach-Preludium_and_Fugue_A-Minor.mmp: - * data/projects/demos/basses-demo.mmp: - * data/projects/demos/beat-collection.mmp: - * data/projects/demos/demo1.mmp: - * data/projects/demos/demo3.mmp: - * data/projects/demos/demo5.mmp: - * data/projects/demos/demo6.mmp: - * data/projects/demos/loop_collection.mmp: - * data/projects/demos/some_basslines.mmp: - * data/projects/misc/1st.mmp: - * data/projects/misc/time_machine.mmp: - * data/projects/templates/AcousticDrumset.mpt: - * data/projects/templates/ClubMix.mpt: - * data/presets/AudioFileProcessor/Bass-Mania.cs.xml: - * data/presets/AudioFileProcessor/Fat-Reversed-Kick.cs.xml: - * data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.cs.xml: - reverted audiofileprocessors to not point to /usr/local/share/lmms, they - should continue working - - * include/knob.h: - * include/volume_knob.h: - * src/widgets/knob.cpp: - * src/widgets/volume_knob.cpp: - added knob id - - * include/note_play_handle.h: - * src/core/note_play_handle.cpp: - update note frequency when changing base note in instrument track - - * include/instrument_track.h: - * plugins/flp_import/flp_import.cpp: - * src/core/piano_widget.cpp: - * src/tracks/instrument_track.cpp: - unify method to set a base note - -2006-06-03 Javier Serrano Polo - - * acinclude.m4: - * src/core/main.cpp: - detect and load standard Qt translations - -2006-05-29 Javier Serrano Polo - - * src/core/arp_and_chords_tab_widget.cpp: - fixed integer-overflow - - * include/oscillator.h: - * include/sample_buffer.h: - * plugins/organic/organic.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * src/core/envelope_and_lfo_widget.cpp: - * src/lib/oscillator.cpp: - - several segfault-fixes when while playing note - - volume-knob-changes take effect immediately - - * data/locale/ca.ts: - added catalan translation - -2006-05-26 Javier Serrano Polo - - * src/lib/sample_buffer.cpp: - corrected the calculation of f1 in play to prevent it from shifting - the start_frame out of bounds when resampling. - - * src/core/config_mgr.cpp: - * src/lib/mmp.cpp: - changed the xml output to use UTF8 encoding instead of ascii. - -2006-05-23 Danny McRae - - * include/oscillator.h: - FM mixing sometimes calculates a negative "time" for the sampling - which causes bad things to happen when pulling the data out of - a user defined wave. Changed userWaveSample to use the absolute - value of the sample, which fixes the segfaulting problem. Not - sure whether I should care about the negative times elsewhere. - -2006-05-22 Danny McRae - - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - added a switch to setAudioFile to force the track name to be - used for the track if a name already exists. Fixes the problem - of having tracks being renamed to the file name when loading a - saved song. - -2006-05-20 Tobias Doerffel - - * data/locale/de.ts: - updated German translation - - * src/core/bb_editor.cpp: - added button in bb-editor for adding new beat/bassline - - * include/track.h: - * src/core/track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/instrument_track.cpp: - * src/tracks/pattern.cpp: - * src/tracks/sample_track.cpp: - added "muted"-property to track-content-objects for being able to mute - single patterns, samples etc. either via context-menu or using - and middle mousebutton - -2006-05-19 Tobias Doerffel - - * src/core/track_container.cpp: - added missing #include (debug.h for assert(...) ) - -2006-04-18 Tobias Doerffel - - * plugins/flp_import/unrtf/output.c: - generally use bigger font-sizes - - * plugins/flp_import/unrtf/attr.c: - * plugins/flp_import/unrtf/attr.h: - * plugins/flp_import/flp_import.cpp: - do not crash when importing FLP-projects more than one time per - session (some vars need to be reset before unrtf works again) - - * plugins/flp_import/flp_import.cpp: - - limit number of bb-tracks for avoiding hangups - - set length of step-notes to -64 instead of -1 - - scale filter-resonance to smaller values - -2006-04-17 Tobias Doerffel - - * plugins/vibed/vibed.cpp: - some small optimizations in vibed::playNote( ... ) - -2006-04-16 Danny McRae - * Makefile.am: - * src/lmms_single_source.cpp: - * include/knob.h: - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - *+src/include/volume_knob.h: - *+src/widgets/volume_knob.cpp: - * include/setup_dialog.h: - * src/core/setup_dialog.cpp: - * include/sample_track.h: - * src/tracks/sample_track.cpp: - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/organic/organic.h: - * plugins/organic/organic.cpp: - * plugins/triple_oscillator/triple_oscillator.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/vibed/vibed.h: - * plugins/vibed/vibed.cpp: - Added a volume knob widget that will display the volume level as - either a percentage or in dbV, which can be selected from the - general settings in the setup dialog. Changed vibed to use a - volume range from 0 to 200 to bring it in line with every other - volume knob in lmms. Unfortunately, this will break any existing - presets, but better to do it now before many of them actually - exist. - - * src/core/mixer.cpp: - Changed the number of channels processed from the fixed value of - SURROUND_CHANNELS to m_audioDev->channels() so that only the - number of channels that will be output get processed instead of - the maximum number of channels that could be defined. - -2006-04-15 Danny McRae - * include/mixer.h: - * src/core/mixer.cpp: - * src/core/song_editor.cpp: - *+data/themes/default/auto_limit.png: - *+data/themes/blue_scene/auto_limit.png: - Added auto limiter option. Main window now has a button next to - the high-quality button to toggle the auto limiter on and off - The limiter scales the whole section between zero crossings where - a clip occurs. This required adding another processing buffer - in the mixer, which will double the latency when the auto limiter - is being used, but when it's not being used, there is no change - to the latency. Because it's based on detecting the zero - crossings, the lowest frequency for which it is effective is - sample_rate/(4*buffer_len). - -2006-04-14 Tobias Doerffel - - * src/lib/mmp.cpp: - clean metadata-nodes when saving projects, project-templates or presets - - * plugins/vibed/vibed.cpp: - - in vibed::loadSettings(): - - simplified loading of wave-shape - - delete base64-decoded data at the end - - commented out code in destructor as it is not necessary - to be - removed someday - - * include/base64.h: - fixed fatal bug in Qt4-version of base64::decode(): memcpy()ed data to - _data instead of *_data - - * src/widgets/group_box.cpp: - * src/widgets/tab_widget.cpp: - some fine-tuning of Qt4-version of painting-code - - * src/widgets/lcd_spinbox.cpp: - explicitely set black background-color in Qt4-version - - * src/core/midi_tab_widget.cpp: - Qt4-version of MIDI-connection-code is now working - - * src/core/main_window.cpp: - * plugins/vibed/impulse_editor.cpp: - * plugins/vibed/nine_button_selector.cpp: - * plugins/vibed/vibed.cpp: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/organic/organic.cpp: - * src/core/song_editor.cpp: - * src/core/piano_roll.cpp: - * src/core/main_window.cpp: - * src/core/bb_editor.cpp: - * src/core/track.cpp: - * src/widgets/project_notes.cpp: - * src/widgets/group_box.cpp: - * src/widgets/tab_widget.cpp: - * src/widgets/tool_button.cpp: - added missing setAutoFillBackground( TRUE )-call for making QWidget - paint specified background-color/pixmap - makes Qt4-version of LMMS - almost usable - - * src/widgets/tab_widget.cpp: - per default hide newly added tabs - - * include/spc_bg_hndl_widget.h: - added missing code for painting pixmap-backgrounds in Qt4-version - - * plugins/vestige/lvsl_client.cpp: - use QX11EmbedContainer instead of QX11EmbedWidget in Qt4-version -> - working VST-support in Qt4-version of LMMS - - * include/sample_buffer.h: - * src/lib/sample_buffer.cpp: - - when loading sample, first look for it in user's working-directory, - then in LMMS' factory-samples-directory - - simplified making the path of a sample-file relative - - * include/config_mgr.h: - * src/core/config_mgr.cpp: - * src/core/main_window.cpp: - * src/tracks/instrument_track.cpp: - replaced methods projectsDir(), presetsDir() and samplesDir() with - userProjectsDir(), factoryProjectsDir(), userPresetsDir(), - factoryPresetsDir() etc. - - * include/file_browser.h: - * src/core/file_browser.cpp: - try to avoid duplicate "/" in paths - fixes some problems - -2006-04-10 Tobias Doerffel - - * most files: - Qt4-fixes: - - when including headers, specify qt-module too (QtCore, QtGui etc.) - - draw gradients using QLinearGradient etc. - - other opmizations (use QHash instead of QMap etc.) - -2006-04-10 Danny McRae - - * Makefile.am: - * include/lmms_constants.h: - * include/basic_filters.h: - * include/oscillator.h: - * include/interpolation.h: - converted calculations using PI to single precision - - * src/audio/audio_device.cpp: - * src/audio/audio_alsa.cpp: - * src/audio/audio_file_wave.cpp: - corrected handling of big endian data - - * plugins/vibed/vibed.h: - * plugins/vibed/vibed.cpp: - * plugins/vibed/nine_button_selector.h: - * plugins/vibed/nine_button_selector.cpp: - - added octave to save and restore settings - - removed mysterious m_sampleBuffer that was causing seg faults in the - deconstructor - - * src/core/main_window.cpp: - added checks to handle "gimp like windows" for save and restore widget - states to prevent seg fault - - * data/projects/cool_songs/Djeezus-BeatRolls.mmp: - * data/projects/cool_songs/Djeezus-Oscilisous.mmp: - * data/projects/cool_songs/Marfil-MarfilDrum01.mpp: - * data/projects/cool_songs/Mart-Concave_flow.mpp: - * data/projects/cool_songs/Mart-Dirt_Track.mpp: - * data/projects/cool_songs/MaxFellner-Ease.mpp: - * data/projects/cool_songs/SharkyX-DeadManDancing.mpp: - * data/projects/cool_songs/SharkyX-Experiments.mpp: - * data/projects/cool_songs/Siegel-DreamWave.mpp: - * data/projects/cool_songs/TobyDox-Confused.mpp: - * data/projects/cool_songs/TobyDox-Psycho.mpp: - * data/projects/cool_songs/TobyDox-TheFourthDimension.mpp: - * data/projects/covers/J.S.Bach-Preludium_and_Fuge_A-Minor.mmp: - * data/projects/demos/basses-demo.mpp: - * data/projects/demos/beat-collection.mpp: - * data/projects/demos/demo1.mpp: - * data/projects/demos/demo3.mpp: - * data/projects/demos/demo5.mpp: - * data/projects/demos/demo6.mpp: - * data/projects/demos/loop_collection.mpp: - * data/projects/demos/some_basslines.mpp: - * data/projects/misc/1st.mpp: - * data/projects/misc/time_machine.mpp: - * data/projects/templates/AccousticDrums.mpt: - * data/projects/templates/ClubMix.mpt: - * data/presets/AudioFileProcessor/Bass-Mainia.cs.xml: - * data/presets/AudioFileProcessor/Fat-Reversed-Kick.cs.xml: - * data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.cs.xml: - updated audiofileprocessors to point to factory presets files in - /usr/local/share/lmms - -2006-04-09 Tobias Doerffel - - * src/core/envelope_and_lfo_widget.cpp: - do not show hint when loading settings in which lfo-shape is set to USER - - * src/core/preset_preview_play_handle.cpp: - disable project-journalling while loading preset - - * src/core/preset_preview_play_handle.cpp: - * src/tracks/instrument_track.cpp: - for generating infinite notes, pass valueRanges::max instead - of ~0 to note-play-handle-constructor as ~0 = 1 for signed ints - - * include/types.h: - - changed types of fpab_t and f_cnt_t to be signed - compiler - generates more optimized code this way - - added template-struct "valueRanges", containing members "min" and - "max" which hold the minimum and maximum value of the type the - template is instantiated with - - * plugins/bit_invader/bit_invader.cpp: - - fixed buffer-overflow when loading sample-data from base64 and more - bytes were decoded than allocated in wave-buffer - - delete decoded base64-data after copying it into wave-buffer - -2006-04-08 Tobias Doerffel - - * src/core/envelope_and_lfo_widget.cpp: - - connect valueChanged()-event of lfo-shape-buttongroup with - lfoWaveCh()-slot - fixes bug that clicks at the lfo-wave-buttons - were not recognized - - completely revised level()-method which doesn't have the bug - anymore, that in release-phase the envelope-level simply went down - from sustain-level to zero, now it goes down from the level at which - the note was released, new method is also much cleaner and more - optimized (and optmizable by compiler) - - * src/core/preset_preview_play_handle.cpp: - hide preview-instrument-track-window after loading settings - -2006-04-07 Tobias Doerffel - - * plugins/vibed/vibrating_string.h: - corrected type-names for resample()-method-parameters (f_cnt_t instead - of samplerate_t) - -2006-04-06 Tobias Doerffel - - * include/config_mgr.h: - * src/core/config_mgr.cpp: - use setup-wizard only for setting working-directory - - * src/core/main_window.cpp: - when creating file-browsers, pass 2 directories: - - factory-files - - user-files - this concerns projects, presets and samples - obsoletes - copying/linking files the first time, LMMS is run (new factory files in - new versions do not cause any trouble anymore) - - * include/file_browser.h: - * src/core/file_browser.cpp: - added support for merging several directory-trees into one view - -2006-04-05 Danny McRae - - * include/sample_track.h: - * src/tracks/sample_track.cpp: - - add volume knob to sample tracks - -2006-04-05 Danny McRae - - * plugins/vibed/impulse_editor.cpp: - - corrected mismatch sin/saw mismatch in initialization - - * plugins/vibed/string_container.h: - * plugins/vibed/string_container.cpp: - * plugins/vibed/vibed.h: - * plugins/vibed/vibed.cpp: - - added string id tracking to allow adding strings while playing - -2006-04-05 Tobias Doerffel - - * include/plugin_browser.h: - * src/core/plugin_browser.cpp: - - per default show small items for plugins in plugin-browser and show - details on mouse-over (nice animations!! ;-) - avoids problems with - hidden plugin-items because of too low screen-resolution and missing - scrollbars - - draw plugin-details-text using QPainter::drawText (not with old own - (buggy) algorithm for text-drawing with word-break-support) - -2006-04-04 Tobias Doerffel - - * plugins/flp_import/unrtf/*: - * plugins/flp_import/flp_import.cpp: - use integrated unrtf-source into FLP-import-filter for converting - RTF-comments to plain HTML which is usable with QTextEdit - -2006-04-02 Tobias Doerffel - - * src/core/song_editor.cpp: - set master-volume-slider correctly in songEditor::setMasterVolume() - - * include/envelope_tab_widget.h: - * src/core/envelope_tab_widget.cpp: - * src/core/note_play_handle.cpp: - - in envelopeTabWidget::releaseFrames(): - if the volume-envelope is used, do not check - release-frames of other envelope-targets, as it is not - interesting if they're beyond the end of the volume-envelope - (silent so or so) - may result in less CPU-usage in some - situations if the user set a bigger release to an envelope - other than the volume-env - - for arpeggio-base-notes only use number of release-frames of - volume-envelope for m_releaseFramesToDo (for not creating silent notes - in release-phase of arp-base-note) - - * plugins/vibed/impulse_editor.cpp: - use saw-wave as default shape for strings as it sounds much more like - a typical guitar-string than a sine-wave - - * plugins/triple_oscillator/triple_oscillator.h: - * plugins/triple_oscillator/triple_oscillator.cpp: - re-implement setParameter()-method for setting user-defined wave-shape - (used by FLP-import-filter) - - * plugins/flp_import/flp_import.cpp: - - convert 3x Osc params to TripleOscillator-settings and load them - - load Vibed-Plugin for Plucked!-instrument - - load arpeggio-settings of channel - - load filter-settings of channel - - handle base-note of each channel - - correct master-volume-calculation - -2006-04-01 Tobias Doerffel - - * plugins/flp_import/flp_import.cpp: - - hack for converting RTF-comment to HTML using unrtf (if installed) - -2006-03-30 Tobias Doerffel - - * plugins/flp_import/flp_import.h: - * plugins/flp_import/flp_import.cpp: - - try to load samples correctly using FL Studio installation - - recognize steps (not working properly yet) - - set current pattern of project - - separate handling of plugin-parameters (will allow support of FL - presets later!) - - added FLP_StepData (225) (not handled as format not known yet) - - added FLP_EnvLfoParams (218) (not handled as format not known yet) - - load envelope-settings of instrument-tracks - - * src/core/track_container.cpp: - disable journalling in destructor of trackContainer - - * include/config_mgr.h: - * include/setup_dialog.h: - * src/core/config_mgr.cpp: - * src/core/setup_dialog.cpp: - support for setting path to installation directory of FL Studio - -2006-03-29 Tobias Doerffel - - * include/song_editor.h: - * src/core/song_editor.cpp: - added setMasterVolume() and setMasterPitch() - - * plugins/flp_import/flp_import.h: - * plugins/flp_import/flp_import.cpp: - - read text-len correctly - - do not crash when creating new pattern before actual channels are - created - - stated event 224 to be FLP_PatternData - - extract information for creating notes out of pattern-data - - add playlist-items after all is done for resizing them correctly - -2006-03-28 Tobias Doerffel - - * plugins/flp_import/flp_import.h: - * plugins/flp_import/flp_import.cpp: - improvements for having a working flp-filter as soon as possible - -2006-03-28 Danny McRae - - * src/lib/sample_buffer.cpp: - corrected miscalculation of buffer size in resample - - * nine_button_selector.cpp: - * nine_button_selector.h: - * string_container.cpp: - * string_container.h: - * vibed.cpp: - * vibed.h: - changed QPtrList variables to vlist type to make things more - Qt4 friendly - -2006-03-27 Tobias Doerffel - - * plugins/flp_import/: - skeleton for FLP-import-filter and some first code (doesn't work yet) - - * include/midi.h: - * include/midi_port.h: - * include/midi_tab_widget.h: - * src/core/midi_tab_widget.cpp: - * src/midi/midi_port.cpp: - support for default-velocity for MIDI-in and/or -out-events - useful - when recording with constant velocity - -2006-03-26 Danny McRae - - * plugins/vibed/: - added "Vibed"-plugin, a powerful combination of PluckedStringSynth and - BitInvader that's capable of producing a surprisingly wide range of - sounds - -2006-03-26 Tobias Doerffel - - * src/lib/journalling_object.cpp: - in journallingObject::saveState(): append new dom-element to parent - before calling saveSettings() as some implementations of it depend on - knowing something about it's parent (e.g. whether it's the clipboard - etc.) - fixes several bugs related to clipboard-usage and drag'n'drop - -2006-03-25 Tobias Doerffel - - * include/instrument_track.h: - * src/core/preset_preview_play_handle.cpp: - disable journalling for all objects involved in preset-preview - - * src/tracks/instrument_track.cpp: - when saving preset, create new node below content-node of project, as - the behaviour of saveTrackSpecificSettings() was changed some days - before - - * src/lib/mmp.cpp: - bugfixes concerning project type-naming - - * src/core/arp_and_chords_tab_widget.cpp: - bugfixes concerning loading/saving settings - -2006-03-24 Tobias Doerffel - - * src/core/track.cpp: - in trackContentWidget::undoStep(): cast journalling object to - track-content-object and close it instead of deleting it - fixes crash - after undo of TCO-add - -2006-03-23 Tobias Doerffel - - * plugins/organic/organic.cpp: - * plugins/organic/randomise_pressed.png: - added pixmap for visual feedback when pressing randomise-button - - * plugins/midi_import/midi_import.cpp: - removed attribute FASTCALL from midiImport::tryImport() for not - crashing LMMS, as tryImport() is not defined as FASTCALL in - importFilter-API - - * src/core/export_project_dialog.cpp: - fixed bug causing LMMS to crash when trying to export a project - -2006-03-19 Tobias Doerffel - - * src/core/track.cpp: - * src/core/track_container.cpp: - * src/tracks/pattern.cpp: - in loadSettings(): do not get confused by meta-data (journal etc.) - - * src/lib/journalling_object.cpp: - - lot of bugfixes - - save/load data of journal-entry (QVariant) by encoding/decoding it - with base64 - - * include/base64.h: - * src/lib/base64.cpp: - support for encoding and decoding whole QVariant, independent of its - type (the result is one string, representing data of any type (int, - QMap, QVector QString...) - this is just awesome!!) - - * src/tracks/instrument_track.cpp: - do not crash in several situations if instrument is not loaded for - some reason (e.g. invalid preset) - - * src/core/track.cpp: - full support for undo/redo adding/removing a TCO (track-type - independent) - -2006-03-18 Tobias Doerffel - - * src/core/main_window.cpp: - avoid layouting-errors when restore widget-state by showing widget - while moving it - - * include/note.h: - * src/core/note.cpp: - undo/redo-support for note-properties - - * most files: - - derive from journallingObject instead of settings and/or engineObject - - in saveSettings() do not create own node, instead directly set - attributes of passed dom-element - - * include/journalling_object.h: - * src/lib/journalling_object.cpp: - - added saveSettings() and loadSettings()-method from former - settings-class - - new wrapper-functions around saveSettings() and loadSettings(): - saveState() - restoreState() - -> objects do not have to create a new node on their own, - saveState() does it for them using nodeName() as node-name - -> journal of object is saved/restored automatically - - * include/settings.h: - removed - -2006-03-16 Tobias Doerffel - - * include/journalling_object.h: - - renamed from editable_object.h - - renamed editStep to journalEntry - - renamed editableObject to journallingObject - - renamed other method-names - - * include/project_journal.h: - * src/lib/project_journal.cpp: - renamed editHistory to projectJournal and changed file-names - accordingly - - * most files: - renamed class channelTrack to instrumentTrack and changed other - method-names to match new naming-convention - - * include/instrument_track.h: - * src/tracks/instrument_track.cpp: - renamed channel_track.* to instrument_track.* - -2006-03-16 Andreas Brandmaier - - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * plugins/organic/randomise.png: - added "randomise preset" button to organic plugin - -2006-03-14 Tobias Doerffel - - * include/types.h: - added type for editable-object-ID - - * include/track.h: - * src/core/track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/pattern.cpp: - * src/tracks/sample_track.cpp: - undo/redo-support for position- and size-changes of TCO - - * include/automatable_object.h: - added methods for saving step-recording-state on stack and restoring - it - - * include/automatable_object.h: - * include/automatable_button.h: - * include/knob.h: - * src/widgets/automatable_button.cpp: - * src/widgets/knob.cpp: - added second template-parameter to automatableObject which specifies - the type to be used for internal calculations (necessary for working - undo/redo-implementation for bool-objects like buttons) - - * include/led_checkbox.h: - * src/widgets/led_checkbox.cpp: - fixed some bugs - -2006-03-13 Tobias Doerffel - - * include/main_window.h: - * src/core/main_window.cpp: - added edit-menu with undo/redo-items - - * src/core/piano_roll.cpp: - * src/core/song_editor.cpp: - * src/core/track_container.cpp: - * src/tracks/channel_track.cpp: - * src/widgets/project_notes.cpp: - use mainWindow::saveWidgetState() and mainWindow::restoreWidgetState() - for saving widget-state in project-file - - * include/piano_roll.h: - * src/core/piano_roll.cpp: - made piano-roll a settings-object - - * include/main_window.h: - * src/core/main_window.cpp: - added static methods for saving and restoring state of a widget - (position, size, visibility etc.) to/from QDomElement - - * include/timeline.h: - * src/core/song_editor.cpp: - * src/core/timeline.cpp: - save loop-point-positions and loop-point-state in project - - * plugins/bit_invader/bit_invader.cpp: - added visual feedback when pressing wave-shape-buttons - - * include/combobox.h: - * include/led_checkbox.h: - * include/pixmap_button.h: - * src/widgets/combobox.cpp: - * src/widgets/led_checkbox.cpp: - * src/widgets/pixmap_button.cpp: - use automatableButton as new base-class - - * include/automatable_button.h: - * src/widgets/automatable_button.cpp: - - added class automatableButton to be the base-class for pixmapButton, - ledCheckBox etc. - - added automatableButtonGroup, a more powerful button-group, designed - to be used in conjunction with automatableButton-derived buttons - -2006-03-12 Tobias Doerffel - - * include/automatable_object.h: - - added setInitValue() to be used by ALL creators of automatable - objects for initializing object-value - otherwise edit-step-history - gets filled with steps to set object's value to init-value - - derive from editableObject and re-implement some methods for - transparent edit-history for all automatable objects (knobs etc.) - - * include/editable_object.h: - * include/edit_history.h: - * src/lib/edit_history.cpp: - added support for recording edit-steps, the base for a generic - undo/redo-system - -2006-03-09 Tobias Doerffel - - * include/settings.h: - * src/core/plugin_browser.cpp: - * src/core/song_editor.cpp: - * src/core/track_container.cpp: - * plugins/midi_import/midi_import.cpp: - * plugins/midi_import/midi_import.h: - made MIDI-file-code an import-filter - - * include/import_filter.h: - * src/core/import_filter.cpp: - support for import-filter-plugins - simply call - - importFilter::import( FILE_NAME, TRACK_CONTAINER ) - - for any file and the rest will be done fully automatically according - to installed import-filter-plugins - -2006-03-08 Zolo - - * data/themes/blue_scene/: - updated some pixmaps - - * data/themes/blue_scene/plugins/: - added pixmaps for plugins - -2006-03-08 Tobias Doerffel - - * src/core/timeline.cpp: - more logical loop-point-handling: - middle mouse button -> left loop-point - right mouse button -> right loop-point - - * plugins/audio_file_processor/audio_file_processor.cpp: - * plugins/bit_invader/bit_invader.cpp: - * plugins/organic/organic.cpp: - * plugins/plucked_string_synth/plucked_string_synth.cpp: - * plugins/triple_oscillator/triple_oscillator.cpp: - * plugins/vestige/vestige.cpp: - * include/plugin.h: - * src/core/instrument.cpp: - * src/core/plugin.cpp: - * src/lib/embed.cpp: - added support for plugin-theming - - * src/lib/embed.cpp: - - first search in artwork-directories before searching for embedded data - as most artwork is not linked into binary (except plugins) - - if pixmap not found, try to load according pixmap from - default-artwork-dir - - * include/embed.h: - * src/core/main.cpp: - * src/lib/embed.cpp: - as localizations are no longer embedded into binary, loadTranslation() - was moved to main.cpp and contains only some basic code for loading - appropriate translation from file - - * src/core/config_mgr.cpp: - several fixes concerning artwork-path - -2006-03-07 Tobias Doerffel - - * src/core/arp_and_chords_tab_widget.cpp: - more senseful range for arpeggio time: 25-2000 ms (instead of 10-1000ms) - - * src/audio/audio_alsa.cpp: - * src/audio/audio_oss.cpp: - * src/midi/midi_alsa_raw.cpp: - * src/midi/midi_alsa_seq.cpp: - * src/midi/midi_oss.cpp: - only specify threading-priority when using Qt 3.3.5 or above as older - versions cause problems when running the whole app with realtime - priority - fixes several lockups - - * src/widgets/knob.cpp: - when moving mouse while having shift pressed, increase/decrease by - single steps - - * src/core/envelope_tab_widget.cpp: - use 10 KHz as filter-maximum instead of 16 KHz - - * include/track.h: - * src/core/track.cpp: - added HACK to avoid crash because of bug in Qt (< 3.3.5) when removing - track - - * src/core/config_mgr.cpp: - - use default-theme-path if theme-path from config-file doesn't exist - - add "/" to theme-path if missing - -2006-03-06 Alexey Kouznetsov - - * locale/ru.ts: - updated Russian translation - -2006-03-05 Tobias Doerffel - - * src/core/main_window.cpp: - always set to configured-state before showing setup-dialog on first - startup - -2006-03-04 Tobias Doerffel - - * src/core/engine.cpp: - finalize main-window after having mixer to start its audio-devices - - fixes crash on first time LMMS is started - -2006-02-28 Tobias Doerffel - - * data/locale/de.ts: - updated German translation - - * src/core/timeline.cpp: - use note::toNearestTact() in timeLine::mouseMoveEvent() instead of own - calculations - - * src/core/track.cpp: - per default make TCO-ops (create, move, resize) aligned on tact- - boundaries, free positioning/resizing can be achieved by pressing - after pressing mouse-button - - * include/midi_time.h: - added note::toNearestTact()-method - - * include/pattern.h: - * src/core/piano_roll.cpp: - * src/track/pattern.cpp: - do not quantize note-position while moving selection of notes - - * src/core/song_editor.cpp: - some layout-fixes for looking good with "Blue Scene" as well - -2006-02-27 Zolo - - * data/themes/blue_scene/: - added new theme for LMMS - -2006-02-27 Tobias Doerffel - - * src/core/song_editor.cpp: - * src/tracks/pattern.cpp: - do not crash when playing a pattern which is deleted - - * src/core/track_container.cpp: - pause mixer when cloning tracks for avoiding side-effects, probably - fixes some crash-bugs - - * include/config_mgr.h: - * include/setup_dialog.h: - * src/core/config_mgr.cpp: - * src/core/setup_dialog.cpp: - * src/lib/embed.cpp: - first simple support for theming - - * Makefile.am: - * configure.in: - re-organized all data-directories (samples, presets, localizations, - artwork etc.) and put them into data/ dir to be all installed into - $prefix/share/lmms - -2006-02-25 Tobias Doerffel - - * src/tracks/channel_track.cpp: - apply a very basic envelope at the beginning and the end of a note for - avoiding these "typical" clicks which were there before - -2006-02-22 Tobias Doerffel - - * configure.in: - * Makefile.am: - * src/lmms_single_source.cpp: - added support for compiling LMMS from one source file which often - results in a better/more optimized executable - - * include/note.h: - * include/piano_roll.h: - * src/core/note.cpp: - * src/core/piano_roll.cpp: - - simple quantization-support - - fixed lengths for drawing notes can be selected in piano-roll - - * resources/black_key.png: - * resources/black_key_pressed.png: - * resources/pr_black_key.png: - * resources/pr_white_key_big.png: - * resources/pr_white_key_small.png: - * resources/white_key.png: - * resources/white_key_pressed.png: - replaced by new graphics - - * src/core/engine.cpp: - delete piano-roll after song-editor and bb-editor as patterns being - destroyed still depend on it - -2006-02-21 Tobias Doerffel - - * src/tracks/channel_track.cpp: - do not lock mutex in processOutEvent() as it causes a deadlock when - having channel-activity-indicators enabled - - * include/midi_mapper.h - * include/project_notes.h: - * src/lib/sample_buffer.cpp: - * src/midi/midi_file.cpp: - * src/midi/midi_mapper.cpp: - * src/widgets/project_notes.cpp: - misc fixes for being able to compile LMMS from one source-file - - * include/automatable_object.h: - * include/knob.h: - * include/lcd_spinbox.h: - * include/led_checkbox.h: - * src/widgets/knob.cpp: - * src/widgets/led_checkbox.cpp: - * src/widgets/lcd_spinbox.cpp: - introduced template-class automatableObject for central value- - manipulation, range-checking etc. and made some classes (e.g. knob, - ledCheckBox, lcdCheckBox) derive from it - preparations for full - automation-support in LMMS - - * Makefile.am: - do not strip executable when installing as it makes even basic debugging - impossible - -2006-02-20 Tobias Doerffel - - * src/widgets/combobox.cpp: - * src/widgets/knob.cpp: - * src/widgets/led_checkbox.cpp: - draw shadowed text - - * include/mixer.h: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/mixer.cpp: - better xrun-detection and -handling (still not perfect) - - * include/mixer.h: - * src/tracks/channel_track.cpp: - fixed critical bug which made LMMS crash if xruns were detected and - notes were discarded by mixer and therefore deleted twice - -2006-02-19 Andreas Brandmaier - - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * presets/Organic: - * presets/Bitinvader: - added waveshape knob - changed distortion method from clipping to foldback - renamed and added presets for Organic and BitInvader - -2006-02-18 Andreas Brandmaier - - * plugins/organic/organic.cpp: - * plugins/organic/organic.h: - * presets/Organic: - added new plugin synthesizer plugin organic and some presets - -2006-02-09 Tobias Doerffel - - * plugins/triple_oscillator/triple_oscillator.cpp: - per default set volume of each osc to 33% - - * allmost all files: - use engine-technology - - * include/engine.h: - * src/core/engine.cpp: - added engine- and engineObject-class providing new "engine-technology" - which makes singleton-classes obsoletes and offers a lot of new - possibilities like GUI-data-separation and having several projects - open at the same time - -2006-02-06 Tobias Doerffel - - * include/mixer.h: - * include/song_editor.h: - * src/core/mixer.cpp: - * src/core/song_editor.cpp: - simple xrun-detection - do not accept new note-play-handles if xruns - are detected - -2006-02-06 Andreas Brandmaier - - * plugins/bitinvader/bitinvader.cpp: - * plugins/bitinvader/bitinvader.h: - * plugins/bitinvader/graph.cpp: - * plugins/bitinvader/graph.h: - - code cleanup - - added drag&drop support to wavegraph - - added new BitInvader presets and improved old ones - -2006-02-05 Tobias Doerffel - - * include/basic_filters.h: - small optimizations: do not divide by 2.0, instead multiply with 0.5 - - * src/core/main.cpp: - set SCHED_FIFO-priority for LMMS if possible - - * plugins/vestige/communication.h: - * plugins/vestige/lvsl_client.cpp: - * plugins/vestige/lvsl_server.c: - - set SCHED_FIFO-priority for VST-server if possible - - no X-calls needed anymore - - more complete host-callback-implementation - - support for geometry-changes of plugin - - use std::list instead of std::vector for enqueing MIDI-events (faster) - - support for telling plugin system's language - - * configure.in: - when checking for VST-SDK-headers, use C++ compiler instead of - C-compilers as headers fail to compile with it - -2006-02-04 Tobias Doerffel - - * include/types.h: - * most files: - more strict typing -> types for samplerate, bpm, frame-count, - channel-count etc. - - * src/core/track.cpp: - when creating a track, pause mixer for not causing any trouble because - of incompletely initialized track etc. - fixes several crashes when - adding track while playing - - * include/mixer.h: - * src/core/mixer.cpp: - more "intelligent" mix-mutex-management for allow multiple pause()- - calls without ending in deadlock or crash because of mutex being - unlocked to early - -2006-02-02 Tobias Doerffel - - * configure.in: - made 0.1.4 release - - * Makefile.am: - added -rdynamic-switch again to make LMMS able to load plugins - - * include/track_container.h: - fixed bug which caused LMMS not being compilable using GCC 3 - -2006-02-01 Tobias Doerffel - - * configure.in: - made 0.1.3 release - - * lmms.1: - added manpage (taken from debian-package and updated) - - * include/base64.h: - * include/rubberband.h: - * plugins/bit_invader/graph.cpp: - * src/core/name_label.cpp: - * src/widgets/combobox.cpp: - * src/widgets/rubberband.cpp: - Qt4-compat fixes - - * locale/de.ts: - updated German translation - - * src/core/main.cpp: - updated copyright-notice in help-text - -2006-01-30 Tobias Doerffel - - * plugins/vestige/fstclient.h: - * plugins/vestige/fstclient.cpp: - - renamed to lvsl_client.* - - when waiting for plugin to have finished process()ing, usleep() some - micro-seconds for allowing better scheduling - - * plugins/vestige/lvsl_server.c: - - merged code from fstserver.cpp, fstserver.h and fstcore.c into one - source-file and removed rests of the old FST-API which makes all - the VST-code MUCH more cleaner and less redundant (LVSL = LMMS VST - Support Layer) - - VST SDK 2.4 compatibility (no need to fix headers with 2.4!) - -2006-01-29 Tobias Doerffel - - * plugins/bit_invader/bit_invader.cpp: - - call graph::setSamplePointer() after loading settings - - memcpy() samples in bitInvader::smoothClicked() instead of copying - them in a loop - - * plugins/bit_invader/graph.cpp: - - update after setting new sample - - * src/tracks/pattern.cpp: - - disable auto-cleanup during pattern-freeze - - initialize member m_progress in patternFreezeStatusDialig-dtor - fixes - bug which sometimes closed the window before actual freezing was - started - - * include/buffer_allocator.h: - * src/lib/buffer_allocator.cpp: - - added possibility to disable auto-cleanup at certain times e.g. when - freezing a pattern - - cleanup only every 10th free()-call for decreasing overhead - - only start searching for free bufs if there're enough remaining - -2006-01-24 Andreas Brandmaier - - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/bit_invader.h: - * presets/BitInvader: - - changed sample buffer encoding in presets to base64 - - added BitInvader various presets - -2006-01-23 Tobias Doerffel - - * include/sample_buffer.h: - * src/lib/sample_buffer.cpp: - * plugins/audio_file_processor/audio_file_processor.cpp: - use new base64-code - - * include/base64.h: - * src/lib/base64.cpp: - added methods for encoding/decoding binary data to/from base64-encoded - data (wrapper-implementation for Qt4) - -2006-01-23 Andreas Brandmaier - - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/bit_invader.h: - * plugins/bit_invader/graph.cpp: - * plugins/bit_invader/graph.h: - - improved mouse handling. - - replaced waveform generation methods by those of toby's oscillator - class - - added user-loadable waveform - - code cleanup - -2006-01-22 Tobias Doerffel - - * include/timeline.h: - * src/core/song_editor.cpp: - * src/core/timeline.cpp: - updates are now completely done by timeline/QTimer without being - called from song-editor out of non-GUI-thread which caused segfaults - etc. sometimes - - * include/name_label.h: - * src/core/name_label.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/sample_track.cpp: - added support for user-defined track-icons - - * artwork/track_icons/*png: - added several icons to be used as track-icons - - * include/track.h: - * src/core/track.cpp: - * src/core/track_container.cpp: - do not hide track for completely repainting it, use special method for - it - - * include/pattern.h: - * src/tracks/pattern.cpp: - only repaint if necessary, otherwise just paint the pixmap we painted - before - - * include/bb_editor.h: - * src/core/bb_editor.cpp: - added combobox for selecting bb-track inside bb-editor - - * include/combobox.h: - * src/widgets/combobox.cpp: - - added clear()-method - - do not crash when having no items - - scale pixmap to fit into combobox - - place menu below combobox if possible - -2006-01-21 Tobias Doerffel - - * include/track.h: - * src/core/track.cpp: - * src/tracks/pattern.cpp: - * src/tracks/sample_track.cpp: - added support for used-defined track-height by pressing and - move mouse (with pressed button) - - * include/song_editor.h: - * include/track.h: - * include/track_container.h: - * src/core/song_editor.cpp: - * src/core/track.cpp: - * src/core/track_container.cpp: - take advantage of new rubberband: - - selecting track-content-objects of any type either via rubberband or - by clicking while pressing - - move selected track-content-objects - - delete selected track-content-objects - - * include/rubberband.h: - * src/widgets/rubberband.cpp: - added rubberband which either acts as wrapper for Qt4's QRubberBand or - as a widget imitating a rubberband - - * include/track.h: - * src/core/track.cpp: - draw vertical lines for each bar - - * include/bb_editor.h: - * include/song_editor.h: - * include/track_container.h: - * src/core/bb_editor.cpp: - * src/core/song_editor.cpp: - * src/core/track.cpp: - * src/core/track_container.cpp: - fixed all that stuff with annoying scrollbars which partly hid important - widgets - -2006-01-21 Andreas Brandmaier - - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/bit_invader.h: - added smooth button - -2006-01-20 Tobias Doerffel - - * src/tracks/pattern.cpp: - also update after clearing all notes - - * include/piano_roll.h: - * include/song_editor.h: - * src/core/piano_roll.cpp: - * src/core/song_editor.cpp: - use new combobox for zooming-comboboxes - - * include/export_project_dialog.h: - * src/core/export_project_dialog.cpp: - - reject() dialog when pressing cancel - - use new combobox - - * include/arp_and_chords_tab_widget.h: - * src/core/arp_and_chords_tab_widget.cpp: - use new combobox with according arpeggio-mode-icons - - * include/envelope_tab_widget.h: - * src/core/envelope_tab_widget.cpp: - * resources/filter_2lp.png: - * resources/filter_ap.png: - * resources/filter_bp.png: - * resources/filter_hp.png: - * resources/filter_lp.png: - use new combobox with according filter-icons - - * include/combobox.h: - * src/widgets/combobox.cpp: - added own cool-looking combobox with menu-extension which basically - has the same API as QComboBox - -2006-01-19 Andreas M. Brandmaier - - * plugins/bit_invader/bit_invader.h: - * plugins/bit_invader/bit_invader.cpp: - * plugins/bit_invader/graph.h: - * plugins/bit_invader/graph.cpp: - added "BitInvader"-plugin, an usereditable wavetable-synthesizer - -2006-01-16 Tobias Doerffel - - * src/lib/mmp.cpp: - do not add "mmp"-extensions if there's already "mpt" (multimedia- - project-template) as extension - - * include/arp_and_chords_tab_widget.h: - * src/core/arp_and_chords_tab_widget.cpp: - - added new sync-mode to arpeggiator - - arpeggiator-modes are now selectable from combobox - -2006-01-15 Tobias Doerffel - - * src/core/file_browser.cpp: - use 7.5 instead of 8 as font-size - - * src/widgets/led_checkbox.cpp: - use 7.5 instead of 7 as font-size - - * include/gui_templates.h: - - added more precise pointSizeF()-method - - more precise point-size-calculation for pointSize()-method which - makes all fonts inside LMMS a bit bigger and everything more - readable - - * include/setup_dialog.h: - * src/core/note_play_handle.cpp: - * src/core/setup_dialog.cpp: - * src/tracks/channel_track.cpp: - added switches for disabling several UI-effects for a better - performance even on older hardware - - * include/preset_preview_play_handle.h: - * src/core/preset_preview_play_handle.cpp: - global-data-mutex is not a pointer anymore, instead it's a normal - QMutex - fixes crashes with sort-arpeggio if no preset was previewed - before - -2006-01-14 Tobias Doerffel - - * src/widgets/kmultitabbar.cpp: - made KMultiTabBar working with Qt4 - - * src/audio/audio_jack.cpp: - return if connection to JACK-server failed with old JACK-API - (jack_client_new(...)) - fixes crash when using old JACK-API with - LMMS and JACK-server is not running - - * include/preset_preview_play_handle.h: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/preset_preview_play_handle.cpp: - as preset-note-play-handle is not registered at mixer, it cannot be - returned in notePlayHandle::nphsOfChannelTrack() and therefore - previewing presets with sort-mode arpeggios doesn't work - now the - arpeggiator also checks preview-note for being the only note there - - * src/core/arp_and_chords_tab_widget.cpp: - fixed some bugs in arpeggiator - - * src/core/piano_roll.cpp: - lock qapp-thread in recordNote() - hopefully fixes some - xlib-async-errors - - * src/tracks/channel_track.cpp: - - do not process note-on-out-events if according key is already pressed - - when invalidating note-play-handles, also reset m_notes-array for not - crashing when applying another preset while key is pressed and - released afterwards - -2006-01-10 Alexey Kouznetsov - - * locale/ru.ts: - updated Russian translation - -2006-01-10 Tobias Doerffel - - * src/core/piano_roll.cpp: - update pattern after changing volume of step-note - -2006-01-09 Tobias Doerffel - - * include/setup_dialog.h: - * src/core/config_mgr.cpp: - * src/core/setup_dialog.cpp: - made appearence of two dialogs switchable (question whether to re-run - wizard after up-/downgrade and message after accepting setup-dialog) - -2006-01-08 Tobias Doerffel - - * include/piano_roll.h: - * src/core/piano_roll.cpp: - * src/tracks/pattern.cpp: - simple support for editing (existing) steps in piano-roll, e.g. for - changing key of a step - - * plugins/vestige/vestige.cpp: - per default switch to users VST-plugin-directory when opening plugin - - * include/config_mgr.h: - * include/setup_dialog.h: - * src/core/config_mgr.cpp: - * src/core/setup_dialog.cpp: - added possibility to setup working-directory and location of VST-plugins - - * src/widgets/tempo_sync_knob.cpp: - removed a lot of obsolete #include's - - * include/piano_widget.h: - * src/core/note_play_handle.cpp: - * src/core/piano_widget.cpp: - display played keys as if they were pressed - - * include/arp_and_chords_tab_widget.h: - * include/note_play_handle.h: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/note_play_handle.cpp: - added sort-mode for more powerful arpeggios - - * src/core/arp_and_chords_tab_widget.cpp: - fixed bug which made the arpeggiator skipping notes sometimes at - certain arpeggio-times - - * src/core/lmms_main_win.cpp: - commented out code for creating effect-board-window-button - - * src/core/channel_track.cpp: - removed inclusion of paths.h which isn't part of LMMS for quite a long - while... - there were no problems because Linux has paths.h too - -2006-01-06 dieEasy - - * locale/it.ts: - added Italian translation - -2006-01-02 Tobias Doerffel - - * plugins/vestige/vestige.cpp: - set vestige-logo as window-icon of plugin-GUI-window - - * src/core/instrument.cpp: - set logo of plugin as window-icon of channel-track - - * include/dummy_instrument.h: - * include/dummy_plugin.h: - * include/instrument.h: - * include/plugin.h: - * src/core/instrument.cpp: - * src/core/plugin.cpp: - small changes in plugin-API: plugin now always has to pass pointer to - plugin-descriptor to plugin-dtor to make the latter one able to - provide several information - - * src/core/plugin.cpp: - search for plugin-libs in configManager::pluginDir() which is - $prefix/lib/lmms - hopefully solves problems with finding plugins on - some systems - - * include/channel_track.h: - * include/midi_tab_widget.h: - * src/core/midi_tab_widget.cpp: - * src/tracks/channel_track.cpp: - when using Raw-MIDI-client, make items "MIDI input/output" checkable - and enable/disable MIDI-input/output accordingly if user - checked/unchecked it and update check-state if user changed MIDI-mode - in midi-tab-widget in channel-track - - * src/core/midi_tab_widget.cpp: - set MIDI-output-channel to 1 per default - - * src/lib/sample_buffer.cpp: - added flac-files to filter of file-selection-dialog - - * include/note_play_handle.h: - * src/core/note_play_handle.cpp: - when invalidating note-play-handle, do some stuff which actually would - be done by dtor if m_channelTrack wouldn't be NULL - -2006-01-01 Tobias Doerffel - - * src/core/track.cpp: - added tooltip to track-op-widget telling the user something about - drag'n'drop-functionality... - - * include/lmms_main_win.h: - * src/core/lmms_main_win.cpp: - * src/lib/string_pair_drag.cpp: - if main-window looses focus or a drag is completed, clear - key-modifiers of LMMS-main-window, because we might have lost - key-release-events in these cases and therefore our modifier-state-map - could be incorrect - fixes several bugs concerning drag'n'drop - - * README: - * src/core/about_dialog.cpp: - extended copyright from 2005 to 2006 - Happy New Year! - -2005-12-31 Tobias Doerffel - - * include/channel_track.h: - * src/tracks/channel_track.cpp: - removed surround-area in track-settings-widget and added button with - MIDI-connection-menu instead - -2005-12-30 Tobias Doerffel - - * include/track.h: - * include/track_container.h: - * src/core/track.cpp: - * src/core/track_container.cpp: - revised all the things around track-operations: - - tracks are now directly movable via the grip at the beginning of a - track - replaces "move up/down"-buttons and is much more usable - - actions (clone/delete track) are now part of a popup-menu - - * src/core/lmms_main_win.cpp: - - corrected file-description at the beginning - - add space at left side before adding tool-buttons - - * src/core/midi_tab_widget.cpp: - use smaller font for connection-selection-menu - -2005-12-29 Tobias Doerffel - - * src/widgets/fade_button.cpp: - do not update() directly in nextState(), use QTimer instead for avoiding - xlib-threading-errors - -2005-12-28 Tobias Doerffel - - * plugins/vestige/communication.h: - * plugins/vestige/fstclient.cpp: - * plugins/vestige/fstclient.h: - * plugins/vestige/fstserver.cpp: - * plugins/vestige/vestige.cpp: - * plugins/vestige/vestige.h: - - support for telling plugin current BPM, also catches BPM-changes - - handle plugins without GUI correctly - - * include/tool_button.h: - * src/widgets/tool_button.cpp: - catch toggle-signals to emit clicked()-signal which is necessary if a - button is checked using setChecked()-method and not by the user - - fixes some bugs with piano-roll - - * include/piano_roll.h: - * src/core/piano_roll.cpp: - - show text-float after user copied notes - - do not play note when just moving selection - - when update()ing paint everything in a pixmap which is painted in - paintEvent() - saves all the repaints everytime mouse-cursor is moved - and makes painting tool-cursor possible again - - * src/tracks/channel_track.cpp: - corrected calculation in channelTrack::masterKey() - -2005-12-27 Tobias Doerffel - - * include/piano_roll.h: - * src/core/piano_roll.cpp: - always reset cursor when receiving leave-event - - * include/channel_track.h: - * src/tracks/channel_track.cpp: - use new fade-button as MIDI-event-indicator as well as simple - play-default-tone-button - - * include/fade_button.h: - * src/widgets/fade_button.cpp: - added fade-button which can be activated and fades back to - default-color afterwards - - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/envelope_and_lfo_widget.cpp: - * src/core/envelope_tab_widget.cpp: - * src/core/midi_tab_widget.cpp: - * src/core/note.cpp: - * src/core/song_editor.cpp: - * src/core/track.cpp: - * src/tracks/bb_track.cpp: - * src/tracks/channel_track.cpp: - * src/tracks/sample_track.cpp: - do not use QString::number() for saving scalar value with - setAttribute() as it is obsolete - - * src/audio/audio_alsa.cpp: - * src/audio/audio_oss.cpp: - start audio-thread with QThread::HightestPriority for having less xruns - - * src/tracks/pattern.cpp: - save m_steps-property, otherwise restoring it in loadSettings() makes - no sense... - fixes bug which caused LMMS to always reset number of - steps to 16 when loading files, even if the user created patterns - containing more than 16 steps - - * include/audio_dummy.h: - - fixed missing implementation of thread running the whole time and - calling audioDevice::processNextBuffer() -> fixes bugs & lockups when - using audio-dummy-driver - - thread now always waits the amount of time that is left for the - current buffer, so if rendering of current buffer went faster than - in realtime, the song doesn't play at a higher speed - -2005-12-26 Tobias Doerffel - - * plugins/vestige/vestige.cpp: - determine real key of note using channelTrack::masterKey - - * include/micro_timer.h: - moved micro-timer-class from mixer.cpp in separate header for being - available to all modules of LMMS - - * src/core/mixer.cpp: - added metronome-sounds when recording in piano-roll - - * src/lib/sample_buffer.cpp: - - added resample()-method for resampling whole sample-buffer - - after libsndfile try to load sample with libvorbis instead of - SDL_sound as the latter one seems to be buggy on few systems and - leads to unexpected crashes - - if sample-decoder doesn't resample sample automatically, do it - afterwards using resample() - - * src/core/track_container.cpp: - accept drops of type samplefile and sampledata too and create new - channel-track with AudioFileProcessor - - * plugins/audio_file_processor/audio_file_processor.cpp: - save/load sample-data which was dragged on plugin in settings - - * src/core/track.cpp: - display correct length and now additionally start- and end-position of - track-content-object - - * include/bb_track.h: - * src/tracks/bb_track.cpp: - do not align position and length of bb-track-objects on tact-boundaries - as it offers an interesting new feature (incomplete/start beats etc.!) - -2005-12-25 Tobias Doerffel - - * src/widgets/visualization_widget.cpp: - enable visualization-widget per default - - * plugins/vestige/vestige.cpp: - - do not crash when loading settings with empty plugin-attribute (e.g. - older projects/presets) - - set channel-name according to plugin-name - - added note-off-button for being able to note off hanging notes - (which sometimes occurs in combination with arpeggios) - -2005-12-24 Tobias Doerffel - - * plugins/vestige/vestige.cpp: - use new parameter-saving/loading-feature when saving/loading settings - - * plugins/vestige/communication.h: - * plugins/vestige/fstclient.cpp: - * plugins/vestige/fstclient.h: - * plugins/vestige/fstserver.cpp: - * plugins/vestige/fstserver.h: - * plugins/vestige/fstcore.c: - - added support for saving/loading parameters which almost completes - LMMS's rudimentary VST-support - - support for querying parameter-properties - - some changes in initialization of plugin - - * src/tracks/pattern.cpp: - pass unused wheel-events to trackContentObect for being able to scroll - within song-editor - -2005-12-23 Tobias Doerffel - - * plugins/vestige/fstcore.c: - a lot of clean-ups and other bug-fixes making VeSTige almost usable - and stable - - * plugins/vestige/fstclient.h: - * plugins/vestige/fstclient.cpp: - save PID of children when fork()ing XFST-server which is used for - sending SIGTERM when destroying everything - - * plugins/vestige/communication.h: - * plugins/vestige/fstclient.cpp: - * plugins/vestige/fstserver.cpp: - * plugins/vestige/fstcore.c: - do not show editor until client created x11-embed-widget - solves - problems with not-embedded plugins under KDE - - * plugins/vestige/fstserver.cpp: - rewrote MIDI-enqueueing-code as the old one was very buggy and - unreliable - - * plugins/vestige/vestige.h: - * plugins/vestige/vestige.cpp: - added mutex for plugin which solves some problems - - * include/mixer.h: - * src/core/mixer.cpp: - per default clear all play-handles but instrument-play-handles in - mixer::clear() as instrument-playhandles normally exist during the - whole life-time of a certain plugin and must not be deleted when just - stopping song etc. - - * include/play_handle.h: - added type-information, so every derived class has to pass a - type-constant to playHandle-constructor - -2005-12-22 Tobias Doerffel - - * configure.in: - made 0.1.2 release - -2005-12-21 Tobias Doerffel - - * src/lib/sample_buffer.cpp: - - first try to use libsndfile instead of SDL_sound for decoding sample - as SDL_sound sometimes doesn't handle samples (raw- and FLAC-files) - the correct way and returns unusable data while libsndfile seems to - work quite fine with these samples - - when using libsamplerate, use linear-interpolation per default - instead of zero-order-hold-resampling which results in MUCH higher - quality when resampling as it produces much less artifacts - - * src/core/file_browser.cpp: - classify files with extension "flac" as samples - - * src/widgets/tab_widget.cpp: - hide all other tabs when changing active tab - necessary for working - with Qt 4.1 - -2005-12-20 Danny McRae - - * resources/step_btn_on_100.png: - * resources/step_btn_yellow.png: - * include/pattern.h: - * src/tracks/pattern.cpp: - make it possible to change volume of steps in bb-editor using mouse - wheel and which changes color of step-button accordingly - -2005-12-20 Tobias Doerffel - - * src/lib/sample_buffer.cpp: - first implementation of FLAC-encoding/decoding for compressing buffers - before encoding them to base64 which results in smaller XML-files - - currently disabled as it's still buggy and unusable - - * src/lib/buffer_allocator.cpp: - in cleanup-method use list instead of vector for pool of buffers to be - removed - fixes crash with Qt4 - -2005-12-19 Tobias Doerffel - - * src/widgets/knob.cpp: - made knob ready for drag'n'drop of values - - * src/tracks/sample_track.cpp: - load and save/load sample-data which doesn't come from sample in/from - XML-node (base64-encoded) - -2005-12-18 Tobias Doerffel - - * src/tracks/pattern.cpp: - use Sint32 instead of Sint16 for determining central key, otherwise we - might get overflows when having a lot of notes - - * src/tracks/sample_track.cpp: - draw zero-line if sample is shorter than TCO - - * src/core/track.cpp: - display text-float with current position/size when moving/resizing TCO - - * src/core/song_editor.cpp: - do correct positioning for text-floats for master-volume/-pitch - - * include/envelope_and_lfo_widget.h: - * src/core/envelope_and_lfo_widget.cpp: - added support for user-defined wave-shapes - the user just has to drag - an audio-sample into envelope/lfo-widget and that's all ;-) - - * src/tracks/pattern.cpp: - * src/tracks/sample_track.cpp: - make sound-buffer of frozen pattern draggable to sample in - sample-track - - * include/sample_buffer.h: - * src/lib/sample_buffer.cpp: - support for base64-encoding of sample-data into a QString - - * src/core/track_container.cpp: - import MIDI-file to itself when getting according drag'n'drop-request - - * plugins/audio_file_processor/audio_file_processor.h: - * plugins/audio_file_processor/audio_file_processor.cpp: - receive drop-events (set dragged sample etc.) - - * plugins/vestige/fstclient.h: - * plugins/vestige/fstclient.cpp: - renamed removeVSTPlugin::write/readValue to write/readValueS for - compiling even with buggy GCC 3.x - - * include/file_browser.h: - * src/core/file_browser.cpp: - made up all that drag'n'drop-stuff, you're now able to drag samples - and presets directly to according channel, sample etc. - -2005-12-17 Tobias Doerffel - - * include/bb_editor.h: - * include/pattern.h: - * src/core/bb_editor.cpp: - * src/tracks/pattern.cpp: - always update according bb-tracks when changing pattern/it's length - - * include/track.h: - * src/core/track.cpp: - * src/core/track_container.cpp: - drag'n'drop everywhere - now you can drag every track-content-object - (e.g. a pattern) to every other track-content-object of the same type - or to a free place in an according track or just in another - track-container - - * include/mmp.h: - * src/lib/mmp.cpp: - allow additionally to load data from given string instead of file - - * include/timeline.h: - * src/core/timeline.cpp: - - disable magnetic loop-points when pressing control - - set start-point directly to given position when pressing middle - mouse-button, do the same for end-point of shift is pressed at the - same time - - * include/piano_roll.h: - * include/song_editor.h: - * src/core/piano_roll.cpp: - * src/core/song_editor.cpp: - use modifier-key-states from lmmsMainWin instead of monitoring them on - it's own - - * include/lmms_main_win.h: - * src/core/lmms_main_win.cpp: - capture key-events and save states of shift, control- and alt-key - everytime it changes - other widgets can use this for querying whether - one of these modifier-keys is pressed - -2005-12-16 Tobias Doerffel - - * configure.in: - added better LADSPA-check and fixed some other small things - - * src/core/mixer.cpp: - query attribute "mididev" instead of "midiclient" for determining - selected MIDI-device - fixes bug with apparently non-selectable - MIDI-device/-client - - * src/core/plugin.cpp: - * src/lib/ladspa_manager.cpp: - load plugins using QLibrary instead of platform-dependent dl-functions - -2005-12-15 Tobias Doerffel - - * include/audio_alsa.h: - do not include alsa-headers if they do not exist... - -2005-12-14 Tobias Doerffel - - * src/core/file_browser.cpp: - display text-float while loading sample for preview - - * plugins/audio_file_processor/audio_file_processor.cpp: - fixed bug which caused LMMS to crash when playing notes on - audio-file-processor, which was created out of preset containing link - to file which doesn't exist - - * src/core/song_editor.cpp: - use text-floats instead of status-bar - - * src/core/lmms_main_win.cpp: - removed status-bar - - * plugins/vestige/vestige.cpp: - show text-float while loading plugin - - * include/text_float.h: - * src/widgets/text_float.cpp: - heavy improvements on text-float-widget which is now also able to - display messages with title and pixmap and offers two static methods - for displaying a certain message - - * src/tracks/channel_track.cpp: - set project modified after accepting drops of presets/plugins - - * include/instrument_play_handle.h: - check for m_instrument being NULL because play-handle might be - invalidated and thus crash when referencing NULL-ptr - - * most files: - continued improving Qt4-support - -2005-12-13 Tobias Doerffel - - * most files: - made LMMS compatible with Qt4 again after heavy development under Qt3 - led to incompatibility with Qt4 - -2005-12-11 Tobias Doerffel - - * src/core/lmms_main_win.cpp: - * src/lib/mmp.cpp: - - default file-extension is now "mmp" (MultiMedia Project) instead of - "xml" for being able to associate mmp-files with LMMS in - file-managers etc. - futhermore LMMS-file-browser is much faster now - because it does not have to examine each file - - file-extension for song-templates is now "mpt" (MultiMedia Project - Template) - - * include/cpuload_widget.h: - * src/widgets/cpuload_widget.cpp: - added cool CPU-load-widget displaying LMMS's current CPU-usage - - * src/core/note_play_handle.cpp: - always check validity of sub-notes as they might not be known to mixer - and therefore not invalidated in certain situations which made LMMS - crashing (e.g. when deleting a channel-track which was current playing - some arpeggio-notes) - - * include/pattern.h: - * src/tracks/pattern.cpp: - start separate thread for freezing pattern as this doesn't block the - GUI-thread and user is now able to cancel pattern-freezing (which was - not possible after last rewrite a few days ago) - - * include/timeline.h: - * src/core/timeline.cpp: - use timer for periodically screen-updates - locking QApplication-mutex - isn't necessary anymore which makes LMMS not to hang when creating - new song while playing etc. - - * src/core/piano_roll.cpp: - when settings time-line-position, call setTact( 0 ) and - setTact64th( 0 )-members instead of pos() = 0 (the latter one leads - to crashes) - - * plugins/audio_file_processor/audio_file_processor.cpp: - update start- and end-frames of sample-buffer when loading settings - -2005-12-10 Tobias Doerffel - - * include/lmms_main_win.h: - * include/song_editor.h: - * src/core/lmms_main_win.cpp: - * src/core/song_editor.cpp: - * resources/toolbar_bg.png: - * resources/main_toolbar_bg.png: - heavy improvements on toolbars - - * include/nstate_button.h: - * src/widgets/nstate_button.cpp: - base-class is now toolButton instead of QPushButton - - * include/tool_button.h: - * src/widgets/tool_button.cpp: - - moved implemenation of toolButton into cpp-file - - added highlighting during mouse-over - - do not connect clicked()-signal if receiver and/or slot are NULL - -2005-12-09 Tobias Doerffel - - * include/channel_track.h: - * src/core/midi_tab_widget.cpp: - * src/core/preset_preview_play_handle.cpp: - added support for saving and restoring MIDI-connections of a channel - in ordinary channel-preset-data - - * include/channel_track.h: - * include/midi_tab_widget.h: - * src/core/midi_tab_widget.cpp: - * src/tracks/channel_track.cpp: - dropped support for switchable MIDI-event-routing as it is done per - default and actually makes no sense... - - * src/midi/midi_port.cpp: - do not process MIDI-out-event if channel = -1 - -2005-12-08 Tobias Doerffel - - * src/core/midi_tab_widget.cpp: - - always un-check items in port-menus when disabling receiving or - sending MIDI-events - - small GUI improvements - - * resources/midi_in.png: - * resources/midi_out.png: - added icons for MIDI-input- and MIDI-output-port-selection - -2005-12-07 Tobias Doerffel - - * include/midi_alsa_seq.h: - * include/midi_client.h: - * include/midi_tab_widget.h: - * src/core/midi_tab_widget.cpp: - * src/midi/midi_alsa_seq.cpp: - * src/midi/midi_client.cpp: - added support for easy MIDI-port-subscription inside LMMS by just - selecting according source-/destination-port from a menu in - MIDI-setup-tab in each channel-window - -2005-12-06 Tobias Doerffel - - * src/core/note_play_handle.cpp: - * src/core/piano_roll.cpp: - * src/core/piano_widget.cpp: - * src/tracks/channel_track.cpp: - moved output-MIDI-event-generation-code from channel-track to - note-play-handles for covering arpeggio/chords and having exactly - timed events - makes it now possible to control other MIDI-based - synths etc. from patterns (which was not possible before because - of a small bug) - will drop MIDI-out-plugin very soon as it isn't - needed anymore - -2005-12-05 Tobias Doerffel - - * include/piano_roll.h: - * src/core/piano_roll.cpp: - - when moving mouse draw a bar at current key - - re-enabled mouse-tracking for cursor-changes when mouse is over tail - of note etc. - - * resources/zoom.png: - * src/core/song_editor.cpp: - * src/core/piano_roll.cpp: - added small zoom-icon to zoom-combobox - -2005-12-04 Tobias Doerffel - - * include/midi_alsa_raw.h: - * include/midi_client.h: - * include/midi_dummy.h: - * include/midi_oss.h: - * src/midi/midi_alsa_raw.cpp: - * src/midi/midi_client.cpp: - * src/midi/midi_oss.cpp: - renamed class midiRawClient to midiClientRaw - - * include/pattern.h: - * src/core/song_editor.cpp: - * src/tracks/pattern.cpp: - do not hang in endless loop when rendering pattern with enabled - looping-points - - * src/core/time_line.cpp: - align looping-points on bars - - * include/bb_editor.h: - * include/piano_roll.h: - * include/song_editor.h: - * include/timeline.h: - * include/tool_button.h: - * src/core/bb_editor.cpp: - * src/core/piano_roll.cpp: - * src/core/song_editor.cpp: - * src/core/timeline.cpp: - redesigned toolbars of song-editor, bb-editor and piano-roll - now - they're looking really cool and especially time-line-features are much - more usable - - * include/song_editor.cpp: - * src/core/lmms_main_win.cpp: - * src/core/song_editor.cpp: - - added main-toolbar at bottom of screen and moved several widgets from - song-editor-toolbar into it - - added high-quality-button for switching to 88200/96000 Hz - - * src/widgets/tab_widget.cpp: - reversed scroll-wheel-direction for changing tab - -2005-12-03 Tobias Doerffel - - * src/core/main.cpp: - - better handling of command-line options - - added help switch - - fixed bugs concerning rendering from command-line - - * include/audio_alsa.h: - * include/audio_device.h: - * include/audio_dummy.h: - * include/audio_file_device.h: - * include/audio_file_ogg.h: - * include/audio_file_wave.h - * include/audio_jack.h: - * include/audio_oss.h: - * include/audio_sdl.h: - * include/export.h: - * include/export_project_dialog.h: - * include/mixer.h: - * include/pattern.h - * include/song_editor.h: - * src/audio/audio_alsa.cpp: - * src/audio/audio_device.cpp: - * src/audio/audio_file_device.cpp: - * src/audio/audio_file_ogg.cpp: - * src/audio/audio_file_wave.cpp: - * src/audio/audio_jack.cpp: - * src/audio/audio_oss.cpp: - * src/audio/audio_port.cpp: - * src/audio/audio_sdl.cpp: - * src/core/export_project_dialog.cpp: - * src/core/lmms_main_win.cpp: - * src/core/main.cpp: - * src/core/mixer.cpp: - * src/core/song_editor.cpp: - * src/track/pattern.cpp: - changed architecture of mixer-system from push- to pull-architecture - which makes almost all things (song-export, pattern-freezing etc.) much - easier and also results in a better performance (especially when using - JACK) - additionally LMMS doesn't take 100% CPU anymore - -2005-12-02 Tobias Doerffel - - * src/core/config_mgr.cpp: - do not try to re-run wizard in case of version mismatches - - * configure.in: - * plugins/Makefile.am: - * presets/Makefile.am: - dropped ladspa_sine_1063-plugin as it is only for experimental - purposes - -2005-11-29 Tobias Doerffel - - * plugins/vestige/vestige.h: - * plugins/vestige/vestige.cpp: - changes for working with new VST-framework - - * plugins/vestige/fstclient.h: - * plugins/vestige/fstserver.h: - * plugins/vestige/fstclient.cpp: - * plugins/vestige/fstserver.cpp: - * plugins/vestige/fstcore.c: - * plugins/vestige/communication.h: - added new VST-framework (client-server-architecture) based on XFST - - * include/qxembed.h - * src/widgets/qxembed.cpp: - added QXEmbed-widget which is necessary for embedding VST-plugin - -2005-11-27 Tobias Doerffel - - * src/core/mixer.cpp: - added usleep()-call for realizing usable threading and solve problems - with 100%-CPU-usage - -2005-11-08 Tobias Doerffel - - * include/channel_track.h: - * include/sample_play_handle.h: - * include/sample_track.h: - * src/core/sample_play_handle.cpp: - * src/tracks/channel_track.cpp: - * src/tracks/sample_track.cpp: - made things work with audio-ports - - * include/mixer.h: - * src/core/mixer.cpp: - completely revised internal mixing-engine make it working with - the new audio-ports, which results in a much cleaner, faster and more - powerful mixing-engine - - * include/audio_port.h: - * src/audio/audio_port.cpp: - added so called audio-ports which are important for transporting sound - from it's origin through the mixer and the effect-board (the latter - one isn't existing yet but coming quite soon) - another important - point is the ability of having output-ports for each channel/sample- - track with JACK - - * src/tracks/channel_track.cpp: - translate default-channel-name "Default" - - * src/audio/audio_jack.cpp: - - sync JACK's buffer-size with LMMS's one - - start JACK-transport if not already done - - * include/mixer.h: - * src/audio/audio_jack.cpp: - * src/core/mixer.cpp: - * src/lib/sample_buffer.cpp: - * src/widgets/visualization_widget.cpp: - use memset() for clearing buffers - obsoletes usage of silence-buffers - in mixer - -2005-11-07 Tobias Doerffel - - * src/midi/midi_alsa_seq.cpp: - use relative instead of absolute scheduling for events which makes - MIDI-out working - -2005-10-31 Tobias Doerffel - - * include/midi_alsa_seq.h: - * src/midi/midi_alsa_seq.cpp: - several bug-fixes - -2005-10-30 Tobias Doerffel - - * include/midi_alsa_seq.h: - * src/midi/midi_alsa_seq.cpp: - added first version of ALSA-sequencer - currently doesn't handle all - common events, but note-on/off and key-pressure work so far - - * include/midi_client.h: - - added method applyPortMode() for making MIDI-subsystem able to get - known of port-mode changes which is necessary if they have REAL - ports like ALSA-seq. has - - renamed validatePortName() to applyPortName() and made it non-pure - virtual - - * src/tracks/channel_track.cpp: - initialize m_midiEventRoutingEnabled with FALSE per default in ctor - - * src/core/mixer.cpp: - delete midi-dev on exit - - * src/midi/midi_midi_alsa_raw.cpp: - when reading/saving device-name via config-mgr, use "midialsaraw" - instead of "midialsa" as context-name - -2005-10-28 Tobias Doerffel - - * src/widgets/project_notes.cpp: - set initial text to bright gray, since black text on a very dark back- - ground isn't very readable... - - * include/lmms_main_win.h: - * include/setup_dialog.h: - * src/core/bb_editor.cpp: - * src/core/lmms_main_win.cpp: - * src/core/setup_dialog.cpp: - * src/core/song_editor.cpp: - * src/widgets/project_notes.cpp: - added support for GIMP-like usability, i.e. no MDI - - * src/core/song_editor.cpp: - * src/core/bb_editor.cpp: - reorder some code in constructor for not crashing if window is - shown while constructor is still running - -2005-10-23 Tobias Doerffel - - * src/widgets/led_checkbox.cpp: - also emit toggled()-signal if state actually wasn't changed - - * include/lcd_spinbox.h: - * src/widgets/lcd_spinbox.cpp: - - display special strings if value is a certain number - - support for disabled-state (gray/no input) - - * include/midi_tab_widget.h: - * src/core/midi_tab_widget.cpp: - * src/tracks/channel_track.cpp: - added new tab "MIDI" for being able to setup MIDI-related stuff for - each channel - - * include/channel_track.h: - * include/midi*: - * include/piano_widget.h: - * include/setup_dialog.h: - * src/core/mixer.cpp: - * src/core/piano_roll.cpp: - * src/core/piano_widget.cpp: - * src/core/setup_dialog.cpp: - * src/core/song_editor.cpp: - * src/midi/midi*: - * src/tracks/channel_track.cpp: - coded a completely new, powerful and clean MIDI-system which e.g. makes - it possible to mask MIDI-events for each channel and to receive and send - (timed!) MIDI-events on a separate MIDI-port for each channel, which - only makes sense if using non-raw (sequenced) MIDI-client - currently - none existing, but ALSA-sequencer-support is in progress - - * include/midi_device.h: - * src/midi/midi_device.cpp: - removed - -2005-10-21 Tobias Doerffel - - * src/widgets/tempo_sync_knob.cpp: - do not implement the same code as knob does in mouseMoveEvent() - call - knob::mouseMoveEvent() instead - - * include/knob.h: - * src/widgets/knob.cpp: - cleaned up a lot and fixed some bugs - -2005-10-20 Tobias Doerffel - - * include/song_editor.h: - decreased MAX_BPM to 999 since BPM-LCD-spinbox is intended to have - only three digits while 1000 has four of them... ;-) - - * include/track_container.h: - * src/core/track_container.cpp: - trackContainer::scrollArea-class has now m_trackContainer-member - for storing parent which makes cast of parent-widget to track-container - (which sometimes failed...) obsolete - - * configure.in: - check for libfst and present VST-SDK header-files - -2005-10-19 Tobias Doerffel - - * plugins/vestige/vestige.h: - * plugins/vestige/vestige.cpp: - added possibility of opening plugins instead of hardcoding them ;-) - - * include/track.h: - renamed createTrack() and cloneTrack() to create() and clone() - - * include/track_container.h: - * src/core/track_container.cpp: - receive drop-events -> add channel with instrument/preset - - * src/audio/audio_jack.cpp: - removed usleep() out of loop in audioJACK::writeBufferToDev() since it - caused LMMS to hang e.g when removing a track - - * src/core/plugin_browser.cpp: - show hand-cursor if over a plugin-description-widget - - * src/widgets/pixmap_button.cpp: - if pixmap-button is set non-checkable, draw active-graphic if pressed - down and inactive one in normal state - - * include/lmms_main_win.h: - * src/core/lmms_main_win.cpp: - own workspace for making wheelEvent(...) is now obsolete -> removed - - * include/track_container.h: - * src/core/song_editor.cpp: - * src/core/track_container.cpp: - added own scroll-area for capturing special wheel-events where a - modifier-key (shift, control etc.) is pressed - - * src/core/song_editor.cpp: - removed add-channel-button as it is obsolete after adding plugin-browser - - * resources/: - improved icons such as project_*.png and sample-track-related icons - -2005-10-18 Tobias Doerffel - - * include/channel_track.h: - * src/tracks/channel_track.cpp: - - moved channelButton-implementation to channel_track.src - - added support for receiving drop-events, which makes channel-track - to load either the given instrument or the given preset - - * src/core/plugin_browser.cpp: - * include/plugin_browser.h: - added cool plugin-browser, which displays all available instrument- - plugins which are draggable to a channel-window/button - - * include/string_pair_drag.h: - * src/lib/string_pair_drag.cpp: - added drag'n'drop-implementation for dragging string-pairs (key/value) - which provides a standard-interface, although drag'n'drop has changed a - lot in Qt 4 - - * src/widgets/crystal_button.cpp: - made mouseMoveEvent()-method much more effective - - * Makefile.am: - * buildtools/Makefile.am: - build buildtools in subdir instead of top-build-directory - solves - dependendy problems with bin2res - - * src/core/file_browser.cpp: - do not depend on typeinfo of audioFileProcessor anymore by using - new setParameter()-method - - * include/plugin.h: - added setParameter() and getParameter()-methods for making LMMS able to - set parameters of a specific plugin without knowing anything about it - -2005-10-17 Tobias Doerffel - - * buildtools/bin2res.cpp: - * include/embed.h: - * src/lib/embed.cpp: - - declaration of embedded-data-descriptor is now located in embed.h and - part of namespace embed - - added support for local embedded-resources which is important for - plugins containing their own images etc., so data and access-methods - are stored into namespace PLUGIN_NAME - - * include/plugin.h: - * src/core/plugin.cpp: - added logo-field to descriptor-structure and simplified method for - getting descriptors of all plugins - - * include/basic_filters.h: - removed Moog-2-filter as it is only very CPU-intensive without any - significant difference to sound of normal Moog-filter - -2005-10-16 Tobias Doerffel - - * src/lib/ladspa_manager.cpp: - skip not existing/unreadable directories when searching for plugins - - * include/vestige.h: - * src/plugins/vestige.cpp: - make use of new instrument-play-handle - - * include/channel_track.h: - * src/core/browser.cpp: - * src/core/song_editor.cpp: - * src/midi/midi_file.cpp: - * src/tracks/channel_track.cpp: - renamed loadPlugin() to loadInstrument() - - * include/config_mgr.h: - * src/core/config_mgr.cpp: - added pluginDir()-method - - * include/instrument_play_handle.h: - added another play-handle for playing instruments which do not - produce sound for each note - - * src/plugins/: - renamed directory soundgenerators to plugins and modified all plugins - for working with revised plugin-system - - * include/instrument.h: - * include/plugin.h: - * src/core/instrument.cpp: - * src/core/plugin.cpp: - splitted code from instrument up into class plugin and class instrument - and revised plugin-system - - * include/instrument.h: - * src/core/instrument.cpp: - renamed files soundgenerator.* to instrument.* as well as class-name - -2005-10-15 Tobias Doerffel - - * include/vestige.h: - * src/soundgenerators/vestige.cpp: - new plugin "VeSTige" for handling VST-plugins - VERY experimental, - but at least, we get some sound out of these strange dll-files ;-) - -2005-10-13 Tobias Doerffel - - * src/audio/audio_jack.cpp: - do not fill up buffers if JACK-transport is not rolling but at the same - time always handle frame-syncing-var in JACK-callback, even if JACK- - transport is not rolling - fixes several bugs like lockups when - removing tracks while JACK-server is pausing... - - * src/widgets/knob.cpp: - fixed bug which caused hidden mouse-cursor forever when pressing right - mouse-button while left one is pressed - - * src/lib/ladspa_manager.cpp: - use /usr/lib/ladspa as default-directory if env-var LADSPA_PATH is not - set - - * src/soundgenerators/*.cpp: - removed obsolete defaultSettings()-method from each soundgenerator - -2005-10-13 Danny McRae - - * include/ladspa_manager.h - * include/ladspa_sine_1063.h - * src/lib/ladspa_manager.cpp: - * src/soundgenerators/ladspa_sine_1063.cpp: - added LADSPA-support and a simple soundgenerator for testing-purposes - -2005-10-12 Danny McRae - - * Makefile.am: - * include/led_checkbox.h: - * src/core/envelope_and_lfo_widget.cpp: - * src/widgets/led_checkbox.cpp: - inherit ledCheckBox from QWidget instead of QCheckBox since it sometimes - caused graphic-errors when running on KDE with Baghira-style... - -2005-10-05 Danny McRae - - * resources/note_double_whole.png: - * resources/note_eighth.png: - * resources/note_half.png: - * resources/note_none.png: - * resources/note_quarter.png: - * resources/note_sixteenth.png: - * resources/note_thirtysecond.png: - * resources/note_whole.png: - * resources/xclock.png: - added icons for context-menu of tempoSyncKnob - - * src/widgets/lcd_spinbox.cpp: - emit valueChanged()-signal in wheelEvent()-method - - * include/song_editor.h: - * src/core/song_editor.cpp: - - added getBPM()-method - - emit signal if BPM is changed - - * include/arp_and_chords_tab_widget.h: - * include/envelope_and_lfo_widget.h: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/envelope_and_lfo_widget.cpp: - use new tempoSyncKnob-widget instead of traditional time-knob - - * include/tempo_sync_knob.h: - * src/widgets/tempo_sync_knob.cpp: - added tempo-sync-knob which automatically converts fixed note-length's - to a fixed time in ms everytime BPM is changed - -2005-10-03 Tobias Doerffel - - * include/basic_filters.h: - - added another moog-filter which sounds a bit better but needs MUCH - more CPU-time... - - cleaned up different filter-code-branches - -2005-10-02 Tobias Doerffel - - * include/oscillator.h: - cast to int instead of floor()ing value in oscillator::phase() which - makes the whole thing faster again... - -2005-09-29 Tobias Doerffel - - * src/widgets/tab_widget.cpp: - fixed bugs when adding widget with already existing index - - * Makefile.am: - * include/midi_out.h: - * include/plucked_string_synth.h: - * src/soundgenerators/midi_out.cpp: - * src/soundgenerators/plucked_string_synth.cpp: - classes midiOut and pluckedStringSynth do not have slots or signals, - so Q_OBJECT-macros were removed and MOC-code isn't compiled anymore - - * include/sgs: - * src/core/plugin_management.cpp: - removed because not needed anymore with new plugin-system - - * configure.in: - * Makefile.am: - * include/audio_file_processor.h: - * include/channel_track.h: - * include/midi_out.h: - * include/plucked_string_synth.h: - * include/sound_generator.h: - * include/triple_oscillator.h: - * src/core/browser.cpp: - * src/core/sound_generator.cpp: - * src/core/song_editor.cpp: - * src/midi/midi_file.cpp: - * src/soundgenerators/*: - * src/tracks/channel_track.cpp: - made all sound-generator-plugins shared libraries loaded at runtime, - which gives much more flexibility because you can load songs/presets - from people having other plugins just by adding according lib*.so file - to /usr/lib - no need to recompile! - - * inlude/empty_sg_plugin.h: - added empty sound-generator plugin - -2005-09-28 Tobias Doerffel - - * include/song_editor.h: - * src/core/song_editor.cpp: - added combo-box for selectinf zooming-factor - - * include/piano_roll.h: - * src/core/piano_roll.cpp: - added combo-box for selecting zooming-factor - - * include/led_checkbox.h: - * src/widgets/led_checkbox.cpp: - added methods for querying and setting state - - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/envelope_tab_widget.cpp: - better alignment of widgets inside each of this tabs - - * src/tracks/channel_track.cpp: - finished improving GUI of channel-track-window by using tabWidget - instead of tabBar for plugin-, env/lfo- and arp-widgets - - * include/envelope_and_lfo_widget.h: - * src/core/envelope_and_lfo_widget.cpp: - use ledCheckBox'es instead of pixmapButton's with QLabel's - - * include/tab_widget.h: - * src/widgets/tab_widget.cpp: - made tabWidget more powerful: - - use indexed tabs - - different painting if no caption was defined - - switch tabs if wheel-events occurs - -2005-09-27 Tobias Doerffel - - * src/tracks/channel_track.cpp: - began improving GUI of channel-track-window - - * projects/cool_songs/TobyDox-TheFourthDimension.xml: - added another song... - - * include/qt3support.h: - Qt 3.1-support - - * include/audio_alsa.h: - define macro ALSA_PCM_NEW_HW_PARAMS_API for working with older ALSA- - versions which offer old and new HW-param-API - we're using the new one - -2005-09-26 Tobias Doerffel - - * many files: - make LMMS compile with Qt 3.0 and GCC 2.95 - -2005-09-25 Tobias Doerffel - - * src/audio/audio_jack.cpp: - - decreased wait-time from 0.5 ms to 0.2 ms in writeBufferToDev(...) - - clear part of buffers that could not be filled for avoiding bad - noise in case there's no data from sound-render-thread, because it is - locked or got no cpu-time for some reason - - * src/core/timeline.cpp: - do not call update() in updatePosition, call paintEvent() directly - instead - hopefully fixes the "unexspected Xlib async replies" - which occured in some seldom cases because there were paint-events - generated - something that must not be done in other threads... - - * resources/source/songeditor.svg: - * resources/songeditor.png: - created a new song-editor-icon - - * src/core/song_editor.cpp: - do not save play-pos from previous play-mode when beginning to play - in different play-mode - fixes bug in timeline behaviour "back to start" - -2005-09-24 Tobias Doerffel - - * configure.in: - * include/audio_oss.h: - * include/midi_oss.h: - * src/audio/audio_oss.cpp: - * src/midi/midi_oss.cpp: - made LMMS compiling and working without OSS - configure detects - whether soundcard.h is available - - * include/gui_templates.h: - made template pointSize(...) platform-independent by not using x11- - specific qt-classes/-functions - - * include/templates.h: - moved pointSize-function with all the headers it depends on into - gui_templates.h - - * src/core/mixer.cpp: - - do not initialize member m_surroundSilence if surround is disabled - - free silence-buffers in dtor - - * src/tracks/bb_track.cpp: - when drawing gradient skip first and last line as a rect is painted - over it afterwards - - * src/core/track_container.cpp: - set modified-state for song when removing track - -2005-09-21 Tobias Doerffel - - * configure.in: - made 0.1.1 release - -2005-09-20 Tobias Doerffel - - * include/about_dialog.h: - * src/core/about_dialog.cpp: - no need for passing parent when creating about-dialog - - * src/core/song_editor.cpp: - - different usage of question-box in songEditor::mayChangeProject() - because of bugs with several qt-versions... - - when exporting song, do use baseName( TRUE ) instead of baseName() - for determining base-name of rendered file - - * src/core/lmms_main_win.cpp: - - display filename before app-name in window-title - - only use basename of filename in window-title - - added message referring to LMMS-homepage when clicking on - Help/Help - - * src/core/export_song_dialog.cpp: - use lmmsMainWin::resetWindowTitle() for resetting window-title - after export is done - - * src/widgets/knob.cpp: - do not add tooltips to knobs - clicking on knob has quite the same - effect so tooltips are just annoying - - * src/core/browser.cpp: - when matching file-name, always convert them to lower case for also - handling files like foo.WAV - - * src/core/config_mgr.cpp: - added setValue(...)-call for saving working-directory after setting - up everything - fixes bug with empty browsers after fresh personal - installation of LMMS - -2005-09-19 Tobias Doerffel - - * configure.in: - made 0.1.0 release - -2005-09-18 Tobias Doerffel - - * src/tracks/bb_track.cpp: - revised paintEvent()-method -> bb-TCO's are now painted with a gradient! - - * src/core/song_editor.cpp: - - call bbEditor::stop before playing to make sure play-button in - bb-editor is properly reset - - call realignTracks() with parameter TRUE in wheelEvent(...) - - some hacks for making pause-button work... - - * src/core/track_container.cpp: - added parameter _complete_update to trackContainer::realignTracks() - to be able to hide and show all tracks which is necessary e.g. - after having changed pixels-per-tact-property -> zooming in song-editor - works now well - - * src/core/setup_dialog.cpp: - added message-box telling the user to restart LMMS - - * include/midi_alsa_raw.h: - * include/midi_device.h: - * include/midi_oss.h: - * include/midi_dummy.h: - * include/mixer.h: - * include/setup_dialog.h: - * src/core/mixer.cpp: - * src/core/setup_dialog.cpp: - * src/midi/midi_alsa_raw.cpp: - * src/midi/midi_device.cpp: - * src/midi/midi_oss.cpp: - made it possible to select and setup MIDI-device - - * include/knob.h: - * src/widgets/knob.cpp: - - many cleanups, coding style improvements etc. - - added new behaviour for controlling knob -> move cursor up/down for - changing value - - replaced usage of status-bar by text-float-widget - - * include/text_float.h: - * src/widgets/text_float.cpp: - took text-float from Rosegarden - - * include/config_mgr.h: - * src/core/config_mgr.cpp: - - fixed bug in configManager::setValue(): new value-pair was always - pushed back, even if it already existed, so result of value() didn't - change until restart - - moved widget-creation-code from ctor to new method createWidgets() - which fixes problems with unlocalized strings in wizard because - embed::loadTranslation() calls configManager::inst()->localeDir() - for determining path to localization files - this call created all - wizard-widgets before actual localization was loaded... - -2005-09-17 Tobias Doerffel - - * src/core/setup_dialog.cpp: - added switches for disabling tooltips and turning on classical knob- - behaviour - - * include/led_checkbox.h: - * src/widget/led_checkbox.cpp: - added LED-check-box - -2005-09-16 Tobias Doerffel - - * src/core/mixer.cpp: - clear output-buffers in ctor before using them -> avoids awful noises - at startup - - * src/core/mixer.cpp: - * src/lib/sample_buffer.cpp: - * src/tracks/channel_track.cpp: - * src/tracks/sample_track.cpp: - use given frame-parameter in methods playing sample-buffers instead - of mixer::framesPerAudioBuffer() -> no clicks at tact-border because - of odd sample-frame-count - - * src/core/lmms_main_win.cpp: - call presetPreviewPlayHandle::cleanUp() in dtor -> fixes segfault which - which occured at exit if you previewed a channel during session - - * include/preset_preview_play_handle.h: - * src/core/preset_preview_play_handle.cpp: - added cleanUp()-method which deletes blind track-container containing - preset-preview-channel - - * src/soundgenerators/triple_oscillator.cpp: - - unified much code by defining setChecked when compiling with Qt 3 - - also set file-name of user-defined-wave as tool-tip when loading - settings - - * most files in src/: - use new tooltip-system - removes qt3/qt4-compat-code - - * include/tooltip.h: - * src/widget/tooltip.cpp: - added tooltip-namespace with method "add(...)" for allowing transparent - usage of tooltips, so there's no difference to code using tooltips - whether it is compiled with Qt 3 or Qt 4 - -2005-09-14 Tobias Doerffel - - * include/mixer.h: - * include/note_play_handle.h: - * include/play_handle.h: - * src/core/mixer.cpp: - * src/core/note_play_handle.cpp: - * src/tracks/channel_track.cpp: - added play-handle-invalidating-feature making it possible to - invalidate notes of which the objects they depend on do not exist - anymore or things like that. for example channel-track-dtor - invalidates all note-play-handles linked with according channel - -> no segfault when deleting channel-track - - * src/core/track_container.cpp: - pause mixer before removing track -> no segfault - - * src/lib/mmp.cpp: - initialize m_type in mmp::multimediaProject( projectTypes ) - - * src/lib/buffer_allocator.cpp: - added mutex for better protection against parallel accesses from - several threads - fixes some segfaults - - * src/core/lmms_main_win.cpp: - improved ~lmmsMainWin() which now first instructs mixer to quit it's - thread for avoiding spurious usages of objects to be destroyed - afterwards -> no segfault at the end - - * src/core/export_song_dialog.cpp: - * src/tracks/pattern.cpp: - cleaned up exporting/freezing mechanisms by using mixer's new methods - play() and pause() - - * include/mixer.h: - * src/core/mixer.cpp: - cleaned up mixer-thread syncing stuff by reorganizing mutexes and - replacing m_waitMutex by m_safetySyncMutex as well as according methods - lockWaitMutex() and unlockWaitMutex() by play() and pause() - - * src/core/setup_dialog.cpp: - tell config-manager to save it's config-file when setupDialog is - destroyed - -2005-09-13 Stephane Thomas - - * locale/fr.ts: - added French translation - -2005-09-13 Tobias Doerffel - - * src/core/lmms_main_win.cpp: - - show setup-dialog if LMMS is started first time or mixer uses dummy- - audio-driver - - added setup-dialog-entry to settings-menu - - * src/lib/mmp.cpp: - if saving preset, check whether file-name contains suffix ".cs.xml" - and add it if necessary - - * include/midi_alsa_raw.h: - * src/midi/midi_alsa_raw.cpp: - * src/midi/midi_device.cpp: - - changed everything (including file-names) from midiAlsa to midiALSARaw - - added terminate()-call in dtor for terminating thread properly - - * include/tab_bar.h: - * src/widget/tab_bar.cpp: - - added flag for addTab(...)-method indicating whether to use given - text as caption or just as tooltip - - reduced #ifdef QT4-macros by defining some names when compiling - with Qt3 - - * include/setup_dialog.h: - * src/core/setup_dialog.cpp: - added help-button in audio-setup-tab and improved geometry-stuff - - * include/audio_alsa.h: - * include/audio_oss.h: - * src/audio/audio_alsa.cpp: - * src/audio/audio_oss.cpp: - added probeDevice()-method which eases determining device-name in - either actual audio-class as well as in it's setup-widget - -2005-09-11 Tobias Doerffel - - * src/core/mixer.cpp: - use new audio-settings-technology for opening audio-device - - * include/setup_dialog.h: - * src/core/setup_dialog.cpp: - added setup-dialog for general-, audio- and MIDI-settings - - * include/audio_alsa.h: - * include/audio_device.h: - * include/audio_dummy.h: - * include/audio_jack.h: - * include/audio_oss.h: - * include/audio_sdl.h: - * src/audio/audio_alsa.cpp: - * src/audio/audio_device.cpp: - * src/audio/audio_jack.cpp: - * src/audio/audio_oss.cpp: - * src/audio/audio_sdl.cpp: - added setup-widget-technology making it possible to have audio-device- - specific setup-widgets which can be used in setup-dialog etc. - - * include/lcd_spinbox.h: - * src/widgets/lcd_spinbox.cpp: - added stepping-functionality - - * include/tab_widget.h: - * src/widgets/tab_widget.cpp: - pass caption to constructor instead of using fixed text - - * include/tab_bar.h: - * src/widgets/tab_bar.cpp: - - added direction-parameter in constructor - - added exclusive-property - - addTab(...) returns now pointer to tab-button which gives caller - possibility to modify the button - - * src/core/mixer.cpp: - save frames-per-audio-buffer-value in ctor if not set yet instead - of saving it in dtor - - * src/lib/embed.cpp: - do not return null-pixmap if pixmap not found - -2005-09-10 Tobias Doerffel - - * resources/setup_audio.png: - * resources/setup_general.png: - * resources/setup_midi.png: - added icons to be used in setup-dialog - - * src/audio/audio_alsa.cpp: - * src/audio/audio_sample_recorder.cpp: - use auto-cleaning pointer in createSampleBuffer(...) (fixes memory-leak - in ALSA-driver) - - * include/buffer_allocator.h: - added simple class for auto-cleaning pointers - - * src/core/mixer.cpp: - - added delete-calls in mixer::tryAudioDevices() - - init s_instanceOfMe-member in dtor, otherwise LMMS hangs up - - * locale/: - * artwork/: - moved translations and some artwork-stuff into locale- and artwork- - directory which is going to be installed into - LMMS-data-dir (/usr/share/lmms etc.) and shrinks executable - - * src/lib/embed.cpp: - added possibility to have resources in external files instead of being - linked into executable - - * configure.in: - - use macro AS_HELP_STRING for formatting help-strings - - removed --with-latency option as it is not needed anymore - -2005-09-06 Alireza - - * resources/ir.ts: - added Persian translation - -2005-09-04 Tobias Doerffel - - * src/audio/audio_oss.cpp: - - read device-name from config-file before evaluating environment- - variables etc. - - fixed bugs with device-probing (after dev-file was searched, there - was no open(...)-call again so it always failed if the first open(...) - didn't work - - * src/audio/audio_alsa.cpp: - read device-name from config-file before evaluating environment- - variables or using "default" - - * src/core/lmms_main_win.cpp: - call bufferAllocator::cleanUp( 0 ) for destroying all allocated buffers - - * include/buffer_allocator.h: - * src/lib/buffer_allocator.cpp: - - added clean-up-technique which removes least used buffers if - buffer-size exceeds limits (which depends on mixer's buffer-size) - - added field to bufDesc indicating usage of this buf - used by - alloc-method for determining most used, free and matching buffer - - * include/lcd_spinbox.h: - * src/widgets/lcd_spinbox.cpp: - made lcdSpinBox controlable by scroll-wheel - - * src/widgets/knob.cpp: - do not center knob if width of label is greater than actual knob - - * src/audio/audio_sample_recorder.cpp: - use bufferAllocator instead of new[]/delete[] - - * src/core/mixer.cpp: - - read value for frames-per-audio-buffer out of config-file and save - it at exit - - free buffer at exit - - * include/config_mgr.h: - * src/core/config_mgr.cpp: - added value() and setValue()-method which offers all components of LMMS - an easy way for loading/saving their settings at startup/exit - -2005-09-02 Mario Izquierdo -2005-09-02 Johnny Saenz - - * resources/es.ts: - added Spanish translation - -2005-09-02 Tobias Doerffel - - * most files: - finished changes began on 2005-08-29 - - * include/buffer_allocator.h: - * src/lib/buffer_allocator.cpp: - - only return aligned pointers - - small changes in API - - * resources/de.ts: - completed German translation - -2005-08-29 Tobias Doerffel - - * most files: - begin to use new bufferAllocator instead of old buffer-types and - use mixer-method for determining current number of frames per - audio-buffer - - * include/mixer.h: - types audioBuffer and surroundAudioBuffer don't exist anymore as well - as the constant FRAMES_PER_AUDIO_BUFFER - use - mixer::inst()->framesPerAudioBuffer() instead - -2005-08-28 Tobias Doerffel - - * include/song_editor.h: - * src/core/song_editor.cpp: - replaced QSpinBox by lcdSpinBox for BPM-spinbox - - * include/tab_bar.h: - * src/widgets/tab_bar.cpp: - removed function-parameter _font_size for tabBar::addTab(...) - - * most files: - - replaced QFont::setPointSize()-calls by according pointSize()-calls - which makes LMMS usable at any DPI-resolution - - changes for Qt4-compatibility - - * include/misc.h: - * include/template.h: - moved misc.h to template.h and added template-function pointSize - which sets a DPI-independent size for a given font - - * src/tracks/channel_track.cpp: - use labeling-feature of LCD-spinbox and removed old QLabel and - layouting-stuff - - * include/lcd_spinbox.h: - * src/widgets/lcd_spinbox.cpp: - - fixed bug: when moving mouse up, value was not updated properly - - added labeling-feature - - added valueChanged()-signal - - * src/core/arp_and_chords_tab_widget.cpp: - set m_arpDirection correct when loading older settings - -2005-08-27 Tobias Doerffel - - * include/channel_track.h: - * src/tracks/channel_track.cpp: - use new LCD-spinbox for effect-spinbox - - * include/lcd_spinbox.h: - * src/widgets/lcd_spinbox.cpp: - added LCD-spinbox, an improved QLCDNumber with ability of user-input - - * src/core/main.cpp: - changed highlight- and text-color to dark white instead of glaring green - for many people didn't like it... - - * include/audio_jack.h: - * src/audio/audio_jack.cpp: - - read and observe buf-size from JACK, so that writeBufferToDev() can - wait accordingly to it - now JACK-transport also works if buf-sizes - of LMMS and JACK are different - - also free buffers in destructor and not just throw them out of list - -2005-08-26 Tobias Doerffel - - * include/audio_jack.h: - * src/audio/audio_jack.cpp: - - also work with older versions which do not have jack_client_open() - - fixed bugs - - use bufferAllocator instead of new[] and delete[] in time-critical - functions - - * include/buffer_allocator.h: - * src/lib/buffer_allocator.cpp: - added bufferAllocator which is an optimized internal memory-manager - -2005-08-24 Tobias Doerffel - - * include/audio_jack.h: - * src/audio/audio_jack.cpp: - beginning of support for JACK-transport - - * src/audio/audio_sdl.cpp: - fixed memory leak - m_outputBuffer was not deleted in destructor - - * src/core/arp_and_chords_tab_widget.cpp: - completed usage of switchable groupboxes by saving groupbox-states - and evaluating them in processNote() - -2005-08-22 Tobias Doerffel - - * resources/afp_artwork.png: - small improvements for better usability and internationalization - - * src/soundgenerators/audio_file_processor.cpp: - - cleanups and small improvements concerning painting - - added missing tooltips - - moved open-sample-button right to filename-display-bar - - * src/widgets/pixmap_button.cpp: - changed default-pixmaps to led_yellow.png and led_off.png - - * resources/pattern_bg.png: - resized from 2x43 to 2x25 - - * src/core/name_label.cpp: - decreased default-font - - * include/track.h: - decreased size of track-settings-widget from 256 to 224 - - * include/channel_track.h: - * src/tracks/channel_track.cpp: - - use labeling-feature of knob for labeling volume-knob - - use smaller surroundArea in track-settings-widget and smaller - channel-button with smaller font - - * src/core/surround_area.cpp: - made surroundArea working with different widget-sizes than default size - - * resources/background_artwork.png: - made bg-image more pale - - * include/bb_editor.h: - * src/core/bb_editor.cpp: - changed painting-behaviour and made button-bg-gfx's obsolete by using - specialBgHandlingWidget - - * include/groupbox.h: - * src/widgets/groupbox.cpp: - improved groupbox by adding animation and more - - * src/core/envelope_and_lfo_widget.cpp: - * src/core/envelope_tab_widget.cpp: - - use knobs new labeling-feature - - use new tab-widget for target-widgets - - * include/tab_widget.h: - * src/widgets/tab_widget.cpp: - added own tab-widget which looks much cooler than Qt's one - - * src/core/arp_and_chords_tab_widget.cpp: - - using now new groupbox-widget and reorganized knob/switch-positions - - revised arpeggio-direction-buttons - - use knobs new labeling-feature - - removed obsolete headers - - * include/knob.h: - * src/widgets/knob.cpp: - added labeling-feature for automatically labeling knobs with given - text - - -2005-08-21 Tobias Doerffel - - * src/widgets/side_bar_widget.cpp: - * src/tracks/channel_track.cpp: - * src/core/config_mgr.cpp: - * src/core/piano_roll.cpp: - * src/core/arp_and_chords_tab_widget.cpp: - * src/core/main.cpp: - * src/core/browser.cpp: - replaced painting-device-dependent method setPixelSize by setPointSize - - * src/core/envelope_and_lfo_widget.cpp: - now using new group-box which looks much cooler and is more usable - - * include/groupbox.h: - * src/widgets/groupbox.cpp: - added own groupbox-widget with state-LED - - * src/widgets/pixmap_button.cpp: - delete m_bgPixmap in destructor - - * include/spc_bg_hndl_widget.h: - - made member m_backgroundPixmap to normal QPixmap instead of pointer to - it which also fixes a memory leak as dtor didn't delete the pixmap - - also use erase-pixmap of widget if available - - * include/oscillator.h: - - made shape-functions using phase()-function for determining phase of - sample - - made oscillator::phase() using modff instead of floorf-math which - makes the whole thing up to 20% faster - - * src/core/about_dialog.cpp: - added URL of project-page of LMMS - - * src/core/song_editor.cpp: - create new project if file given in cmd-line is not read-/usable - - * include/export_project_dialog.h: - * include/song_editor.h: - * src/core/main.cpp: - * src/core/song_editor.cpp: - added --render command-line-switch to render file and quit as soon as - job is done - very good for benchmarks - - * src/core/main.cpp: - added --version command-line-switch - -2005-08-20 Tobias Doerffel - - * src/core/lmms_main_win.cpp: - - extended filter for sample-browser - - added home- and root-browser for being able to load songs, presets, - samples etc. from somewhere else than within lmms-working-directory - -2005-07-27 Tobias Doerffel - - * src/core/lmms_main_win.cpp: - * src/core/track_container.cpp: - * src/core/track.cpp: - by completing destructors and fixing some other small bugs there's - finally no seg-fault when quitting app! (the bug annoying for months...) - - * include/track_container.h: - all public-slots were made to normal public and FASTCALLed functions - since they aren't connected to a signal anywhere and it just blows up - qt-moc-code - - * include/sample_track.h: - made method sampleTCO::changeLength(...) FASTCALLed since it's virtual - and method in base-class is also FASTCALLed - eliminates crash when - resizing sample - - * include/track.h: - * src/core/track.cpp: - removed unsused method setTrackWidgetHeight( int ) - -2005-07-26 Pedro Lopez-Cabanillas - - * src/core/browser.cpp: - * src/core/config_mgr.cpp: - * src/core/lmms_main_win.cpp: - * src/core/main.cpp: - * src/core/song_editor.cpp: - * src/lib/mmp.cpp: - * src/tracks/pattern.cpp: - * src/widgets/project_notes.cpp: - small changes for compatibility with Qt 3.1 - - * src/midi/midi_alsa.cpp: - * src/midi/midi_oss.cpp: - added MIDIDEV-environment variable for being able to choose a MIDI - device different from the default one - -2005-07-24 Tobias Doerffel - - * include/midi_mapper.h: - * src/midi/midi_mapper.cpp: - added MIDI-mapper to be used in combination with midiDevice's and/or - MIDI-Out-Plugin which can read MIDI-maps added before - - * midi-maps/*map: - added MIDI-maps from KMid - - * include/midi_dummy.h: - * src/midi/midi_device.cpp: - added dummy MIDI-driver for not crashing if no MIDI-device is available - - * src/core/piano_roll.cpp: - - go to start of pattern when pressing home-key - - added support for zooming - - * src/core/song_editor.cpp: - - fixed bug with loop-points by setting current-frame-var to zero to - force reset of it - - added auto-scrolling ability - - fixed bug which caused horizontal scrollbar to have an undefined - max-value after starting up LMMS - - go to start of pattern when pressing home-key - -2005-07-23 Alexey Kouznetsov - - * resources/ru.ts: - added Russian translation - -2005-07-23 Tobias Doerffel - - * src/core/piano_roll.cpp: - scroll back when stopping and play-position changes to invisible area - - * include/time_line.h: - * src/core/song_editor.cpp: - * src/core/time_line.cpp: - added control-buttons to time-line making it possible to control - things like auto-scrolling, looping and play-position after stop - - * src/midi/midi_device.cpp: - limit volume between 0 and 127 when sending out note-on-event - -2005-07-21 Tobias Doerffel - - * include/nstate_button.h: - * src/widgets/nstate_button.cpp: - added widget nStateButton which is a button able to have n different - states with according pixmaps and tooltips - - * resources/back_to_zero.png: - * resources/keep_stop_position.png: - * resources/back_to_start.png: - * resources/loop_points_off.png: - * resources/loop_points_on.png: - * resources/autoscroll_off.png: - * resources/autoscroll_on.png: - added pixmaps for buttons to be used in time-line as soon as possible - - * lmms-0.1.0rc1.tar.bz2: - release of Release Candidate 1 of LMMS 0.1.0 - -2005-07-20 Tobias Doerffel - - * src/midi/midi_file.cpp: - - proper handling of note-on-events which velocity 0 -> treat like - note-off-events makes it now possible to import a much larger amount - of MIDI-files - - added progress-dialog when importing MIDI-file - - * src/core/song_editor.cpp: - horizontal scrollbar is now placed some pixels above lower edge so that - it doesn't take action when resizing song-editor-window at lower edge - - * src/core/track_container.cpp: - added progress-dialog for loading project and according - qApp->processEvents()-call -> LMMS now isn't blocked anymore while - loading project - - * include/knob.h: - * src/widgets/knob.cpp: - fixed bugs caused by changes made before for scroll-wheel-support - -2005-07-19 Tobias Doerffel - - * include/knob.h: - * src/widgets/knob.cpp: - added better scroll-wheel support which increases/decreases knob-value - by 20th of range (e.g 0.05 if knob is ranged between 0 and 1) - -2005-07-17 Tobias Doerffel - - * projects/: - added "covers"-dir and added "Preludium and Fuge A-Minor" by J.S.Bach - to it as first covered project ;-) - - * src/core/note_play_handle.cpp: - - fixed bad bug in notePlayHandle::play(): instead of directly being - deleted, sub-notes were given to mixer to be removed when they played - completely but since these sub-notes are not known to mixer, it - couldn't delete them - - always call channelTrack::deleteNotePluginData() in - noteplayhandle-dtor even if pointer to note-plugin-data is NULL so - that all plugins are notified when note is done (midiOut-plugin - needs that for sending note-off-events!) - - * include/midi_out.h: - * src/soundgenerators/midi_out.cpp: - new plugin midiOut which sends all notes on this channel out to - external midi-device this is especially cool for playing arpeggio for - key pressed on external midi-device!! - - * src/soundgenerators/plucked_string_synth.cpp: - removed unneccesary inclusion of qpainter-header - - * include/midi_file.h: - * src/midi/midi_file.cpp: - * src/core/lmms_main_win.cpp: - * src/core/song_editor.cpp: - added support for importing MIDI-file (very experimental!!) - - * include/midi.h: - * include/midi_device.h: - moved general MIDI-stuff from midi_device.h to midi.h - - * src/audio/audio_file_device.cpp: - added missing arg()-call to QMessageBox::critical()-call in - audioFileDevice-ctor - -2005-07-16 Tobias Doerffel - - * src/core/config_mgr.cpp: - added shortcuts to navigation-buttons - -2005-07-14 Tobias Doerffel - - * src/core/piano_roll.cpp: - only play notes while editing if we're not in play-mode - - * include/song_editor.h: - * src/core/song_editor.cpp: - when exporting always render one additional tact at the end so that - we don't cut off notes with delay etc. - -2005-07-12 Tobias Doerffel - - - successful compilation with GCC 4.0.1 ;-) - - * src/core/arp_and_chords_tab_widget.cpp: - fixed bug responsible for playing base-notes of chords all time - if any arpeggio selected was selected - -2005-07-11 Tobias Doerffel - - * resources/source/wizard_files.xcf: - * resources/wizard_files.png: - updated project-file-icon in image - - * src/core/config_mgr.cpp: - - ask user whether to re-run setup-wizard if config-file indicates - different version of LMMS - - removed redundant assignment in configManager::loadConfigFile() - - added additional layout for having space at the left and right side - - increased font-size of title - - * Makefile.am: - install LMMS-icon into LMMS-data-dir - - * lmms-0.1.0beta.tar.bz2: - made beta-release of 0.1.0 and announced it on kde-apps.org - -2005-07-10 Tobias Doerffel - - * presets/TripleOscillator/: - added cool Church Organ preset and improved Xylophon preset - - * resources/de.ts: - updated German translations and cleaned up all obsolete translations - and context which shrinks the file by 50K... - - * samples/instruments/: - removed vibraphone01.ogg because of poor quality - - * src/core/piano_roll.cpp: - - do not set what's-this-texts as tooltips for play/stop-button - - added tooltip and what's-this-text to record-button - - display message in piano-roll how to open a pattern if none is opened - - always set window-title, even if no pattern is opened - - * src/core/mixer.cpp: - using iterators in second loop in mixer::run() leads to crashes, so - an optimized version of the old code is used now again... - - * src/core/lmms_main_win.cpp: - added tool-buttons for new project, open/save project etc. and added - popup-menu to new-button containing projects in template-directory - - * include/song_editor.h: - * src/core/song_editor.cpp: - - changed remaining method-names containing "[Ss]ong" to "[Pp]roject" - - toggle channel-button after adding channel-track - - * include/export_project_dialog.h: - * src/core/export_project_dialog.cpp: - renamed from export_song_dialog.ext to export_project_dialog.ext - -2005-07-09 Tobias Doerffel - - * all files: - now all source-code-files but some single exceptions do not have more - than 80 characters per line and also were made to conform one - programming-style - - * include/sgs: - wrote sane soundgenerator-plugin-scanner using bash-scripting which - replaces old, dirty and exaggerated c++-program and is also fully - portable - - * include/lmms_main_win.h: - * include/song_editor.h: - * src/core/lmms_main_win.cpp: - * src/core/song_editor.cpp: - renamed methods newFile, openFile etc. to createNewProject, openProject - etc. - - * resources/source/: - - renamed filenew.png, fileopen.png etc. to project_new.png etc. - - replaced song_file.png by project_file.png which has a new file-icon - with LMMS-logo inside - - replaced preset_file.png by new graphic where the star is inside - of a file-icon - - * resources/source/lmms_logo.svg: - made logo Inkscape 0.41 compatible (had problems with gradients since - logo originally had been made with Inkscape 0.39) - - * src/widgets/project_notes.cpp: - removed unnecessary name-strings for QActions - - * resources/project_notes.png: - replaced 16x16-icon with 22x22-icon to provide big enough icon for - toolbar which needs 22x22-icons - - * src/core/bb_editor.cpp: - * src/core/song_editor.cpp: - * src/tracks/bb_track.cpp: - do not crash if either there're no bb-tracks but bb-editor has tracks - or there're bb-tracks but bb-editor contains no tracks - - * src/core/mixer.cpp: - * src/core/note_play_handle.cpp: - * src/core/track_container.cpp: - * src/tracks/pattern.cpp: - rewrote loops using vectors to use iterators instead of indices etc. - which makes it all a bit smaller and faster since we do not always have - to access the current element using the []-operator - -2005-07-08 Tobias Doerffel - - * src/core/envelope_tab_widget.cpp: - * src/lib/sample_buffer.cpp: - * src/widgets/knob.cpp: - small fixes for making compilable with qt4 - - * configure.in: - * projects/: - added directories "tutorials" and "recorded_loops" - -2005-07-07 Tobias Doerffel - - * include/bb_track.h: - added FASTCALL to moveLocation(...) and changeLength(...) which fixes - crash-bug - - * src/core/song_editor.cpp: - do not confirm overwriting file if new project was just saved - - * samples/: - added a lot of new samples from wikisource and others - -2005-07-06 Tobias Doerffel - - * include/project_notes.h: - * src/core/song_editor.cpp: - * src/widgets/project_notes.cpp: - clear project-notes when clearing song (new/open file etc.) - - * src/tracks/pattern.cpp: - ask user when he tries to freeze a pattern of a muted channel whether he - wants to continue since freezing a pattern of a muted channel makes no - sense (you're rendering silence!) - - * include/piano_roll: - * src/core/piano_roll.cpp: - - added possibility to edit the volume of notes - - removed all bool-variables indicating whether an action is being - performed at the moment and introduced m_action, indicating - one of the actions defined in (also new) enum editActions - - replaced m_startTone and m_startOctave with one variable m_startKey, - which makes a lot of code unnecessary - - rewrote loops using note-vectors to use iterators instead of - indices and vector::size() - - renamed m_evolutionHeight to m_notesEditHeight - - replaced QMouseEvent::pos().[xy]()-calls with QMouseEvent::[xy]() - - pianoRoll::getKey() does now take y-position (int) as parameter - instead of QPoint since it only needs y-position - - use new setKey()/key()-member of note everywhere where it is possible - - * include/note.h: - added setKey()- and key()-member which setting/getting absolute key - of note - -2005-07-05 Tobias Doerffel - - * configure.in: - * projects/: - categorized projects in "cool_songs", "demos", "misc" and "templates" - so that we don't annoy the user with a lot projects in his/her project- - root - have to fill up "templates" with project-templates, e.g. - basic drum-kit, accoustic drum-kit etc. - - * most files: - added FASTCALL-attributes to functions taking at least one parameter - - * include/audio_file_processor.h: - * include/plucked_string_synth.h: - * include/triple_oscillator.h: - moved deleteNotePluginData()-method into according cpp-files which - makes including note_play_handle.h obsolete - - * include/audio_file_processor.h: - * include/sample_buffer.h: - * src/lib/sample_buffer.cpp: - * src/soundgenerators/audio_file_processor.cpp: - added support for saving sample-rate-conversion-state in m_pluginData - of a note which fixes bug making clicks in sound when playing a sample - simultanously at different pitches - - * configure.in: - check whether compiler knows floorf and powf and if not, define them - to floor/pow - -2005-07-04 Tobias Doerffel - - * most files: - made LMMS compiling (and working) with Qt 3.0, GCC 2.95 and other old - libs (compiled it under Knoppix 3.1) - - * include/misc.h: - changed names of abs, min, max, limit to myAbs, myMin etc. for not - conflicting with functions of STL with the same name - - * configure.in: - * src/lib/sample_buffer.cpp: - added support for versions of libsndfile < 1.0.11 since API has changed - in libsndfile 1.0.11 - -2005-07-03 Tobias Doerffel - - * resources/control_env_amount_active.png: - * resources/control_env_amount_inactive.png: - * include/envelope_and_lfo_widget.h: - * src/core/envelope_and_lfo_widget.cpp: - it's now possible to control the amount of an envelope with the - according LFO by toggling new button (otherwise the level of the LFO is - added to the level of the envelope as it always has been) - - * src/core/envelope_and_lfo_widget.cpp: - now you can toggle the amount of an envelope/LFO between 0 and 1 by - clicking on according graph - - * all files: - updated mail-address in header - - * src/audio/audio_device.cpp: - always use SURROUND_CHANNELS as channel-count for libsrc since - resampling is done on surround-buffers - fixes bug which was - responsible for producing useless noise when exporting file in - high-quality-mode - - * src/core/export_song_dialog.cpp: - made "high-quality-mode"-switch working (disabled for some reason - in 0.0.9...) - - * src/core/mixer.cpp: - when restoring audio-device, also restore quality-level - - * include/bb_editor.h: - * src/core/bb_editor.cpp: - cleaned up a lot because there was still much code from times when - the track-technology didn't exist and which isn't now used any more - - * src/audio/audio_alsa.cpp: - added support for 48 KHz soundcards - -2005-07-02 Tobias Doerffel - - * configure.in: - * src/lib/sample_buffer.cpp: - made it possible to compile LMMS without SDL_sound, reorganized - sample-decoding and added libsndfile- and libvorbis-support - - * include/midi_time.h: - added operators "=", "+=", "-=" and implemented copy-ctor - - * include/piano_roll.h: - made currentPattern() a const method and added validPattern() - - * src/tracks/pattern.cpp: - optimized addNote() function which uses m_note.push_back() for notes - beyond last note - - * src/core/piano_roll.cpp: - * src/tracks/pattern.cpp: - when pattern is destroyed it checks whether it is currently opened in - piano-roll and if so pattern lets piano-roll set its pointer to current - pattern to NULL. piano-roll does now always check whether current - pattern is not NULL. in this case it denies any actions. fixes bug which - led to crash when having piano-roll open while deleting pattern (e.g. - creating new file, opening file etc.) - -2005-07-01 Tobias Doerffel - - * all files: - replaced "location" in names of functions/variables by "position" - for more clear and unified names - - * include/piano_roll.h: - * include/timeline.h: - * src/core/piano_roll.cpp: - * src/core/timeline.cpp: - added support for autoscroll in piano-roll when playing/recording - pattern - -2005-06-30 Tobias Doerffel - - * include/channel_track.h: - * include/midi_device.h - * include/mixer.h: - * include/pattern.h: - * src/core/piano_roll.cpp: - * src/midi/midi_device.cpp: - * src/tracks/channel_track.cpp: - added support for recording notes from MIDI-device (e.g. MIDI-keyboard - or virtual channel-piano) in a pattern using the piano-roll - - * include/pattern.h - * src/core/song_editor.cpp: - fixed bug which led to crash: when pattern was played in non-looping - mode song-editor always called pattern::finishFreeze() even if there - actually was no pattern-freezing-process -> added isFreezing() which - is called by song-editor for checking whether pattern is being freezed - before calling finishFreeze() - - * src/core/lmms_main_win.cpp: - * src/lib/sample_buffer.cpp: - when showing open-file-dialog, use QFileDialog::selectedFiles()[0] - instead of QFileDialog::selectedFile() because selectedFile() returns - incorrect file-name if user clicked on the file and then on - "Open"-button instead of double-clicking file - - * src/audio/audio_oss.cpp: - * src/soundgenerators/triple_oscillator.cpp: - * src/tracks/channel_track.cpp: - added #include for solving problems with undeclared - functions getenv() and rand() on some distributions (e.g Slackware) - - * src/core/track.cpp: - * src/soundgenerators/triple_oscillator.cpp: - * src/tracks/channel_track.cpp: - added missing #include "debug.h" for solving problems with undeclared - assert() because of not included assert.h - -2005-06-29 Tobias Doerffel - - * configure.in: - * include/audio_sdl.h: - * src/lib/sample_buffer.cpp: - if SDL/SDL.h does not exist, search for it in SDL10, SDL11 etc. and - include according headers in source-files (solves problems on FreeBSD) - - * README: - updated everything a bit... - -2005-06-28 Tobias Doerffel - - * include/envelope_tab_widget.h: - * src/core/envelope_tab_widget.cpp: - use button instead of knob for turning filter on/off - -2005-06-27 Tobias Doerffel - - * samples/effects/Makefile.am: - don't install effect-samples into directory of basses-samples - diff --git a/README b/README index 00f4d80cb..5969f40c2 100644 --- a/README +++ b/README @@ -1,10 +1,10 @@ -LMMS 0.9.92 +LMMS 1.0.93 =========== Copyright (c) 2004-2014 by LMMS developers -This program is free software; you can redistribute it and/or modify +This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. @@ -90,16 +90,12 @@ you're welcome to participate on the development of LMMS! The project-homepage of LMMS, mailingslists and a list of things you can do can be found at -http://lmms.sourceforge.net +http://lmms.io/ -Details on development can be found at +Details on development can be found in the Wiki: -http://lmms.sourceforge.net/development.php - -or in the Wiki: - -http://lmms.sourceforge.net/wiki/ +https://github.com/LMMS/lmms/wiki Before coding a new big feature, please ALWAYS post your idea and suggestions about your feature and about the intended implementation to the diff --git a/README.md b/README.md index a76d20354..0f75b000e 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,19 @@ -Linux MultiMedia Studio +![LMMS Logo](http://lmms.sourceforge.net/Lmms_logo.png) LMMS ======================= [![Build Status](https://travis-ci.org/LMMS/lmms.png)](https://travis-ci.org/LMMS/lmms) What is LMMS? -------------- -LMMS is a free cross-platform alternative to commercial programs like FL Studio (R), which allow you to produce music with your computer. This includes the creation of melodies and beats, the synthesis and mixing of sounds, and arranging of samples. You can have fun with your MIDI-keyboard and much more; all in a user-friendly and modern interface. +LMMS is a free cross-platform alternative to commercial programs like FL Studio®, which allow you to produce music with your computer. This includes the creation of melodies and beats, the synthesis and mixing of sounds, and arranging of samples. You can have fun with your MIDI-keyboard and much more; all in a user-friendly and modern interface. +[Homepage](http://lmms.sf.net)
+[Downloads/Releases](https://github.com/LMMS/lmms/releases)
+[Developer Wiki](https://github.com/LMMS/lmms/wiki)
+[Artist & User Wiki/Documentation](http://lmms.sourceforge.net/wiki/index.php/Main_Page) This still has some useful pages.
+[Screenshots](http://lmms.io/screenshots/)
+[Sound Demos](http://lmms.io/showcase/)
+[LMMS Sharing Platform](http://lmms.io/lsp/) Share your songs! Features --------- @@ -18,8 +25,15 @@ Features * 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 -* Import of MIDI and FLP (Fruityloops(R) Project) files +* Import of MIDI and FLP (FL Studio®/Fruityloops® Project) files +[Latest Stable Release (1.0.3)](https://github.com/LMMS/lmms/releases/tag/v1.0.3) +--------------------- +* Fix zyn GUI crash on win32 +* Fix SF2 note volume +* Localization updates +* Updated LADSPA search paths +* Bugfixes in plugins Building --------- diff --git a/cmake/modules/FindWine.cmake b/cmake/modules/FindWine.cmake index 0a349cb25..a665a46e2 100644 --- a/cmake/modules/FindWine.cmake +++ b/cmake/modules/FindWine.cmake @@ -8,7 +8,8 @@ # FIND_PATH(WINE_INCLUDE_DIR windows/windows.h PATH_SUFFIXES wine) -FIND_LIBRARY(WINE_LIBRARY NAMES wine) +FIND_LIBRARY(WINE_LIBRARY NAMES wine PATH_SUFFIXES wine) +FIND_PROGRAM(WINE_CXX NAMES wineg++) set(WINE_INCLUDE_DIRS ${WINE_INCLUDE_DIR} ) set(WINE_LIBRARIES ${WINE_LIBRARY} ) diff --git a/data/CMakeLists.txt b/data/CMakeLists.txt index e385d2f13..d762f619b 100644 --- a/data/CMakeLists.txt +++ b/data/CMakeLists.txt @@ -4,6 +4,8 @@ ADD_SUBDIRECTORY(presets) ADD_SUBDIRECTORY(projects) ADD_SUBDIRECTORY(samples) ADD_SUBDIRECTORY(themes) +ADD_SUBDIRECTORY(wavetables) +ADD_SUBDIRECTORY(scripts) IF(LMMS_BUILD_LINUX) INSTALL(FILES themes/default/icon.png DESTINATION "${DATA_DIR}/pixmaps" RENAME lmms.png) @@ -17,3 +19,6 @@ IF(LMMS_BUILD_WIN32) INSTALL(FILES ${RAWWAVES} DESTINATION "${DATA_DIR}/stk/rawwaves") ENDIF(LMMS_BUILD_WIN32) +IF(LMMS_BUILD_APPLE) + CONFIGURE_FILE("${CMAKE_SOURCE_DIR}/data/lmms.plist.in" "${CMAKE_INSTALL_PREFIX}/Info.plist") +ENDIF(LMMS_BUILD_APPLE) diff --git a/data/dmg_branding.png b/data/dmg_branding.png new file mode 100644 index 000000000..f971453b1 Binary files /dev/null and b/data/dmg_branding.png differ diff --git a/data/lmms b/data/lmms index cd921eaa5..274886185 100644 --- a/data/lmms +++ b/data/lmms @@ -1,4 +1,4 @@ ?package(lmms):needs="X11" section="Apps/Sound" \ title="LMMS" hints="Audio" command="/usr/bin/lmms" \ - longtitle="Linux MultiMedia Studio" \ + longtitle="LMMS" \ icon="/usr/share/pixmaps/lmms.png" diff --git a/data/lmms.desktop b/data/lmms.desktop index c374b7e66..aad1005bd 100644 --- a/data/lmms.desktop +++ b/data/lmms.desktop @@ -1,12 +1,12 @@ [Desktop Entry] -Name=Linux MultiMedia Studio +Name=LMMS GenericName=music production suite GenericName[ca]=Programari de producció musical GenericName[de]=Software zur Musik-Produktion Comment=easy music production for everyone! Comment[ca]=Producció fàcil de música per a tothom! Icon=lmms -Exec=lmms +Exec=env QT_X11_NO_NATIVE_MENUBAR=1 lmms Terminal=false Type=Application Categories=Qt;AudioVideo;Audio;Midi; diff --git a/data/lmms.icns b/data/lmms.icns new file mode 100644 index 000000000..e54187b5c Binary files /dev/null and b/data/lmms.icns differ diff --git a/data/lmms.plist.in b/data/lmms.plist.in new file mode 100644 index 000000000..d5fcf7e2b --- /dev/null +++ b/data/lmms.plist.in @@ -0,0 +1,147 @@ + + + + + + CFBundleDevelopmentRegion + English + + CFBundleIconFile + @MACOSX_BUNDLE_ICON_FILE@ + + CFBundlePackageType + APPL + + CFBundleGetInfoString + @MACOSX_BUNDLE_GUI_IDENTIFIER@ @MACOSX_BUNDLE_LONG_VERSION_STRING@ + + + CFBundleSignature + @MACOSX_BUNDLE_GUI_IDENTIFIER@ + + CFBundleExecutable + @MACOSX_BUNDLE_GUI_IDENTIFIER@ + + CFBundleVersion + @MACOSX_BUNDLE_LONG_VERSION_STRING@ + + CFBundleShortVersionString + @MACOSX_BUNDLE_LONG_VERSION_STRING@ + + CFBundleName + @MACOSX_BUNDLE_BUNDLE_NAME@ + + CFBundleInfoDictionaryVersion + 6.0 + + CFBundleIdentifier + @MACOSX_BUNDLE_MIMETYPE_ID@ + + CFBundleDocumentTypes + + + + CFBundleTypeExtensions + + mmpz + + CFBundleTypeIconFile + @MACOSX_BUNDLE_MIMETYPE_ICON@ + CFBundleTypeName + @MACOSX_BUNDLE_GUI_IDENTIFIER@ Project + CFBundleTypeOSTypes + + mmpz + + CFBundleTypeRole + Editor + CFBundleTypeMIMETypes + + @MACOSX_BUNDLE_MIMETYPE@ + + + + + CFBundleTypeExtensions + + mmp + + CFBundleTypeIconFile + @MACOSX_BUNDLE_MIMETYPE_ICON@ + CFBundleTypeName + @MACOSX_BUNDLE_GUI_IDENTIFIER@ Project (uncompressed) + CFBundleTypeOSTypes + + mmp + + CFBundleTypeRole + Editor + CFBundleTypeMIMETypes + + @MACOSX_BUNDLE_MIMETYPE@ + + + + + + UTExportedTypeDeclarations + + + UTTypeIdentifier + @MACOSX_BUNDLE_MIMETYPE_ID@.mmpz + UTTypeReferenceURL + @MACOSX_BUNDLE_PROJECT_URL@ + UTTypeDescription + @MACOSX_BUNDLE_GUI_IDENTIFIER@ Project + UTTypeIconFile + @MACOSX_BUNDLE_MIMETYPE_ICON@ + UTTypeConformsTo + + public.data + + UTTypeTagSpecification + + public.filename-extension + + mmpz + + + + + + UTTypeIdentifier + @MACOSX_BUNDLE_MIMETYPE_ID@.mmp + UTTypeReferenceURL + @MACOSX_BUNDLE_PROJECT_URL@ + UTTypeDescription + @MACOSX_BUNDLE_GUI_IDENTIFIER@ Project (uncompressed) + UTTypeIconFile + @MACOSX_BUNDLE_MIMETYPE_ICON@ + UTTypeConformsTo + + public.xml + public.data + + UTTypeTagSpecification + + public.filename-extension + + mmp + + + + + + diff --git a/data/lmms.png b/data/lmms.png new file mode 100644 index 000000000..ae9fe6a2a Binary files /dev/null and b/data/lmms.png differ diff --git a/data/locale/ca.qm b/data/locale/ca.qm index b84bc4bde..20b626418 100644 Binary files a/data/locale/ca.qm and b/data/locale/ca.qm differ diff --git a/data/locale/ca.ts b/data/locale/ca.ts index 54936274e..7707fdfc2 100644 --- a/data/locale/ca.ts +++ b/data/locale/ca.ts @@ -7,10 +7,6 @@ About LMMS - - LMMS (Linux MultiMedia Studio) - - Version %1 (%2/%3, Qt %4, %5) @@ -49,6 +45,64 @@ If you're interested in translating LMMS in another language or want to imp <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + LMMS + + + + + AmplifierControlDialog + + VOL + VOL + + + Volume: + Volum: + + + PAN + PAN + + + Panning: + Panorama: + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + Volum + + + Panning + Panorama + + + Left gain + + + + Right gain + + AudioAlsa::setupWidget @@ -79,14 +133,6 @@ If you're interested in translating LMMS in another language or want to imp If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Si actives aquest botó, la mostra sencera serà invertida. Això és útil per a efectes interessants, p.e. un xoc invertit. - - Loop sample at start- and end-point - Bucle entre punts inicial i final - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - - Amplify: Amplificar: @@ -99,18 +145,10 @@ If you're interested in translating LMMS in another language or want to imp Startpoint: Punt inicial: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Endpoint: Punt final: - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Continue sample playback across notes @@ -119,6 +157,42 @@ If you're interested in translating LMMS in another language or want to imp 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. + + AudioFileProcessorWaveView @@ -365,6 +439,10 @@ If you're interested in translating LMMS in another language or want to imp Drag a control while pressing <Ctrl> + + Model is already connected to this pattern. + + AutomationPatternView @@ -396,6 +474,10 @@ If you're interested in translating LMMS in another language or want to imp Disconnect "%1" Desconnecta "%1" + + Set/clear record + + AutomationTrack @@ -404,6 +486,59 @@ If you're interested in translating LMMS in another language or want to imp + + BassBoosterControlDialog + + FREQ + FREQ + + + Frequency: + Freqüència: + + + GAIN + GUANY + + + Gain: + Guany: + + + RATIO + PROPORCIÓ + + + Ratio: + Proporció: + + + + BassBoosterControls + + Frequency + Freqüència + + + Gain + Guany + + + Ratio + Proporció + + + + CarlaInstrumentView + + Show GUI + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + Controller @@ -516,6 +651,132 @@ If you're interested in translating LMMS in another language or want to imp &Ajuda + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + Passa-Baixa + + + HiPass + Passa-Alta + + + BandPass csg + Passa-Banda csg + + + BandPass czpg + Passa-Banda czpg + + + Notch + Osca + + + Allpass + Passa-Tot + + + Moog + Moog + + + 2x LowPass + 2x Passa-Baixa + + + RC LowPass 12dB + + + + RC BandPass 12dB + + + + RC HighPass 12dB + + + + RC LowPass 24dB + + + + RC BandPass 24dB + + + + RC HighPass 24dB + + + + Vocal Formant Filter + + + Effect @@ -880,6 +1141,10 @@ Right clicking will bring up a context menu where you can change the order in wh Drag a sample from somewhere and drop it in this window. Arrossega una mostra d'on sigui i amolla-la en aquesta finestra. + + Click here for random wave. + + ExportProjectDialog @@ -1007,14 +1272,6 @@ Right clicking will bring up a context menu where you can change the order in wh 8x - - Sample-exact controllers - - - - Alias-free oscillators - - Start @@ -1028,6 +1285,77 @@ Right clicking will bring up a context menu where you can change the order in wh + + FileBrowser + + Browser + + + + + 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... + + + + --- Factory files --- + + + + + 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 + + + + &Help + &Ajuda + + FxMixer @@ -1053,6 +1381,9 @@ Right clicking will bring up a context menu where you can change the order in wh FX-Mixer Mesclador FX + + + FxMixerView::FxChannelView FX Fader %1 @@ -1066,6 +1397,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + FxRoute + + Amount to send from channel %1 to channel %2 + + + InstrumentFunctionArpeggio @@ -1124,6 +1462,10 @@ Right clicking will bring up a context menu where you can change the order in wh Sync Sinc + + Down and up + + InstrumentFunctionArpeggioView @@ -1566,6 +1908,18 @@ Right clicking will bring up a context menu where you can change the order in wh Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + + InstrumentFunctionNoteStackingView @@ -1628,6 +1982,18 @@ Right clicking will bring up a context menu where you can change the order in wh NOTE + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + InstrumentSoundShaping @@ -1774,6 +2140,10 @@ Right clicking will bring up a context menu where you can change the order in wh cutoff frequency: + + Envelopes, LFOs and filters are not supported by the current instrument. + + InstrumentTrack @@ -1859,10 +2229,6 @@ Right clicking will bring up a context menu where you can change the order in wh GENERAL SETTINGS CONFIGURACIÓ GENERAL - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - Pica aquí si vols desar la configuració del canal actual en una plantilla. Més tard podràs carregar aquesta plantilla picant-la dos cops al navegador de plantilles. - Instrument volume Volum d'instrument @@ -1935,10 +2301,6 @@ Right clicking will bring up a context menu where you can change the order in wh PLUGIN CONN - - Save current channel settings in a preset-file - - Pitch range (semitones) @@ -1947,6 +2309,14 @@ Right clicking will bring up a context menu where you can change the order in wh RANGE RANG + + 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. + + LadspaControl @@ -1992,6 +2362,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + LcdSpinBox + + Please enter a new value between %1 and %2: + Per favor, introdueix un nou valor entre %1 i %2: + + LfoController @@ -2353,10 +2730,6 @@ Per favor, visita http://lmms.sf.net/wiki per a documentació sobre LMMS.LMMS (*.mmp *.mmpz) - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - - Version %1 @@ -2377,6 +2750,22 @@ Per favor, visita http://lmms.sf.net/wiki per a documentació sobre LMMS.Error while parsing configuration file at line %1:%2: %3 + + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + + MeterDialog @@ -2493,6 +2882,647 @@ Per favor, visita http://lmms.sf.net/wiki per a documentació sobre LMMS.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 + + + + + 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. + + + + + 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 + Volum mestre + + + Vibrato + Vibrat + OscillatorObject @@ -2536,6 +3566,10 @@ Per favor, visita http://lmms.sf.net/wiki per a documentació sobre LMMS.Osc %1 waveform Forma d'ona d'osc %1 + + Osc %1 harmonic + + PatmanView @@ -2584,6 +3618,39 @@ Per favor, visita http://lmms.sf.net/wiki per a documentació sobre LMMS.Fitxers Pedaç (*.pat) + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + pica dos cops per a obrir aquest patró al rotlle de piano +usa la roda del ratolí per a ajustar el volum d'un pas + + + Open in piano-roll + Obre al rotlle de piano + + + Clear all notes + Esborra totes les notes + + + Reset name + Restaura nom + + + Change name + Canvia nom + + + Add steps + Afegeix passos + + + Remove steps + Elimina passos + + PeakController @@ -2684,6 +3751,189 @@ Per favor, visita http://lmms.sf.net/wiki per a documentació sobre LMMS. + + PianoRoll + + Cut selected notes (Ctrl+X) + Talla les notes seleccionades (Ctrl+X) + + + Copy selected notes (Ctrl+C) + Copia les notes seleccionades (Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + Enganxa notes des del portapapers (Ctrl+V) + + + Play/pause current pattern (Space) + Reprodueix/pausa el patró actual (Espai) + + + Stop playing of current pattern (Space) + Atura la reproducció del patró actual (Espai) + + + Piano-Roll - no pattern + Rotlle de Piano - sense patró + + + Please open a pattern by double-clicking on it! + Per favor, obre un patró picant-lo dos cops! + + + Piano-Roll - %1 + Rotlle de Piano - %1 + + + Record notes from MIDI-device/channel-piano + Enregistra notes des d'un dispositiu MIDI o piano de canal + + + Last note + Darrera nota + + + Draw mode (Shift+D) + Mode dibuixar (Maj+D) + + + Erase mode (Shift+E) + Mode esborrar (Maj+E) + + + Select mode (Shift+S) + Mode seleccionar (Maj+S) + + + Record notes from MIDI-device/channel-piano while playing song or BB track + Enregistra notes des d'un dispositiu MIDI o piano de canal mentre es reprodueix la cançó o pista RB + + + 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. + + + + 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. + + + + Note lock + + + + Note Volume + + + + Note Panning + + + + 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 Ctrl 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 Ctrl 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. + + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + + + + No scale + + + + No chord + + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + Per favor, introdueix un nou valor entre %1 i %2: + + PianoView @@ -2710,6 +3960,10 @@ Reason: "%2" Failed to load plugin "%1"! + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2856,6 +4110,10 @@ Reason: "%2" File: Fitxer: + + File: %1 + + SampleBuffer @@ -2863,10 +4121,6 @@ Reason: "%2" Open audio file Obre fitxer d'àudio - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Tots els Fitxers d'Àudio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Wave-Files (*.wav) Fitxers WAV (*.wav) @@ -2887,10 +4141,6 @@ Reason: "%2" SPEEX-Files (*.spx) Fitxers SPEEX (*.spx) - - MP3-Files (*.mp3) - Fitxers MP3 (*.mp3) - VOC-Files (*.voc) Fitxers VOC (*.voc) @@ -2907,6 +4157,10 @@ Reason: "%2" RAW-Files (*.raw) Fitxers RAW (*.raw) + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + SampleTCOView @@ -2965,6 +4219,152 @@ Reason: "%2" VOL + + SongEditor + + Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. + Pica aquí si vols aturar la reproducció de la cançó. El marcador de posició de cançó serà col·locat a l'inici de la cançó. + + + Could not open file + No es pot obrir el fitxer + + + Could not write file + No es pot escriure el fitxer + + + Song-Editor + Editor de Cançó + + + 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. + Pica aquí si vols reproduir la cançó sencera. La reproducció començarà al marcador de posició de cançó (verd). També pots moure'l mentre es reprodueix. + + + Play song (Space) + Reprodueix cançó (Espai) + + + Stop song (Space) + Atura cançó (Espai) + + + Add beat/bassline + Afegeix ritme base + + + Add sample-track + Afegeix pista de mostra + + + Draw mode + Mode dibuixar + + + Edit mode (select and move) + Mode editar (selecciona i mou) + + + Add automation-track + Afegeix pista d'automatització + + + Record samples from Audio-device + + + + Record samples from Audio-device while playing song or BB track + + + + 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/BPM + + + tempo of song + tempo de cançó + + + 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 alta qualitat + + + Master volume + Volum mestre + + + master volume + volum mestre + + + Master pitch + To mestre + + + master pitch + to mestre + + + 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. + + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + Espectre lineal + + + Linear Y axis + Eix Y lineal + + + + SpectrumAnalyzerControls + + Linear spectrum + Espectre lineal + + + Linear Y axis + Eix Y lineal + + + Channel mode + Mode del canal + + TempoSyncKnob @@ -3411,20 +4811,6 @@ Per favor, assegura't que tens permís de lectura per al fitxer i el direct Loading plugin Carregant connector - - Please wait while loading VST-plugin... - Per favor, espera mentre es carrega el connector VST... - - - Failed loading VST-plugin - Ha fallat la càrrega del connector VST - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - El connector VST %1 no s'ha pogut carregar per alguna raó. -Si funciona amb altre programari VST sota Linux, per favor contacta amb un desenvolupador de LMMS! - Open Preset @@ -3465,6 +4851,268 @@ Si funciona amb altre programari VST sota Linux, per favor contacta amb un desen .fxb + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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 + 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 + + ZynAddSubFxInstrument @@ -3590,55 +5238,33 @@ Si funciona amb altre programari VST sota Linux, per favor contacta amb un desen Reverse sample Inverteix mostra - - Loop - Bucle - Stutter - - - bassBoosterControlDialog - FREQ - FREQ + Loopback point + - Frequency: - Freqüència: + Loop mode + Mode Bucle - GAIN - GUANY + Interpolation mode + - Gain: - Guany: + None + - RATIO - PROPORCIÓ + Linear + - Ratio: - Proporció: - - - - bassBoosterControls - - Frequency - Freqüència - - - Gain - Guany - - - Ratio - Proporció + Sinc + @@ -3698,6 +5324,10 @@ Si funciona amb altre programari VST sota Linux, per favor contacta amb un desen Change color Canvia color + + Reset color to default + + bbTrack @@ -3792,6 +5422,120 @@ Si funciona amb altre programari VST sota Linux, per favor contacta amb un desen + + 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 + + + exportProjectDialog @@ -3828,40 +5572,6 @@ Per favor, assegura't que tens permís d'escriptura per al fitxer i el Per favor, introdueix un nou valor entre %1 i %2: - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - - - graphModel @@ -3879,18 +5589,46 @@ Per favor, assegura't que tens permís d'escriptura per al fitxer i el End frequency Freqüència final - - Decay - Decaïment - - - Distortion - Distorsió - Gain Guany + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + kickerInstrumentView @@ -3902,18 +5640,38 @@ Per favor, assegura't que tens permís d'escriptura per al fitxer i el End frequency: Freqüència final: - - Decay: - Decaïment: - - - Distortion: - Distorsió: - Gain: Guany: + + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: + + knob @@ -4200,6 +5958,38 @@ Fent doble clic a qualsevol connector mostrarà informació sobre els ports.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 @@ -4794,14 +6584,30 @@ Fent doble clic a qualsevol connector mostrarà informació sobre els ports.Osc %1 panning: Panorama d'osc %1: - - Osc %1 fine detuning left: - Desafinament fi esquerre 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 + + + + Osc %1 harmonic: + + papuInstrument @@ -5069,216 +6875,6 @@ Fent doble clic a qualsevol connector mostrarà informació sobre els ports. - - pattern - - Cannot freeze pattern - No es pot congelar el patró - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - El patró no es pot congelar ara mateix perquè estàs en mode de reproducció. Per favor, atura i torna-ho a provar! - - - - patternFreezeStatusDialog - - Freezing pattern... - Congelant patró... - - - Cancel - Cancel·la - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - pica dos cops per a obrir aquest patró al rotlle de piano -usa la roda del ratolí per a ajustar el volum d'un pas - - - Open in piano-roll - Obre al rotlle de piano - - - Clear all notes - Esborra totes les notes - - - Reset name - Restaura nom - - - Change name - Canvia nom - - - Refreeze - Recongela - - - Freeze - Congela - - - Unfreeze - Descongela - - - Add steps - Afegeix passos - - - Remove steps - Elimina passos - - - - PianoRoll - - Cut selected notes (Ctrl+X) - Talla les notes seleccionades (Ctrl+X) - - - Copy selected notes (Ctrl+C) - Copia les notes seleccionades (Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - Enganxa notes des del portapapers (Ctrl+V) - - - Play/pause current pattern (Space) - Reprodueix/pausa el patró actual (Espai) - - - Stop playing of current pattern (Space) - Atura la reproducció del patró actual (Espai) - - - Piano-Roll - no pattern - Rotlle de Piano - sense patró - - - Please open a pattern by double-clicking on it! - Per favor, obre un patró picant-lo dos cops! - - - Piano-Roll - %1 - Rotlle de Piano - %1 - - - Record notes from MIDI-device/channel-piano - Enregistra notes des d'un dispositiu MIDI o piano de canal - - - Last note - Darrera nota - - - Draw mode (Shift+D) - Mode dibuixar (Maj+D) - - - Erase mode (Shift+E) - Mode esborrar (Maj+E) - - - Select mode (Shift+S) - Mode seleccionar (Maj+S) - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Enregistra notes des d'un dispositiu MIDI o piano de canal mentre es reprodueix la cançó o pista RB - - - 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. - - - - 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. - - - - Note lock - - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser @@ -5297,10 +6893,6 @@ usa la roda del ratolí per a ajustar el volum d'un pas Filter for importing MIDI-files into LMMS Filtre per a importar fitxers MIDI a LMMS - - three powerful oscillators you can modulate in several ways - tres potents oscil·ladors que pots modular de vàries maneres - VST-host for using VST(i)-plugins within LMMS servidor VST per a usar connectors VST(i) amb LMMS @@ -5313,10 +6905,6 @@ usa la roda del ratolí per a ajustar el volum d'un pas Additive Synthesizer for organ-like sounds Sintetitzador Additiu per a sons com d'orgue - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - mostrejador simple amb diferents paràmetres per a usar mostres (p.e. bateria) en una pista d'instrument - Tuneful things to bang on Coses melòdiques per a fer soroll @@ -5325,14 +6913,6 @@ usa la roda del ratolí per a ajustar el volum d'un pas plugin for using arbitrary LADSPA-effects inside LMMS. connector per a usar efectes LADSPA arbitraris a LMMS. - - plugin for using arbitrary VST-effects inside LMMS. - connector per a usar efectes VST arbitraris a LMMS. - - - versatile kick- & bassdrum-synthesizer - sintetitzador versàtil de guitza & bombo - GUS-compatible patch instrument Instrument de pedaç compatible GUS @@ -5353,10 +6933,6 @@ usa la roda del ratolí per a ajustar el volum d'un pas Plugin for freely manipulating stereo output Connector per a manipular lliurement la sortida estèreo - - plugin for boosting bass - connector per a augmentar el baix - Plugin for controlling knobs with sound peaks Connector per a controlar rodes amb pics de so @@ -5402,6 +6978,62 @@ This chip was used in the Commodore 64 computer. 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 + + projectNotes @@ -6100,152 +7732,6 @@ Latència: %2 ms - - SongEditor - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Pica aquí si vols aturar la reproducció de la cançó. El marcador de posició de cançó serà col·locat a l'inici de la cançó. - - - Could not open file - No es pot obrir el fitxer - - - Could not write file - No es pot escriure el fitxer - - - Song-Editor - Editor de Cançó - - - 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. - Pica aquí si vols reproduir la cançó sencera. La reproducció començarà al marcador de posició de cançó (verd). També pots moure'l mentre es reprodueix. - - - Play song (Space) - Reprodueix cançó (Espai) - - - Stop song (Space) - Atura cançó (Espai) - - - Add beat/bassline - Afegeix ritme base - - - Add sample-track - Afegeix pista de mostra - - - Draw mode - Mode dibuixar - - - Edit mode (select and move) - Mode editar (selecciona i mou) - - - Add automation-track - Afegeix pista d'automatització - - - Record samples from Audio-device - - - - Record samples from Audio-device while playing song or BB track - - - - 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/BPM - - - tempo of song - tempo de cançó - - - 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 alta qualitat - - - Master volume - Volum mestre - - - master volume - volum mestre - - - Master pitch - To mestre - - - master pitch - to mestre - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - Espectre lineal - - - Linear Y axis - Eix Y lineal - - - - spectrumAnalyzerControls - - Linear spectrum - Espectre lineal - - - Linear Y-axis - Eix Y lineal - - - Channel mode - Mode del canal - - stereoEnhancerControlDialog @@ -6432,6 +7918,18 @@ Latència: %2 ms Solo Solo + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + vestigeInstrument @@ -6766,4 +8264,74 @@ El LED a la cantonada dreta baixa de l'editor de forma d'ona determina + + 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 + + Input gain + + + + Output gain + + + diff --git a/data/locale/cs.qm b/data/locale/cs.qm index e98c77b81..b45aa4455 100644 Binary files a/data/locale/cs.qm and b/data/locale/cs.qm differ diff --git a/data/locale/cs.ts b/data/locale/cs.ts index c31bb0953..c14753662 100644 --- a/data/locale/cs.ts +++ b/data/locale/cs.ts @@ -5,15 +5,11 @@ AboutDialog About LMMS - - - - LMMS (Linux MultiMedia Studio) - + O LMMS Version %1 (%2/%3, Qt %4, %5) - + Verze %1 (%2/%3, Qt %4, %5) About @@ -21,15 +17,15 @@ LMMS - easy music production for everyone - + LMMS - jednoduchá hudební produkce pro každého Authors - + AutoÅ™i Translation - + PÅ™eklad Current language not translated (or native English). @@ -39,14 +35,72 @@ If you're interested in translating LMMS in another language or want to imp License - + Licence Copyright (c) 2004-2014, LMMS developers - + Copyright (c) 2004-2014, vývojáři <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + + LMMS + LMMS + + + + AmplifierControlDialog + + VOL + VOL + + + Volume: + Hlasitost: + + + PAN + + + + Panning: + + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + Hlasitost + + + Panning + + + + Left gain + + + + Right gain @@ -69,7 +123,7 @@ If you're interested in translating LMMS in another language or want to imp 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. - + Kliknutím sem můžete otevřít jiný audio soubor. Ukáže se dialog, pomocí kterého si soubor můžete vybrat. Nastavení jako režim smyÄkování, poÄáteÄní a koncové body, hodnota zesílení apod. zůstanou stejná, takže to nemusí znít jako původní sampl. Reverse sample @@ -77,15 +131,7 @@ If you're interested in translating LMMS in another language or want to imp 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 napÅ™. pozpátku pÅ™ehraná srážka. - - - Loop sample at start- and end-point - SmyÄka od poÄáteÄního ke koncovému bodu - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - + 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. Amplify: @@ -93,30 +139,58 @@ If you're interested in translating LMMS in another language or want to imp 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 ovladaÄem můžete nastavit pomÄ›r zesílení. Pokud nastavíte hodnotu 100%, sampl se nezmÄ›ní. Jinak se zesílí nebo ztiší (soubor samplu se tím vůbec nezmÄ›ní!) Startpoint: PoÄáteÄní bod: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Endpoint: Koncový bod: - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Continue sample playback across notes - + PÅ™ehrávat sampl napÅ™Ã­Ä tóny Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) + Povolení této možnosti způsobí, že se sampl bude pÅ™ehrávat pÅ™es různé tóny - pokud zmÄ›níte ladÄ›ní (pitch), nebo když tón skonÄí pÅ™ed koncem samplu, tak bude další pÅ™ehrávaný tón pokraÄovat kde pÅ™estal. Pro obnovení pÅ™ehrávání na zaÄátek samplu, vložte tón do spodní Äásti kláves (< 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. @@ -124,7 +198,7 @@ If you're interested in translating LMMS in another language or want to imp AudioFileProcessorWaveView Sample length: - + Délka samplu: @@ -237,11 +311,11 @@ If you're interested in translating LMMS in another language or want to imp Remove song-global automation - + Odebrat obecnou automatizaci Remove all linked controls - + Odebrat vÅ¡echny propjené ovladaÄe @@ -256,7 +330,7 @@ If you're interested in translating LMMS in another language or want to imp 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. - KliknÄ›te zde, pokud chcete pÅ™ehrát aktuální pattern. To je Å¡ikovné pÅ™i editaci neboÅ¥ pattern je automaticky pÅ™ehráván ve smyÄce. + KliknÄ›te zde, pokud chcete pÅ™ehrát aktuální pattern. To je Å¡ikovné pÅ™i editaci, neboÅ¥ pattern je automaticky pÅ™ehráván ve smyÄce. Click here if you want to stop playing of the current pattern. @@ -324,39 +398,39 @@ If you're interested in translating LMMS in another language or want to imp Discrete progression - + OddÄ›lený vývoj Linear progression - + Lineární vývoj Cubic Hermite progression - + Cubic Hermite vývoj Tension: - + NapÄ›tí: 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. - + Kliknutím sem vyberete oddÄ›lený vývoj pro tento automatizaÄní pattern. Hodnota pÅ™ipojeného objektu zůstane konstantní mezi ovládacími body a okamžitÄ› nastavena na novou hodnotu když se dosáhne každé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. - + Kliknutím sem vyberete lineární vývoj pro tento automatizaÄní pattern. Hodnota pÅ™ipojeného objektu se zmÄ›ní ve stabilní frekvenci mezi ovládacími body, 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. - + Kliknutím sem vyberte cubic hermite vývoj pro tento automatizaÄní pattern. Hodnota pÅ™ipojeného objektu se zmÄ›ní po plynulé kÅ™ivce a lehce pÅ™ejde do vrchních a spodních bodů. Tension value for spline - + Hodnota napÄ›tí pro 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. - + VÄ›tší hodnota napÄ›tí vytvoří plynulejší kÅ™ivku ale pÅ™ekroÄí nÄ›které hodnoty. Malá hodnota napÄ›tí způsobí vyrovnání sklonu kÅ™ivky na každém ovládacím bodÄ›. @@ -365,6 +439,10 @@ If you're interested in translating LMMS in another language or want to imp Drag a control while pressing <Ctrl> OvladaÄ táhni pÅ™i stisknutém <CTRL> + + Model is already connected to this pattern. + + AutomationPatternView @@ -396,6 +474,10 @@ If you're interested in translating LMMS in another language or want to imp Disconnect "%1" Odpojit "%1" + + Set/clear record + Nastav/vyÄisti záznam + AutomationTrack @@ -404,6 +486,59 @@ If you're interested in translating LMMS in another language or want to imp AutomatizaÄní stopa + + BassBoosterControlDialog + + FREQ + + + + Frequency: + Frekvence: + + + GAIN + + + + Gain: + Zisk: + + + RATIO + POMÄšR + + + Ratio: + PomÄ›r: + + + + BassBoosterControls + + Frequency + Frekvence + + + Gain + Zisk + + + Ratio + PomÄ›r + + + + CarlaInstrumentView + + Show GUI + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + Controller @@ -482,11 +617,11 @@ If you're interested in translating LMMS in another language or want to imp Confirm Delete - + Potvrdit Smazání Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. - + Opravdu smazat? Tento kontrolér má jedno nebo více existujících pÅ™ipojení. Tento krok nelze vrátit zpÄ›t. @@ -513,6 +648,132 @@ If you're interested in translating LMMS in another language or want to imp &Help + NápovÄ›da + + + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 @@ -524,7 +785,7 @@ If you're interested in translating LMMS in another language or want to imp Wet/Dry mix - + Wet/Dry mix Gate @@ -532,7 +793,7 @@ If you're interested in translating LMMS in another language or want to imp Decay - + Doznívání @@ -561,7 +822,7 @@ If you're interested in translating LMMS in another language or want to imp Plugin description - + Popis pluginu @@ -580,15 +841,15 @@ If you're interested in translating LMMS in another language or want to imp Wet Level: - + Wet Hodnota: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - + Wet/Dry ovladaÄ nastavuje pomÄ›r mezi vstupním signálem a signálem efektu, který formuje výstup. DECAY - + DOZNÃVÃNà Time: @@ -596,7 +857,7 @@ If you're interested in translating LMMS in another language or want to imp 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. - + OvladaÄ Doznívání ovládá, kolik bufferů ticha musí projít pÅ™ed tím, než plugin pÅ™estane zpracovávat. Menší hodnoty zredukují využití CPU, ale můžou způsobit uříznutí ozvÄ›n. GATE @@ -644,7 +905,7 @@ Right clicking will bring up a context menu where you can change the order in wh &Help - + NápovÄ›da @@ -663,7 +924,7 @@ Right clicking will bring up a context menu where you can change the order in wh Decay - + Doznívání Sustain @@ -750,7 +1011,7 @@ Right clicking will bring up a context menu where you can change the order in wh Decay: - + Doznívání: 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. @@ -880,6 +1141,10 @@ Right clicking will bring up a context menu where you can change the order in wh 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Ä›. + + Click here for random wave. + + ExportProjectDialog @@ -1007,14 +1272,6 @@ Right clicking will bring up a context menu where you can change the order in wh 8x - - Sample-exact controllers - - - - Alias-free oscillators - - Start @@ -1028,6 +1285,77 @@ Right clicking will bring up a context menu where you can change the order in wh + + FileBrowser + + Browser + + + + + 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... + + + + --- Factory files --- + + + + + 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 + + + + &Help + + + FxMixer @@ -1053,6 +1381,9 @@ Right clicking will bring up a context menu where you can change the order in wh FX-Mixer FX-Mixer + + + FxMixerView::FxChannelView FX Fader %1 @@ -1066,6 +1397,13 @@ Right clicking will bring up a context menu where you can change the order in wh Ztlumit tento FX kanál + + FxRoute + + Amount to send from channel %1 to channel %2 + + + InstrumentFunctionArpeggio @@ -1124,6 +1462,10 @@ Right clicking will bring up a context menu where you can change the order in wh Sync Synchronizovaný + + Down and up + + InstrumentFunctionArpeggioView @@ -1566,6 +1908,18 @@ Right clicking will bring up a context menu where you can change the order in wh Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + + InstrumentFunctionNoteStackingView @@ -1628,6 +1982,18 @@ Right clicking will bring up a context menu where you can change the order in wh NOTE + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + InstrumentSoundShaping @@ -1641,19 +2007,19 @@ Right clicking will bring up a context menu where you can change the order in wh CUTOFF - + SEŘÃZNUTà Cutoff frequency - + Frekvence seříznutí RESO - + REZO Resonance - + Rezonance Envelopes/LFOs @@ -1756,7 +2122,7 @@ Right clicking will bring up a context menu where you can change the order in wh RESO - + REZO Resonance: @@ -1774,6 +2140,10 @@ Right clicking will bring up a context menu where you can change the order in wh cutoff frequency: + + Envelopes, LFOs and filters are not supported by the current instrument. + + InstrumentTrack @@ -1859,10 +2229,6 @@ Right clicking will bring up a context menu where you can change the order in wh GENERAL SETTINGS HLAVNà NASTAVENà - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - - Instrument volume Hlasitost nástroje @@ -1935,10 +2301,6 @@ Right clicking will bring up a context menu where you can change the order in wh PLUGIN PLUGIN - - Save current channel settings in a preset-file - - Pitch range (semitones) @@ -1947,6 +2309,14 @@ Right clicking will bring up a context menu where you can change the order in wh RANGE ROZSAH + + 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. + + LadspaControl @@ -1992,6 +2362,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + LcdSpinBox + + Please enter a new value between %1 and %2: + Vložte prosím novou hodnotu mezi %1 a %2: + + LfoController @@ -2341,22 +2718,10 @@ NavÅ¡tivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w Root directory - - Save as new &version - - - - E&xport tracks... - - LMMS (*.mmp *.mmpz) - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - - Version %1 @@ -2377,6 +2742,30 @@ NavÅ¡tivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w Error while parsing configuration file at line %1:%2: %3 + + Volumes + + + + Save as new &version + + + + E&xport tracks... + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + + MeterDialog @@ -2493,6 +2882,647 @@ NavÅ¡tivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w 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 + + + + + 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. + + + + + 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 + Hlavní hlasitost + + + Vibrato + Vibráto + OscillatorObject @@ -2536,6 +3566,10 @@ NavÅ¡tivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w Osc %1 waveform Osc %1 vlna + + Osc %1 harmonic + + PatmanView @@ -2584,6 +3618,39 @@ NavÅ¡tivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w Patch-Soubory (*.pat) + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + dvojitým kliknutím otevÅ™ete tento pattern v piano-roll +k nastavení zesílení kroku použijte koleÄko myÅ¡i + + + Open in piano-roll + Otevřít v piano-roll + + + Clear all notes + VyÄistit vÅ¡echny noty + + + Reset name + Resetovat jméno + + + Change name + ZmÄ›nit jméno + + + Add steps + PÅ™idat kroky + + + Remove steps + Odstranit kroky + + PeakController @@ -2684,6 +3751,189 @@ NavÅ¡tivte prosím stránku s dokumentací k LMMS na adrese http://lmms.sf.net/w + + PianoRoll + + Play/pause current pattern (Space) + PÅ™ehrát nebo pozastavit pÅ™ehrávání aktuálního patternu (mezerník) + + + Record notes from MIDI-device/channel-piano + Nahrávat noty z MIDI-zařízení/piano kanálu + + + Stop playing of current pattern (Space) + Zastavit pÅ™ehrávání aktuálního patternu (mezerník) + + + 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) + + + Cut selected notes (Ctrl+X) + Vyjmout oznaÄené noty (Ctrl+X) + + + Copy selected notes (Ctrl+C) + Kopírovat oznaÄené noty (Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + Vložit noty ze schránky (Ctrl+V) + + + Last note + Trvání noty + + + Piano-Roll - no pattern + Piano-Roll - žádný pattern + + + Piano-Roll - %1 + Piano-Roll - %1 + + + Please open a pattern by double-clicking on it! + OtevÅ™ete prosím pattern jeho dvojitým poklepáním! + + + Record notes from MIDI-device/channel-piano while playing song or BB track + Nahrávat tóny z MIDI zařízení / kanálu piána pÅ™i pÅ™ehrávání skladby nebo BB stopy + + + Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. + KliknÄ›te zde, pokud chcete pÅ™ehrát aktuální pattern. To je Å¡ikovné pÅ™i editaci. Pattern 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. + KliknÄ›te zde pokud chcete nahrávat z MIDI zařízení nebo virtuálního testovacího piána přísluÅ¡ného kanálového okna do aktuálního patternu. PÅ™i nahrávání zaznamenáte vÅ¡echny zahrané noty do tohoto patternu, následnÄ› si 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. + KliknÄ›te zde pokud chcete nahrávat z MIDI zařízení nebo virtuálního testovacího piána přísluÅ¡ného kanálového okna do aktuálního patternu. PÅ™i nahrávání zaznamenáte vÅ¡echny zahrané noty do tohoto patternu a na pozadí uslyšíte skladbu nebo BB stopu. + + + Click here to stop playback of current pattern. + KliknÄ›te zde, pokud chcete zastavit pÅ™ehrávání aktuálního patternu. + + + 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. + KliknÄ›te zde pokud chcete oznaÄené noty vyjmout a uložit do schránky. Vložit je pak můžete kdekoliv v libovolném patternu 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. + KliknÄ›te zde pokud chcete oznaÄené noty zkopírovat do schránky. Vložit je pak můžete kdekoliv v libovolného patternu pomocí tlaÄítka Vložit. + + + Click here and the notes from the clipboard will be pasted at the first visible measure. + Kliknete-li zde, budou noty ze schránky vloženy do prvního viditelného taktu. + + + Note lock + Zámek noty + + + Note Volume + + + + Note Panning + + + + 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 Ctrl 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 Ctrl 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. + + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + + + + No scale + + + + No chord + + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + Vložte prosím novou hodnotu mezi %1 a %2: + + PianoView @@ -2711,6 +3961,10 @@ Důvod: "%2" Failed to load plugin "%1"! NaÄtení pluginu "%1" selhalo! + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2857,6 +4111,10 @@ Důvod: "%2" In Place Broken: + + File: %1 + + SampleBuffer @@ -2864,10 +4122,6 @@ Důvod: "%2" Open audio file Otevřít audio soubor - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - VÅ¡echny audio soubory (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Wave-Files (*.wav) Wav soubory (*.wav) @@ -2888,10 +4142,6 @@ Důvod: "%2" SPEEX-Files (*.spx) SPEEX soubory (*.spx) - - MP3-Files (*.mp3) - MP3 soubory (*.mp3) - VOC-Files (*.voc) VOC soubory (*.voc) @@ -2908,6 +4158,10 @@ Důvod: "%2" RAW-Files (*.raw) RAW soubory (*.raw) + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + SampleTCOView @@ -2966,6 +4220,153 @@ Důvod: "%2" VOL + + SongEditor + + Song-Editor + Editor skladby + + + Play song (Space) + PÅ™ehrát skladbu (mezerník) + + + Stop song (Space) + Zastavit pÅ™ehrávání skladby (mezerník) + + + Add beat/bassline + PÅ™idat beat/bassline + + + Add sample-track + PÅ™idat stopu samplů + + + Draw mode + Režim kreslení + + + Edit mode (select and move) + Režim editace (oznaÄit a pÅ™esunout) + + + 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. + KliknÄ›te zde, 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. + KliknÄ›te zde, pokud chcete zastavit pÅ™ehrávání skladby. OznaÄovaÄ pozice bude odeslán na zaÄátek skladby. + + + Could not open file + Nemohu otevřít soubor + + + Could not write file + Nemohu zapsat soubor + + + Add automation-track + PÅ™idat automatizaÄní stopu + + + 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 BB stopy + + + 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át oprávnÄ›ní alespoň Äíst tento soubor a zkuste to znovu. + + + Error in file + Chyba v souboru + + + The file %1 seems to contain errors and therefore can't be loaded. + Soubor %1 nejspíše obsahuje chyby a nemohl být naÄten. + + + 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 (BPS). Chcete-li zmÄ›nit tempo skladby, změňte tuto hodnotu. Každý takt má ÄtyÅ™i beaty, takže tempo v BPS 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 + Hlavní ladÄ›ní (pitch) + + + master pitch + hlavní ladÄ›ní + + + Value: %1% + Hodnota: %1% + + + Value: %1 semitones + Hodnota: %1 půltónů + + + 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. + + + + 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 + + TempoSyncKnob @@ -3049,7 +4450,7 @@ Důvod: "%2" TimeDisplayWidget click to change time units - + kliknutí zmÄ›ní Äasové jednotky @@ -3412,20 +4813,6 @@ PÅ™esvÄ›dÄte se prosím, že máte právo ke Ätení tohoto souboru a příslu Loading plugin NaÄítám plugin - - Please wait while loading VST-plugin... - Prosím Äekejte dokud se nenaÄte VST plugin... - - - Failed loading VST-plugin - Chyba naÄítání VST pluginu - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - VST plugin %1 nemohl být z urÄitých důvodů naÄten. -Jestliže tento plugin funguje v Linuxu v jiném VST softwaru, kontaktujte prosím LMMS vývojáře! - Open Preset @@ -3466,6 +4853,268 @@ Jestliže tento plugin funguje v Linuxu v jiném VST softwaru, kontaktujte pros .fxb + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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 + Normalizovat + + + Click to normalize + + + + Invert + + + + Click to invert + + + + Smooth + Uhladit + + + Click to smooth + + + + Sine wave + Sinusová vlna + + + Click for sine wave + + + + Triangle wave + Trianglová vlna + + + Click for triangle wave + + + + Click for saw wave + + + + Square wave + Pravoúhlá (square) vlna + + + Click for square wave + + ZynAddSubFxInstrument @@ -3579,10 +5228,6 @@ Jestliže tento plugin funguje v Linuxu v jiném VST softwaru, kontaktujte pros Reverse sample PÅ™ehrávat pozpátku - - Loop - SmyÄka - Amplify Zesílení @@ -3599,47 +5244,29 @@ Jestliže tento plugin funguje v Linuxu v jiném VST softwaru, kontaktujte pros Stutter - - - bassBoosterControlDialog - Frequency: - Frekvence: - - - Gain: - Zisk: - - - RATIO - POMÄšR - - - Ratio: - PomÄ›r: - - - FREQ + Loopback point - GAIN + Loop mode + Režim smyÄky + + + Interpolation mode - - - bassBoosterControls - Frequency - Frekvence + None + - Gain - Zisk + Linear + - Ratio - PomÄ›r + Sinc + @@ -3699,6 +5326,10 @@ Jestliže tento plugin funguje v Linuxu v jiném VST softwaru, kontaktujte pros Change color ZmÄ›nit barvu + + Reset color to default + + bbTrack @@ -3793,6 +5424,120 @@ Jestliže tento plugin funguje v Linuxu v jiném VST softwaru, kontaktujte pros KliknÄ›te zde pro uživatelem definovaný tvar. + + 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 + + + exportProjectDialog @@ -3829,40 +5574,6 @@ PÅ™esvÄ›dÄte se prosím, že máte právo zápisu do tohoto souboru a příslu Vložte prosím novou hodnotu mezi %1 a %2: - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - - - graphModel @@ -3880,16 +5591,44 @@ PÅ™esvÄ›dÄte se prosím, že máte právo zápisu do tohoto souboru a příslu End frequency KoneÄná frekvence - - Distortion - Zkreslení - Gain Zisk - Decay + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note @@ -3903,16 +5642,36 @@ PÅ™esvÄ›dÄte se prosím, že máte právo zápisu do tohoto souboru a příslu End frequency: KoneÄná frekvence: - - Distortion: - Zkreslení: - Gain: Zisk: - Decay: + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: @@ -4127,7 +5886,7 @@ Dvojitým kliknutím na kterýkoli z modulů se zobrazí informace o portech. Decay: - + Doznívání: 303-es-que, 24dB/octave, 3 pole filter @@ -4201,6 +5960,38 @@ Dvojitým kliknutím na kterýkoli z modulů se zobrazí informace o portech.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 @@ -4277,7 +6068,7 @@ Dvojitým kliknutím na kterýkoli z modulů se zobrazí informace o portech. Decay: - + Doznívání: DEC @@ -4796,11 +6587,27 @@ Dvojitým kliknutím na kterýkoli z modulů se zobrazí informace o portech.Osc %1 panorama: - Osc %1 fine detuning left: - Osc %1 jemné rozladÄ›ní vlevo: + 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: @@ -5070,216 +6877,6 @@ Dvojitým kliknutím na kterýkoli z modulů se zobrazí informace o portech. - - pattern - - Cannot freeze pattern - Nemohu zmrazit pattern - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - Pattern nemůže být nyní zmrazen, neboÅ¥ jste v režimu pÅ™ehrávání. Zastavte pÅ™ehrávání a zkuste to znovu! - - - - patternFreezeStatusDialog - - Freezing pattern... - Zmrazuji pattern... - - - Cancel - ZruÅ¡it - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - dvojitým kliknutím otevÅ™ete tento pattern v piano-roll -k nastavení zesílení kroku použijte koleÄko myÅ¡i - - - Open in piano-roll - Otevřít v piano-roll - - - Clear all notes - VyÄistit vÅ¡echny noty - - - Reset name - Resetovat jméno - - - Change name - ZmÄ›nit jméno - - - Refreeze - Znovu zmrazit - - - Freeze - Zmrazit - - - Unfreeze - Rozmrazit - - - Add steps - PÅ™idat kroky - - - Remove steps - Odstranit kroky - - - - PianoRoll - - Play/pause current pattern (Space) - PÅ™ehrát nebo pozastavit pÅ™ehrávání aktuálního patternu (mezerník) - - - Record notes from MIDI-device/channel-piano - Nahrávat noty z MIDI-zařízení/piano kanálu - - - Stop playing of current pattern (Space) - Zastavit pÅ™ehrávání aktuálního patternu (mezerník) - - - 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) - - - Cut selected notes (Ctrl+X) - Vyjmout oznaÄené noty (Ctrl+X) - - - Copy selected notes (Ctrl+C) - Kopírovat oznaÄené noty (Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - Vložit noty ze schránky (Ctrl+V) - - - Last note - Trvání noty - - - Piano-Roll - no pattern - Piano-Roll - žádný pattern - - - Piano-Roll - %1 - Piano-Roll - %1 - - - Please open a pattern by double-clicking on it! - OtevÅ™ete prosím pattern jeho dvojitým poklepáním! - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Nahrávat tóny z MIDI zařízení / kanálu piána pÅ™i pÅ™ehrávání skladby nebo BB stopy - - - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - KliknÄ›te zde, pokud chcete pÅ™ehrát aktuální pattern. To je Å¡ikovné pÅ™i editaci. Pattern 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. - KliknÄ›te zde pokud chcete nahrávat z MIDI zařízení nebo virtuálního testovacího piána přísluÅ¡ného kanálového okna do aktuálního patternu. PÅ™i nahrávání zaznamenáte vÅ¡echny zahrané noty do tohoto patternu, následnÄ› si 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. - KliknÄ›te zde pokud chcete nahrávat z MIDI zařízení nebo virtuálního testovacího piána přísluÅ¡ného kanálového okna do aktuálního patternu. PÅ™i nahrávání zaznamenáte vÅ¡echny zahrané noty do tohoto patternu a na pozadí uslyšíte skladbu nebo BB stopu. - - - Click here to stop playback of current pattern. - KliknÄ›te zde, pokud chcete zastavit pÅ™ehrávání aktuálního patternu. - - - 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. - KliknÄ›te zde pokud chcete oznaÄené noty vyjmout a uložit do schránky. Vložit je pak můžete kdekoliv v libovolném patternu 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. - KliknÄ›te zde pokud chcete oznaÄené noty zkopírovat do schránky. Vložit je pak můžete kdekoliv v libovolného patternu pomocí tlaÄítka Vložit. - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - Kliknete-li zde, budou noty ze schránky vloženy do prvního viditelného taktu. - - - Note lock - Zámek noty - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser @@ -5290,26 +6887,14 @@ k nastavení zesílení kroku použijte koleÄko myÅ¡i Instrument plugins Pluginy nástrojů - - plugin for using arbitrary VST-effects inside LMMS. - plugin pro užití libovolných VST efektů uvnitÅ™ LMMS. - Filter for importing MIDI-files into LMMS Filtr pro import MIDI souborů do LMMS - - three powerful oscillators you can modulate in several ways - tÅ™i výkonné oscilátory které můžete modulovat rozliÄnými způsoby - GUS-compatible patch instrument GUS kompatibilní patch instrument - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - jednoduchý sampler s rozmanitým nastavením pro použití samplů (napÅ™. bicích) v nástrojové stopÄ› - Additive Synthesizer for organ-like sounds Aditivní syntezátor pro zvuky podobné varhanám @@ -5318,10 +6903,6 @@ k nastavení zesílení kroku použijte koleÄko myÅ¡i Plugin for enhancing stereo separation of a stereo input file Plugin pro zvýšení stereo separace vstupních stereo souborů - - versatile kick- & bassdrum-synthesizer - mnohostranný kick & bassdrum syntezátor - Vibrating string modeler VibraÄní modelátor strun @@ -5379,10 +6960,6 @@ This chip was used in the Commodore 64 computer. Player for SoundFont files - - plugin for boosting bass - - Emulation of GameBoy (TM) APU @@ -5403,6 +6980,62 @@ This chip was used in the Commodore 64 computer. 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 + + projectNotes @@ -5700,35 +7333,35 @@ ZpoždÄ›ní %2 ms One instrument track window mode - + Režim jedné stopy pro nástroje 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í waveformu ve výchozím nastavení Smooth scroll in Song Editor - + Plynulé posouvání v Song Editoru Enable auto save feature - + Povolit automatické ukládání Show playback cursor in AudioFileProcessor - + Zobrazit pÅ™ehrávací kurzor v AudioFileProcessoru @@ -5884,7 +7517,7 @@ ZpoždÄ›ní %2 ms Resonance - + Rezonance Voice 3 off @@ -5951,7 +7584,7 @@ ZpoždÄ›ní %2 ms Decay: - + Doznívání: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. @@ -6101,152 +7734,6 @@ ZpoždÄ›ní %2 ms - - SongEditor - - Song-Editor - Editor skladby - - - Play song (Space) - PÅ™ehrát skladbu (mezerník) - - - Stop song (Space) - Zastavit pÅ™ehrávání skladby (mezerník) - - - Add beat/bassline - PÅ™idat beat/bassline - - - Add sample-track - PÅ™idat stopu samplů - - - Draw mode - Režim kreslení - - - Edit mode (select and move) - Režim editace (oznaÄit a pÅ™esunout) - - - 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. - KliknÄ›te zde, 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. - KliknÄ›te zde, pokud chcete zastavit pÅ™ehrávání skladby. OznaÄovaÄ pozice bude odeslán na zaÄátek skladby. - - - Could not open file - Nemohu otevřít soubor - - - Could not write file - Nemohu zapsat soubor - - - Add automation-track - PÅ™idat automatizaÄní stopu - - - 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 BB stopy - - - 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/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 (BPS). Chcete-li zmÄ›nit tempo skladby, změňte tuto hodnotu. Každý takt má ÄtyÅ™i beaty, takže tempo v BPS 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 - Hlavní ladÄ›ní (pitch) - - - master pitch - hlavní ladÄ›ní - - - Value: %1% - Hodnota: %1% - - - Value: %1 semitones - Hodnota: %1 půltónů - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - spectrumAnalyzerControls - - Linear spectrum - - - - Linear Y-axis - - - - Channel mode - - - stereoEnhancerControlDialog @@ -6433,6 +7920,18 @@ ZpoždÄ›ní %2 ms Solo Sólo + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + vestigeInstrument @@ -6751,4 +8250,74 @@ The LED in the lower right corner of the waveform editor determines whether the + + 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 + + Input gain + + + + Output gain + + + diff --git a/data/locale/de.qm b/data/locale/de.qm index 0d300fb4e..400a71aa5 100644 Binary files a/data/locale/de.qm and b/data/locale/de.qm differ diff --git a/data/locale/de.ts b/data/locale/de.ts index dd11a5f2a..e4544eacc 100644 --- a/data/locale/de.ts +++ b/data/locale/de.ts @@ -7,10 +7,6 @@ About LMMS Über LMMS - - LMMS (Linux MultiMedia Studio) - LMMS (Linux MultiMedia Studio) - Version %1 (%2/%3, Qt %4, %5) Version %1 (%2/%3, Qt %4, %5) @@ -35,7 +31,9 @@ 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. + 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 @@ -43,11 +41,69 @@ If you're interested in translating LMMS in another language or want to imp Copyright (c) 2004-2014, LMMS developers - Copyright (c) 2004-2012, LMMS-Entwickler {2004-2014,?} + Copyright (c) 2004-2014, LMMS-Entwickler - <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> - + LMMS + LMMS + + + <html><head/><body><p><a href="http://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.io</span></a></p></body></html> + <html><head/><body><p><a href="http://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.io</span></a></p></body></html> + + + + AmplifierControlDialog + + 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 @@ -77,15 +133,7 @@ If you're interested in translating LMMS in another language or want to imp If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - Wenn Sie diesen Button aktivieren, wird das gesamte Sample umgekehrt. Das kann nützlich für coole Effekte sein, wie z.B. eine umgekehrte Crash. - - - Loop sample at start- and end-point - Sample an Start- und Endpunkt wiederholen - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - Hier können Sie festlegen, ob der Looping-Modus aktiviert sein soll. Wenn aktiviert, wiederholt AudioFileProcessor das Sample zwischen Start- und Endpunkt solange, bis die gesamte Note gespielt ist. Das ist vorallem für String- und Chor-Samples nützlich. + 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: @@ -93,38 +141,66 @@ If you're interested in translating LMMS in another language or want to imp 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 Knopf 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!) + 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: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Mit diesem Knopf können Sie festlegen, wo AudioFileProcessor anfangen soll, Ihr Sample zu spielen. Wenn Sie den Looping-Modus aktivieren, ist das der Punkt, wohin AudioFileProcessor zurückkehrt, wenn eine Note länger als das Sample zwischen Start- und Endpunkt ist. - Endpoint: Endpunkt: - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Mit diesem Knopf können Sie festlegen, wo AudioFileProcessor aufhören soll, Ihr Sample zu spielen. Wenn Sie den Looping-Modus aktivieren, ist das der Punkt, an dem AudioFileProcessor zum Startpunkt zurückkehrt, wenn eine Note länger als das Sample zwischen Start- und Endpunkt ist. - 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: @@ -237,11 +313,11 @@ If you're interested in translating LMMS in another language or want to imp Remove song-global automation - + Song-globale Automation entfernen Remove all linked controls - + Alle verknüpften Controller entfernen @@ -264,19 +340,19 @@ If you're interested in translating LMMS in another language or want to imp Draw mode (Shift+D) - Zeichnen-Modus (Umschalt+D) + Zeichnenmodus (Umschalt+D) Erase mode (Shift+E) - Radier-Modus (Umschalt+E) + Radiermodus (Umschalt+E) 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 Zeichnen-Modus 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. + 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 Radier-Modus 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. + 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. Cut selected values (Ctrl+X) @@ -292,11 +368,11 @@ If you're interested in translating LMMS in another language or want to imp 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-Button klicken. + 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-Button klicken. + 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. @@ -324,39 +400,39 @@ If you're interested in translating LMMS in another language or want to imp Discrete progression - + Diskretes Fortschreiten Linear progression - + Lineares Fortschreiten Cubic Hermite progression - + Kubisches, hermetisches Fortschrieten Tension: - + Spannung: 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. 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 möglicherweise eine nahtlosere Kurve, aber überschwingt einige Werte. Ein niedrigerer Spannungswert wird ein Abfallen und dann Abflachen der Kurve an jedem Kontrollpunkt verursachen. @@ -365,6 +441,10 @@ If you're interested in translating LMMS in another language or want to imp Drag a control while pressing <Ctrl> Ein Steuerelement mit <Strg> hier her ziehen + + Model is already connected to this pattern. + Modell ist bereits mit diesem Pattern verbunden. + AutomationPatternView @@ -394,7 +474,11 @@ If you're interested in translating LMMS in another language or want to imp Disconnect "%1" - "%1" trennen + »%1« trennen + + + Set/clear record + Aufnahme setzen/löschen @@ -404,6 +488,59 @@ If you're interested in translating LMMS in another language or want to imp Automation-Spur + + BassBoosterControlDialog + + FREQ + FREQ + + + Frequency: + Frequenz: + + + GAIN + GAIN + + + Gain: + Verstärkung: + + + RATIO + RATIO + + + Ratio: + Verhältnis: + + + + BassBoosterControls + + Frequency + Frequenz + + + Gain + Verstärkung + + + Ratio + Verhältnis + + + + 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 @@ -482,11 +619,11 @@ If you're interested in translating LMMS in another language or want to imp Confirm Delete - + Löschen bestätigen Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. - + Löschen bestätigen? Es bestehen Verbindungen, die an diesen Controller angeschlossen sind. Es gibt keine Möglichkeit dies rückgängig zu machen. @@ -497,7 +634,7 @@ If you're interested in translating LMMS in another language or want to imp Controllers are able to automate the value of a knob, slider, and other controls. - Mit Controller können Sie den Wert eines Knopfes, Schiebereglers und anderer Steuerelemente automatisieren. + Mit Controller können Sie den Wert eines Reglers, Schiebereglers und anderer Steuerelemente automatisieren. Rename controller @@ -511,9 +648,131 @@ If you're interested in translating LMMS in another language or want to imp &Remove this plugin Plugin entfe&rnen + + + DualFilterControlDialog - &Help - &Hilfe + 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 + + + + 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 @@ -584,7 +843,7 @@ If you're interested in translating LMMS in another language or want to imp The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - Der Wet/Dry-Knopf legt das Verhältnis zwischen Eingangssignal und vom Effekt bearbeiteten Signal im Ausgang fest. + Der Wet/Dry-Regler legt das Verhältnis zwischen Eingangssignal und vom Effekt bearbeiteten Signal im Ausgang fest. DECAY @@ -596,7 +855,7 @@ If you're interested in translating LMMS in another language or want to imp 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-Knopf 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. + Der Abfallzeit-Regler legt fest, wie viele Puffer mit Stille durchgelaufen sein müssen, bis der Effekt mit der Verarbeitung stoppt. Kleinere Werte reduzieren die CPU-Last, können jedoch unter Umständen das Ende von Delay-Effekten o.ä. abschneiden. GATE @@ -608,7 +867,7 @@ If you're interested in translating LMMS in another language or want to imp The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - Der Gate-Knopf legt die Stärke des Signals fest, welches als Stille angesehen wird, um zu entscheiden, wann das Plugin mit der Verarbeitung aufhören kann. + Der Gate-Regler legt die Stärke des Signals fest, welches als »Stille« angesehen wird, um zu entscheiden, wann das Plugin mit der Verarbeitung aufhören soll. Controls @@ -628,7 +887,19 @@ The Gate knob controls the 'given threshold' for the effect's aut The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - + Effektplugins funktionieren als eine Aneinanderreihung von Effekten, wo das Signal von oben nach unter verarbeitet wird. + +Der Ein-/Ausschalter ermöglicht es Ihnen ein Plugin jeder Zeit zu umgehen. + +Der Wet/Dry-Regler legt das Verhältnis zwischen Eingangssignal und vom Effekt bearbeiteten Signal im Ausgang fest. Der Eingag dieses Effekts ist der Ausgang des vorherigen Effekts. Somit enthält das »dry«-Signal, für Effekte weiter unten in der Kette, alle vorherigen Effekte. + +Der Abfallzeit-Regler legt fest, wie lange das Signal weiterverarbeitet werden soll, nachdem die Noten losgelassen wurde. Der Effekt hört auf Signale zu verarbeiten, wenn die Lautstärke eines Signals für eine festgelegte Zeit unter einen festgelegten Schwellwert gefallen ist. Dieser Regler legt die »festgelegte Zeit« fest. Längere Zeiten brauchen mehr Rechenleistung, deshalb sollte diese Zahl für die meisten Effekte niedrig sein. Es muss für Effekte, die über längere Zeit Stille erzeugen, z.B. Verzögerungen, erhöht werden. + +Der Gate-Regler kontrolliert den »festgelegten Schwellwert« für das automatische Ausschalten des Effekts. Die Uhr für die »festgelegte Zeit« beginnt sobald der Pegel des verarbeiteten Signals unter den mit diesem Knopf festgelegten Pegel fällt. + +Der Regler-Knopf öffnet einen Dialog zum Bearbeiten der Parameter des Effekts. + +Ein Recktsklick öffnet ein Kontextmenü, in dem Sie die Reihenfolge der Effekte ändern oder einen Effekt entfernen können. Move &up @@ -642,10 +913,6 @@ Right clicking will bring up a context menu where you can change the order in wh &Remove this plugin Plugin entfe&rnen - - &Help - &Hilfe - EnvelopeAndLfoParameters @@ -718,7 +985,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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. + 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. ATT @@ -730,7 +997,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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. + Benutzen Sie diesen Regler, um die Anschwellzeit (attack) für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto länger braucht die Hüllkurve, um bis zum Anschwellpegel (attack-level) zu steigen. Wählen Sie einen kleinen Wert für Instrumente wie Klavier und einen großen Wert für Streichinstrumente. HOLD @@ -742,7 +1009,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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. + Benutzen Sie diesen Regler, um die Haltezeit (hold) der aktuellen Hüllkurve zu setzen. Je größer der Wert, desto länger hält die Hüllkurve den Anschwellpegel, bevor sie zum Haltepegel (sustain-level) abfällt. DEC @@ -754,7 +1021,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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. + Benutzen Sie diesen Regler, um die Abfallzeit (decay) für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto länger braucht die Hüllkurve, um vom Anschwellpegel (attack-level) zum Dauerpegel (sustain-level) abzufallen. Wählen Sie einen kleinen Wert für Instrumente wie Klavier. SUST @@ -766,7 +1033,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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. + Benutzen Sie diesen Regler, um den Dauerpegel (sustain-level) für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto höher der Pegel, den die Hüllkurve hält, bevor sie auf Null abfällt. REL @@ -778,7 +1045,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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. + Benutzen Sie diesen Regler, um die Ausklingzeit der aktuellen Hüllkurve einzustellen. Je größer der Wert, desto länger braucht die Hüllkurve um vom Dauerpegel (sustain-level) auf Null abzufallen. Wählen Sie einen großen Wert für weiche Instrumente, wie z.B. Streicher. AMT @@ -790,7 +1057,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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. + Benutzen Sie diesen Regler, um die Modulationsintensität für die aktuelle Hüllkurve einzustellen. Je größer dieser Wert, desto mehr wird die gewählte Größe (z.B. Lautstärke oder Cutoff-Frequenz) von der Hüllkurve beeinflusst. LFO predelay: @@ -798,7 +1065,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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. + Benutzen Sie diesen Regler, um die Verzögerungszeit für den aktuellen LFO einzustellen. Je größer dieser Wert, desto länger die Zeit, bis der LFO anfängt zu schwingen. LFO- attack: @@ -806,7 +1073,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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. + Benutzen Sie diesen Regler, um die Anschwellzeit für den aktuellen LFO einzustellen. Je größer dieser Wert, desto länger dauert es, bis die Amplitude des LFOs bis zum Maximum angestiegen ist. SPD @@ -818,11 +1085,11 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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. + Benutzen Sie diesen Regler, um die Geschwindigkeit für den aktuellen LFO einzustellen. Je größer der Wert, desto schneller schwingt der LFO und desto schneller ist der entsprechende Effekt. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Benutzen Sie diesen Knopf, 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 Cuttoff-Frequenz) von diesem LFO beeinflusst. + 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 Cuttoff-Frequenz) von diesem LFO beeinflusst. Click here for a sine-wave. @@ -830,7 +1097,7 @@ Right clicking will bring up a context menu where you can change the order in wh Click here for a triangle-wave. - Klick für eine Dreieckswelle. + Klick für eine Dreieckwelle. Click here for a saw-wave for current. @@ -838,7 +1105,7 @@ Right clicking will bring up a context menu where you can change the order in wh Click here for a square-wave. - Klick für eine Rechteckswelle. + Klick für eine Rechteckwelle. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. @@ -880,6 +1147,10 @@ Right clicking will bring up a context menu where you can change the order in wh Drag a sample from somewhere and drop it in this window. Ziehen Sie ein Sample von irgendwo und lassen es in diesem Fenster fallen. + + Click here for random wave. + Klick für eine zufällige Welle. + ExportProjectDialog @@ -1007,14 +1278,6 @@ Right clicking will bring up a context menu where you can change the order in wh 8x 8x - - Sample-exact controllers - Sample-genaue Controller - - - Alias-free oscillators - Alias-freie Oszillatoren - Start Start @@ -1025,7 +1288,80 @@ Right clicking will bring up a context menu where you can change the order in wh Export as loop (remove end silence) - + Als Schleife exportieren (Stille am Ende entfernen) + + + + FileBrowser + + Browser + Browser + + + + FileBrowserTreeWidget + + Send to active instrument-track + An aktive Instrumentspur senden + + + Open in new instrument-track/Song-Editor + In neuer Instrumentspur im Song-Editor öffnen + + + 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 --- + + + + 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 @@ -1053,9 +1389,12 @@ Right clicking will bring up a context menu where you can change the order in wh FX-Mixer FX-Mixer + + + FxMixerView::FxChannelView FX Fader %1 - FX-Schieber %1 + FX Schieber %1 Mute @@ -1066,134 +1405,145 @@ Right clicking will bring up a context menu where you can change the order in wh Diesen FX-Kanal stummschalten + + FxRoute + + Amount to send from channel %1 to channel %2 + Anteil, der von Kanal %1 zu Kanal %2 gesendet werden soll + + InstrumentFunctionArpeggio Arpeggio - Arpeggio + Arpeggio Arpeggio type - Arpeggiotyp + Arpeggiotyp Arpeggio range - Arpeggio-Bereich + Arpeggio-Bereich Arpeggio time - Arpeggio-Zeit + Arpeggio-Zeit Arpeggio gate - Arpeggio-Gate + Arpeggio-Gate Arpeggio direction - Arpeggio-Richtung + Arpeggio-Richtung Arpeggio mode - Arpeggio-Modus + Arpeggio-Modus Up - Hoch + Hoch Down - Runter + Runter Up and down - Hoch und runter + Hoch und runter Random - Zufällig + Zufällig Free - Frei + Frei Sort - Sortiert + Sortiert Sync - Synchron + Synchron + + + Down and up + Hoch und runter InstrumentFunctionArpeggioView ARPEGGIO - 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, (vorallem 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. + Ein Arpeggio ist eine Art, (vorallem 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 - BEREICH + RANGE Arpeggio range: - Arpeggio-Bereich: + Arpeggio-Bereich: octave(s) - Oktave(n) + 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 Knopf, um den Arpeggio-Bereich in Oktaven zu setzen. Das gewähle Arpeggio wird innerhalb der angegebenen Anzahl von Oktaven abgespielt. + Benutzen Sie diesen Regler, um den Arpeggio-Bereich in Oktaven zu setzen. Das gewähle Arpeggio wird innerhalb der angegebenen Anzahl von Oktaven abgespielt. TIME - ZEIT + ZEIT Arpeggio time: - Arpeggio-Zeit: + Arpeggio-Zeit: 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. - Benutzen Sie diesen Knopf, um die Arpeggio-Zeit in Millisekunden zu setzen. Die Arpeggio-Zeit gibt an, wie lange jeder einzelne Arpeggio-Ton gespielt werden soll. + 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 + GATE Arpeggio 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 Knopf, 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. + 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: + Richtung: Mode: - Modus: + Modus: @@ -1492,7 +1842,7 @@ Right clicking will bring up a context menu where you can change the order in wh Jap in sen - + Jap in sen Major bebop @@ -1564,14 +1914,26 @@ Right clicking will bring up a context menu where you can change the order in wh Minor - + Moll + + + Chromatic + Chromatisch + + + Half-Whole Diminished + Halbton-Ganzton-Leiter + + + 5 + 5 InstrumentFunctionNoteStackingView RANGE - BEREICH + RANGE Chord range: @@ -1583,15 +1945,15 @@ Right clicking will bring up a context menu where you can change the order in wh Use this knob for setting the chord range in octaves. The selected chord will be played within specified number of octaves. - Benutzen Sie diesen Knopf, um den Akkord-Bereich in Oktaven zu setzen. Der gewähle Akkord wird innerhalb der angegebenen Anzahl von Oktaven abgespielt. + Benutzen Sie diesen Regler, um den Akkord-Bereich in Oktaven zu setzen. Der gewähle Akkord wird innerhalb der angegebenen Anzahl von Oktaven abgespielt. STACKING - + STACKING Chord: - + Akkord: @@ -1626,7 +1988,19 @@ Right clicking will bring up a context menu where you can change the order in wh NOTE - + NOTE + + + CUSTOM BASE VELOCITY + BENUTZERDEFINIERTE GRUNDLAUTSTÄRKE + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + Geben Sie die Lautstärken-Normalisationsbasis für MIDI-basierende Instrumente bei einer Notenlautstärke von 100% an + + + BASE VELOCITY + GRUNDLAUTSTÄRKE @@ -1752,7 +2126,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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... + 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 @@ -1764,15 +2138,19 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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. + 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 + 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. @@ -1787,7 +2165,7 @@ Right clicking will bring up a context menu where you can change the order in wh Panning - Panning + Balance Pitch @@ -1803,7 +2181,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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. + Mit diesem Regler können Sie die Lautstärke des geöffneten Kanals ändern. Base note @@ -1811,7 +2189,7 @@ Right clicking will bring up a context menu where you can change the order in wh Pitch range - + Tonhöhenbereich @@ -1830,11 +2208,11 @@ Right clicking will bring up a context menu where you can change the order in wh Panning - Panning + Balance Panning: - Panning: + Balance: PAN @@ -1859,10 +2237,6 @@ Right clicking will bring up a context menu where you can change the order in wh GENERAL SETTINGS GRUNDLEGENDE EINSTELLUNGEN - - Click here, if you want to save current channel 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 Kanal-Einstellungen in einer Preset-Datei speichern wollen. Spätern können Sie dieses Preset laden, indem Sie es im Preset-Browser doppelt anklicken. - Instrument volume Instrument-Lautstärke @@ -1877,11 +2251,11 @@ Right clicking will bring up a context menu where you can change the order in wh Panning - Panning + Balance Panning: - Panning: + Balance: PAN @@ -1935,17 +2309,21 @@ Right clicking will bring up a context menu where you can change the order in wh PLUGIN PLUGIN - - Save current channel settings in a preset-file - Aktuelle Instrumenteinstellungen in einer Presetdatei speichern - Pitch range (semitones) - + Tonhöhenbereich (Halbtöne) RANGE - BEREICH + RANGE + + + Save current instrument track settings in a preset file + Aktuelle Instrumentenspur-Einstelungen 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. @@ -1992,6 +2370,13 @@ Right clicking will bring up a context menu where you can change the order in wh 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: + + LfoController @@ -2043,7 +2428,7 @@ Right clicking will bring up a context menu where you can change the order in wh todo - + Zu erledigen SPD @@ -2055,7 +2440,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, um die Geschwindigkeit des LFOs einzustellen. Je größer der Wert, desto schneller schwingt der LFO und desto schneller ist der entsprechende Effekt. + 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. AMT @@ -2067,7 +2452,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf, 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 Cuttoff-Frequenz) von diesem LFO beeinflusst. + 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 Cuttoff-Frequenz) von diesem LFO beeinflusst. PHS @@ -2083,7 +2468,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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 Knopf können Sie die Phasen-Verschiebung 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 Sinus-Welle haben und eine Phasen-Verschiebung von 180 Grad einstellen, wird die Welle zu erst runter gehen. Das gleiche trifft auch bei einer Rechteck-Welle zu. + 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. @@ -2091,7 +2476,7 @@ Right clicking will bring up a context menu where you can change the order in wh Click here for a triangle-wave. - Klick für eine Dreieckswelle. + Klick für eine Dreieckwelle. Click here for a saw-wave. @@ -2099,7 +2484,7 @@ Right clicking will bring up a context menu where you can change the order in wh Click here for a square-wave. - Klick für eine Rechteckswelle. + Klick für eine Rechteckwelle. Click here for a a moog saw-wave. @@ -2116,7 +2501,8 @@ Right clicking will bring up a context menu where you can change the order in wh 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. @@ -2359,23 +2745,35 @@ Bitte besuchen Sie http://lmms.sf.net/wiki für Dokumentationen über LMMS. Save as new &version - + Als neue &Version speichern E&xport tracks... - + Spuren E&xportieren… LMMS (*.mmp *.mmpz) - - - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - + LMMS (*.mmp *.mmpz) Version %1 - + Version %1 + + + Undo + Rückgängig + + + Redo + Wiederholen + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + LMMS Projekt (*.mmpz *.mmp);;LMMS Projektvorlage (*.mpt) + + + Volumes + Volumes @@ -2491,7 +2889,664 @@ Bitte besuchen Sie http://lmms.sf.net/wiki für Dokumentationen über LMMS. Fixed output note - + Feste Ausgangnote + + + Base velocity + Grundlautstärke + + + + 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 + Oszilator 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 + + + + MonstroView + + Operators view + Operator-Ansicht + + + Matrix view + Matrix-Ansicht + + + 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 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. + + + 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. + + + 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äng, 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äng, 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 Dauerpgel 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. + + + + 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 @@ -2518,11 +3573,11 @@ Bitte besuchen Sie http://lmms.sf.net/wiki für Dokumentationen über LMMS. Osc %1 phase-offset - Oszillator %1 Phasen-Verschiebung + Oszillator %1 Phasenverschiebung Osc %1 stereo phase-detuning - Oszillator %1 Stereo Phasen-Verschiebung + Oszillator %1 Stereo Phasenverschiebung Osc %1 wave shape @@ -2536,6 +3591,10 @@ Bitte besuchen Sie http://lmms.sf.net/wiki für Dokumentationen über LMMS.Osc %1 waveform Oszillator %1 Wellenform + + Osc %1 harmonic + Oszillator %1 Harmonie + PatmanView @@ -2584,6 +3643,39 @@ Bitte besuchen Sie http://lmms.sf.net/wiki für Dokumentationen über LMMS.Patch-Dateien (*.pat) + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + Doppelklick, um dieses Pattern im Piano-Roll zu öffnen +Lautstärke eines Schritts kann mit dem Mausrad geändert werden + + + 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 + + PeakController @@ -2592,11 +3684,11 @@ Bitte besuchen Sie http://lmms.sf.net/wiki für Dokumentationen über LMMS. Peak Controller Bug - + Peak Controller Fehler Due to a bug in older version of LMMS, the peak controllers may not be connect properly. Please ensure that peak controllers are connected properly and re-save this file. Sorry for any inconvenience caused. - + Aufgrud eines Fehlers in einer älteren Version von LMMS, sind die Peak Controller möglicherweise nicht richtig verbunden. Bitte stellen Sie sicher, dass die Peak Controller richtig verbunden sind und speichern Sie die Datei erneut. Entschuldigung für jegliche verursachte Unannehmlichkeiten. @@ -2634,23 +3726,23 @@ Bitte besuchen Sie http://lmms.sf.net/wiki für Dokumentationen über LMMS. AMNT - + AMNT MULT - + MULT Amount Multiplicator: - + Stärkenmultiplikator: ATCK - + ATCK DCAY - + DCAY @@ -2677,11 +3769,194 @@ Bitte besuchen Sie http://lmms.sf.net/wiki für Dokumentationen über LMMS. Abs Value - + Absoluter Wert Amount Multiplicator - + Stärkenmultiplikator + + + + PianoRoll + + Cut selected notes (Ctrl+X) + Ausgewählte Noten ausschneiden (Strg+X) + + + Copy selected notes (Ctrl+C) + Ausgewählte Noten kopieren (Strg+C) + + + Paste notes from clipboard (Ctrl+V) + Noten aus Zwischenablage einfügen (Strg+V) + + + Play/pause current pattern (Space) + Aktuellen Pattern abspielen/pausieren (Leertaste) + + + Stop playing of current pattern (Space) + Abspielen des aktuellen Patterns stoppen (Leertaste) + + + Piano-Roll - %1 + Piano-Roll - %1 + + + Piano-Roll - no pattern + Piano-Roll - Kein Pattern + + + Please open a pattern by double-clicking on it! + Bitte öffnen Sie einen Pattern, indem Sie ihn doppelklicken! + + + Record notes from MIDI-device/channel-piano + Noten von MIDI-Gerät/Kanal-Klavier aufnehmen + + + Last note + Letzte Note + + + Draw mode (Shift+D) + Zeichnenmodus (Umschalt+D) + + + Erase mode (Shift+E) + Radiermodus (Umschalt+E) + + + Select mode (Shift+S) + Auswahl-Modus (Umschalt+S) + + + Record notes from MIDI-device/channel-piano while playing song or BB track + Noten vom MIDI-Gerät/Kanal-Klavier aufnehmen während der Song oder BB-Track abgespielt wird + + + Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. + Klicken Sie hier, um den aktuellen Pattern abzuspielen. Das ist nützlich beim Bearbeiten. Der Pattern wird automatisch wiederholt, wenn sein Ende erreicht ist. + + + 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. + Klicken Sie hier, um Noten von einem MIDI-Gerät oder dem virtuellen Test-Klavier des zugehörigen Kanal-Fensters in den aktuellen Pattern aufzunehmen. Beim Aufnehmen werden alle Noten, die Sie spielen, in diesen Pattern geschrieben und hinterher können Sie diese abspielen und bearbeiten. + + + 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. + Klicken Sie hier, um Noten von einem MIDI-Gerät oder dem virtuellen Test-Klavier des zugehörigen Kanal-Fensters in den aktuellen Pattern aufzunehmen. Beim Aufnehmen werden alle Noten, die Sie spielen, in diesen Pattern geschrieben und Sie werden den Song oder die BB-Spur im Hintergrund hören. + + + Click here to stop playback of current pattern. + Klicken Sie hier, um die Wiedergabe des aktuellen Patterns zu stoppen. + + + 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. + Klicken Sie hier, um die markierten Noten in die Zwischenablage auszuschneiden. Sie können sie überall in einem beliebigen Pattern wieder einfügen, indem Sie auf den Einfügen-Knopf klicken. + + + 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. + Klicken Sie hier, um die markierten Noten in die Zwischenablage zu kopieren. Sie können sie überall in einem beliebigen Pattern wieder einfügen, indem Sie auf den Einfügen-Knopf klicken. + + + 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. + + + Note lock + Notenraster + + + Note Volume + Noten-Lautstärke + + + Note Panning + Noten-Balance + + + Detune mode (Shift+T) + Verstimmungsmodus (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 Ctrl to temporarily go into select mode. + Klicken Sie hier, um den Zeichnenmodus zu aktivieren. In diesem Modus können Sie Noten hinzufügen, in der Länge ändern und verschieben. Das ist der Standardmodus, der meistens benutzt wird. Sie können auch »Umschalt+D« auf Ihrer Tastatur drücken, um in diesen Modus zu gelangen. Halten Sie in diesem Modus Strg gedrückt, um vorübergehend in den Auswahlmodus zu wechslen. + + + 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. + Klicken Sie hier, um den Radiermodus zu aktivieren. In diesem Modus können Sie einzelne Noten löschen. Sie können auch »Umschalt+E« auf Ihrer Tastatur drücken, um diesen Modus zu aktivieren. + + + Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. + Klicken Sie hier, um den Auswahlmodus zu aktivieren. In diesem Modus können Sie einzelne Noten auswählen. Alternativ können Sie auch Strg im Zeichnenmodus gedrückt halten, um vorrübergehend den Auswahlmodus zu benutzen. + + + 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. + Klicken Sie hier und der Verstimmungmodus wird aktivert. In diesem Modus können Sie auf eine Note klicken, um die Automations-Verstimmung zu öffnen. Sie können diese benutzen, um von einer Note in eine andere zu rutschen. Sie können auch »Umschalt+T« auf Ihrer Tastatur drücken, um diesen Modus zu aktivieren. + + + 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 + + + Volume: %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: + + + 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. + Das »Q« steht für Quantisierung und kontrolliert die Rastergröße an denen Noten und Kontrollpunkte einrasten. Mit kleineren Quantisierungswerten können Sie kleinere Noten im Piano Roll und exaktere Kontrollpunkte im Automation-Editor eintragen. + + + 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 + Dies lässt Sie die Länge von neuen Noten auswählen. »Letzte Note« bedeutet, dass LMMS die Länge der Note benutz, die Sie als letzes bearbeitet haben. + + + 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! + Diese Funktion ist direkt mit dem Kontextmenü auf dem virtuellen Keyboard, links im Piano Roll, verbunden. Nachdem Sie die Tonleiter ausgewählt haben, die Sie im Aufklapp-Menü haben möchten, können Sie auf eine gewünschte Taste auf dem virtuellen Keyboard einen Rechtsklick machen und »Aktuelle Tonleiter markieren« auswählen. LMMS markiert dann alle Noten, die zu dieser Tonleiter und Taste gehören, die Sie ausgewählt haben! + + + 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. + Lässt Sie einen Akkord auswählen, den LMMS dann eintragen oder markieren kann. Sie können die am häufigsten benutzten Akkorde in diesem Aufklapp-Menü finden. Nachdem Sie einen Akkord ausgewählt haben, klicken Sie irgendwo hin, um den Akkord dort zu platzieren oder machen Sie einen Rechtsklick auf dem virtuellen Keyboard, um das Kontextmenü zu öffnen und den Akkord zu makieren. Um Noten wieder einzeln einzutragen, müssen Sie »Kein Akkord« in diesem Aufklapp-Menü auswählen. @@ -2700,8 +3975,8 @@ Bitte besuchen Sie http://lmms.sf.net/wiki für Dokumentationen über LMMS. The plugin "%1" wasn't found or could not be loaded! Reason: "%2" - Das Plugin "%1" konnte nicht gefunden oder geladen werden! -Grund: "%2" + Das Plugin »%1« konnte nicht gefunden oder geladen werden! +Grund: »%2« Error while loading plugin @@ -2709,7 +3984,11 @@ Grund: "%2" Failed to load plugin "%1"! - Das Plugin "%1" konnte nicht geladen werden! + Das Plugin »%1« konnte nicht geladen werden! + + + LMMS plugin %1 does not have a plugin descriptor named %2! + LMMS Plugin %1 hat keinen Plugin-Deskriptor namens %2! @@ -2728,87 +4007,87 @@ Grund: "%2" C Note name - + C Db Note name - + Db C# Note name - + C# D Note name - + D Eb Note name - + Eb D# Note name - + D# E Note name - + E Fb Note name - + Fb Gb Note name - + Gb F# Note name - + F# G Note name - + G Ab Note name - + Ab G# Note name - + G# A Note name - + A Bb Note name - + B A# Note name - + A# B Note name - + H @@ -2857,113 +4136,259 @@ Grund: "%2" File: Datei: + + File: %1 + Datei: %1 + SampleBuffer Open audio file - Audio-Datei öffnen - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Alle Audio-Dateien (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) + Audiodatei öffnen Wave-Files (*.wav) - Wave-Dateien (*.wav) + Wave-Dateien (*.wav) OGG-Files (*.ogg) - OGG-Dateien (*.ogg) + OGG-Dateien (*.ogg) DrumSynth-Files (*.ds) - DrumSynth-Dateien (*.ds) + DrumSynth-Dateien (*.ds) FLAC-Files (*.flac) - FLAC-Dateien (*.flac) + FLAC-Dateien (*.flac) SPEEX-Files (*.spx) - SPEEX-Dateien (*.spx) - - - MP3-Files (*.mp3) - MP3-Dateien (*.mp3) + SPEEX-Dateien (*.spx) VOC-Files (*.voc) - VOC-Dateien (*.voc) + VOC-Dateien (*.voc) AIFF-Files (*.aif *.aiff) - AIFF-Dateien (*.aif *.aiff) + AIFF-Dateien (*.aif *.aiff) AU-Files (*.au) - AU-Dateien (*.au) + AU-Dateien (*.au) RAW-Files (*.raw) - RAW-Dateien (*.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) SampleTCOView double-click to select sample - Doppelklick, um Sample zu wählen + Doppelklick, um Sample zu wählen Delete (middle mousebutton) - Löschen (mittlere Maustaste) + Löschen (mittlere Maustaste) Cut - Ausschneiden + Ausschneiden Copy - Kopieren + Kopieren Paste - Einfügen + Einfügen Mute/unmute (<Ctrl> + middle click) - Stumm/Laut schalten (<Strg> + Mittelklick) + Stumm/Laut schalten (<Strg> + Mittelklick) Set/clear record - Aufnahme setzen/löschen + Aufnahme setzen/löschen SampleTrack Sample track - Sample-Spur + Samplespur Volume - Lautstärke + Lautstärke SampleTrackView Track volume - Lautstärke der Spur + Lautstärke der Spur Channel volume: - Kanal Lautstärke: + Kanal Lautstärke: VOL - VOL + VOL + + + + SongEditor + + Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. + Klicken Sie hier, wenn Sie das Abspielen des Songs stoppen wollen. Der Song-Positions-Marker wird automatisch auf den Song-Anfang zurückgesetzt. + + + Could not open file + Konnte Datei nicht öffnen + + + Could not write file + Konnte Datei nicht schreiben + + + Song-Editor + Song-Editor + + + 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. + Klicken Sie hier, wenn Sie Ihren ganzen Song abspielen wollen. Das Abspielen wird am Song-Positions-Marker (grün) gestartet. Sie können diesen auch während des Abspielens verschieben. + + + Play song (Space) + Song abspielen (Leertaste) + + + Stop song (Space) + Abspielen des Songs stoppen (Leertaste) + + + Add beat/bassline + Beat/Bassline hinzufügen + + + Add sample-track + Sample-Spur hinzufügen + + + Draw mode + Zeichenmodus + + + Edit mode (select and move) + Editier-Modus (auswählen und verschieben) + + + Add automation-track + Automation-Spur hinzufügen + + + Record samples from Audio-device + Samples vom Audiogerät aufnehmen + + + Record samples from Audio-device while playing song or BB track + Samples vom Audiogerät während der Wiedergabe des Songs oder BB-Tracks aufnehmen + + + 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. + + + + 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 @@ -3008,10 +4433,6 @@ Grund: "%2" Custom... Benutzerdefiniert... - - &Help - &Hilfe - Custom Benutzerdefiniert @@ -3049,50 +4470,50 @@ Grund: "%2" TimeDisplayWidget click to change time units - + Klicken Sie hier, um die Zeiteinheit zu ändern TrackContainer Couldn't import file - Konnte Datei nicht importieren + 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. + 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 - Konnte Datei nicht öffnen + 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! - Konnte Datei %1 nicht zum Lesen öffnen. -Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeichnis besitzen und probieren es erneut! + 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... + Lade Projekt… Cancel - Abbrechen + Abbrechen Please wait... - Bitte warten... + Bitte warten… Importing MIDI-file... - Importiere MIDI-Datei... + Importiere MIDI-Datei… Importing FLP-file... - Importiere FLP-Datei... + Importiere FLP-Datei… @@ -3143,7 +4564,7 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic 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 Knopf 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. + 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: @@ -3151,7 +4572,7 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic 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 Knopf 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. + 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: @@ -3163,7 +4584,7 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. - Mit diesem Knopf können Sie die grobe Verstimmung von Oszillator %1 setzen. Sie können den Oszillator 12 Halbtöne (1 Oktave) nach oben und unten verstimmen. Das ist nützlich, wenn Sie einen Sound mit einem Akkord erstellen möchten. + Mit diesem Regler können Sie die grobe Verstimmung von Oszillator %1 setzen. Sie können den Oszillator 12 Halbtöne (1 Oktave) nach oben und unten verstimmen. Das ist nützlich, wenn Sie einen Sound mit einem Akkord erstellen möchten. Osc %1 fine detuning left: @@ -3175,7 +4596,7 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic 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 Knopf 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. + 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: @@ -3183,11 +4604,11 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic 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 Knopf 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. + 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 Phasen-Verschiebung: + Oszillator %1 Phasenverschiebung: degrees @@ -3195,15 +4616,15 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic 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 Knopf können Sie die Phasen-Verschiebung 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 Sinus-Welle haben und eine Phasen-Verschiebung von 180 Grad einstellen, wird die Welle zu erst runter gehen. Das gleiche trifft auch bei einer Rechteck-Welle zu. + 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 Phasen-Verschiebung: + 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 Knopf können Sie die Stereo Phasen-Verschiebung von Oszillator %1 setzen. Die Stereo Phasen-Verschiebung gibt die Differenz zwischen den Phasen-Verschiebungen zwischen dem linken und rechten Kanal an. Dies eignet sich gut, um großräumig-klingende Stereo-Klänge zu erzeugen. + 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. @@ -3211,7 +4632,7 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic Use a triangle-wave for current oscillator. - Dreieckswelle für aktuellen Oszillator nutzen. + Dreieckwelle für aktuellen Oszillator nutzen. Use a saw-wave for current oscillator. @@ -3219,7 +4640,7 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic Use a square-wave for current oscillator. - Rechteckswelle für aktuellen Oszillator nutzen. + Rechteckwelle für aktuellen Oszillator nutzen. Use a moog-like saw-wave for current oscillator. @@ -3242,22 +4663,22 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic Ui Contributors ordered by number of commits: - + Mitwirkende sortiert nach der Anzahl an Einreichungen: Involved - + Beteiligt VersionedSaveDialog Increment version number - + Versionsnummer erhöhen Decrement version number - + Versionsnummer vermindern @@ -3268,7 +4689,7 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic 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 Button geklickt haben, erscheint ein Datei-öffnen-Dialog und Sie können Ihre Datei wählen. + 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 @@ -3344,11 +4765,11 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic by - + von - VST plugin control - + - VST Plugin Controller @@ -3395,15 +4816,15 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic Show/hide - + Anzeigen/ausblenden Effect by: - + Effekt von: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -3412,20 +4833,6 @@ Bitte stellen Sie sicher, dass Sie Lese-Rechte auf diese Datei sowie das Verzeic Loading plugin Lade Plugin - - Please wait while loading VST-plugin... - Bitte warten, während das VST-Plugin geladen wird... - - - Failed loading VST-plugin - Laden des VST-Plugins fehlgeschlagen - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - Das VST-Plugin %1 konnte aus irgendeinem Grund nicht geladen werden. -Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitte einen LMMS-Entwickler! - Open Preset Preset öffnen @@ -3436,15 +4843,15 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt : default - + : Standard " - + " ' - + ' Save Preset @@ -3466,6 +4873,268 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt .fxb .fxb + + Please wait while loading VST plugin... + Bitte warten, während das VST-Plugin geladen wird… + + + Failed loading VST plugin + Laden des VST-Plugins fehlgeschlagen + + + The VST plugin %1 could not be loaded for some reason. + Das VST-Plugin %1 konnte aus irgend einem Grund nicht geladen werden. + + + + 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 + Oszilator A1 auswählen + + + Select oscillator A2 + Oszilator A2 auswählen + + + Select oscillator B1 + Oszilator B1 auswählen + + + Select oscillator B2 + Oszilator B2 auswählen + + + Mix output of A2 to A1 + Mische Ausgang von A2 zu A1 + + + Modulate amplitude of A1 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 + Sinus-Welle + + + Click for sine wave + Klicken für Sinus-Welle + + + 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 + ZynAddSubFxInstrument @@ -3487,7 +5156,7 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt FM Gain - + FM-Verstärkung Resonance Center Frequency @@ -3546,11 +5215,11 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt FM Gain: - + FM-Verstärkung: FM GAIN - + FM GAIN Resonance center frequency: @@ -3558,7 +5227,7 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt RES CF - + RES CF Resonance bandwidth: @@ -3566,7 +5235,7 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt RES BW - + RES BW Forward MIDI Control Changes @@ -3591,55 +5260,33 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt Reverse sample Sample umkehren - - Loop - Wiederholen - Stutter - - - - - bassBoosterControlDialog - - FREQ - FREQ + Stottern - Frequency: - Frequenz: + Loopback point + Wiederholungspunkt - GAIN - GAIN + Loop mode + Wiederholungsmodus - Gain: - Gain: + Interpolation mode + Interpolationsmodus - RATIO - RATE + None + Keiner - Ratio: - Rate: - - - - bassBoosterControls - - Frequency - Frequenz + Linear + Linear - Gain - Gain - - - Ratio - Rate + Sinc + Sinc @@ -3674,11 +5321,11 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt Remove steps - Steps entfernen + Schritte entfernen Add steps - Steps hinzufügen + Schritte hinzufügen @@ -3699,6 +5346,10 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt Change color Farbe ändern + + Reset color to default + Farbe auf Standard zurücksetzen + bbTrack @@ -3730,7 +5381,7 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt Triangle wave - Dreiecks-Welle + Dreieckwelle Saw wave @@ -3738,7 +5389,7 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt Square wave - Rechtecks-Welle + Rechteckwelle White noise wave @@ -3774,7 +5425,7 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt Click here for a triangle-wave. - Klick für eine Dreieckswelle. + Klick für eine Dreieckwelle. Click here for a saw-wave. @@ -3782,7 +5433,7 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt Click here for a square-wave. - Klick für eine Rechteckswelle. + Klick für eine Rechteckwelle. Click here for white-noise. @@ -3793,6 +5444,131 @@ Wenn es mit anderer VST-Software unter Linux funktioniert, kontaktieren Sie bitt Klick für eine benutzerdefinierte Wellenform. + + captionMenu + + &Help + &Hilfe + + + Help (not available) + Hilfe (nicht verfügbar) + + + + 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 + + exportProjectDialog @@ -3826,41 +5602,7 @@ Bitte stellen Sie sicher, dass Sie Schreibrechte auf diese Datei und das Verzeic fader Please enter a new value between %1 and %2: - Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: - - - - fileBrowser - - Browser - Browser - - - - fileBrowserTreeWidget - - Send to active instrument-track - An aktive Instrumentspur senden - - - Open in new instrument-track/Song-Editor - In neuer Instrumentspur im Song-Editor öffnen - - - 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 --- + Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: @@ -3880,18 +5622,46 @@ Bitte stellen Sie sicher, dass Sie Schreibrechte auf diese Datei und das Verzeic End frequency Endfrequenz - - Decay - Abfallzeit - - - Distortion - Verzerrung - 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 @@ -3903,25 +5673,41 @@ Bitte stellen Sie sicher, dass Sie Schreibrechte auf diese Datei und das Verzeic End frequency: Endfrequenz: - - Decay: - Abfallzeit (decay): - - - Distortion: - Verzerrung: - Gain: Gain: + + Frequency Slope: + Frequenzabfall: + + + Envelope Length: + Hüllkurvenlänge: + + + Envelope Slope: + Hüllkurvenneigung: + + + Click: + Klick: + + + Noise: + Rauschen: + + + Distortion Start: + Verzerrungsanfang: + + + Distortion End: + Verzerrungsende: + knob - - &Help - &Hilfe - Please enter a new value between %1 and %2: Bitte geben Sie einen neuen Wert zwischen %1 und %2 ein: @@ -3967,7 +5753,19 @@ 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: @@ -4080,7 +5878,7 @@ Double clicking any of the plugins will bring up information on the ports. Dead - + Stumpf Slide Decay @@ -4139,27 +5937,27 @@ Double clicking any of the plugins will bring up information on the ports. Triangle wave - Dreiecks-Welle + Dreieckwelle Click here for a triangle-wave. - Klick für eine Dreieckswelle. + Klick für eine Dreieckwelle. Square wave - Rechtecks-Welle + Rechteckwelle Click here for a square-wave. - Klick für eine Rechteckswelle. + Klick für eine Rechteckwelle. Rounded square wave - Abgerundete Rechtecks-Welle + Abgerundete Rechteckwelle Click here for a square-wave with a rounded end. - Klick für eine abgerundete Rechtecks-Welle. + Klick für eine abgerundete Rechteckwelle. Moog wave @@ -4189,6 +5987,38 @@ Double clicking any of the plugins will bring up information on the ports.Click here for white-noise. Klick für weißes Rauschen. + + Bandlimited saw wave + Bandbegrenzte Sägezahnwelle + + + Click here for bandlimited saw wave. + Klick für eine bandbegrenzte Sägezahnwelle. + + + Bandlimited square wave + Bandbegrenzte Rechteckwelle + + + Click here for bandlimited square wave. + Klick für eine bandbegrenzte Rechteckwelle. + + + Bandlimited triangle wave + Bandlimittierte Dreieckwelle + + + Click here for bandlimited triangle wave. + Klick für eine bandbegrenzte Dreieckwelle. + + + Bandlimited moog saw wave + Bandbegrenzte Moog-Sägezahnwelle + + + Click here for bandlimited moog saw wave. + Klick für eine bandbegrenzte Moog-Sägezahnwelle. + lb303Synth @@ -4230,7 +6060,7 @@ Double clicking any of the plugins will bring up information on the ports. Dead - + Stumpf 24dB/oct Filter @@ -4570,23 +6400,23 @@ Double clicking any of the plugins will bring up information on the ports. - VST parameter control - + - VST Parameter Controller 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. @@ -4601,73 +6431,66 @@ Double clicking any of the plugins will bring up information on the ports. - VST plugin control - + - VST Plugin Controller 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. - - - - - nineButtonSelector - - &Help - &Hilfe + VST Effekt Regler-Controllerfenster schließen. opl2instrument Patch - 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 Strä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 @@ -4675,47 +6498,47 @@ Double clicking any of the plugins will bring up information on the ports. 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 Strä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 @@ -4723,27 +6546,27 @@ Double clicking any of the plugins will bring up information on the ports. 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 @@ -4775,10 +6598,6 @@ Double clicking any of the plugins will bring up information on the ports.Osc %1 panning: Oszillator %1 Balance: - - Osc %1 fine detuning left: - Oszillator %1 Fein-Verstimmung links: - cents Cent @@ -4791,16 +6610,36 @@ Double clicking any of the plugins will bring up information on the ports.Volume: Lautstärke: + + 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: + papuInstrument Sweep time - + Streichzeit Sweep direction - + Streichrichtung Sweep RtShift amount @@ -4812,90 +6651,90 @@ Double clicking any of the plugins will bring up information on the ports. 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 papuInstrumentView Sweep Time: - + Streichzeit: Sweep Time - + Streichzeit Sweep RtShift amount: @@ -4915,15 +6754,15 @@ Double clicking any of the plugins will bring up information on the ports. 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 @@ -4931,341 +6770,131 @@ Double clicking any of the plugins will bring up information on the ports. 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 - - - - - pattern - - Cannot freeze pattern - Kann Pattern nicht einfrieren - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - Der Pattern kann derzeit nicht eingefroren werden, da Sie sich im Abspiel-Modus befinden. Bitte stoppen Sie und versuchen es erneut! - - - - patternFreezeStatusDialog - - Freezing pattern... - Friere Pattern ein... - - - Cancel - Abbrechen - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - Doppelklick, um diesen Pattern im Piano-Roll zu öffnen -Lautstärke eines Steps kann mit Mausrad geändert werden - - - Open in piano-roll - Im Piano-Roll öffnen - - - Clear all notes - Alle Noten löschen - - - Reset name - Name zurücksetzen - - - Change name - Name ändern - - - Refreeze - Erneut einfrieren - - - Freeze - Einfrieren - - - Unfreeze - Ausfrieren - - - Add steps - Steps hinzufügen - - - Remove steps - Steps entfernen - - - - PianoRoll - - Cut selected notes (Ctrl+X) - Ausgewählte Noten ausschneiden (Strg+X) - - - Copy selected notes (Ctrl+C) - Ausgewählte Noten kopieren (Strg+C) - - - Paste notes from clipboard (Ctrl+V) - Noten aus Zwischenablage einfügen (Strg+V) - - - Play/pause current pattern (Space) - Aktuellen Pattern abspielen/pausieren (Leertaste) - - - Stop playing of current pattern (Space) - Abspielen des aktuellen Patterns stoppen (Leertaste) - - - Piano-Roll - %1 - Piano-Roll - %1 - - - Piano-Roll - no pattern - Piano-Roll - Kein Pattern - - - Please open a pattern by double-clicking on it! - Bitte öffnen Sie einen Pattern, indem Sie ihn doppelklicken! - - - Record notes from MIDI-device/channel-piano - Noten von MIDI-Gerät/Kanal-Klavier aufnehmen - - - Last note - Letzte Note - - - Draw mode (Shift+D) - Zeichnen-Modus (Umschalt+D) - - - Erase mode (Shift+E) - Radier-Modus (Umschalt+E) - - - Select mode (Shift+S) - Auswahl-Modus (Umschalt+S) - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Noten vom MIDI-Gerät/Kanal-Klavier aufnehmen während der Song oder BB-Track abgespielt wird - - - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Klicken Sie hier, um den aktuellen Pattern abzuspielen. Das ist nützlich beim Bearbeiten. Der Pattern wird automatisch wiederholt, wenn sein Ende erreicht ist. - - - 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. - Klicken Sie hier, um Noten von einem MIDI-Gerät oder dem virtuellen Test-Klavier des zugehörigen Kanal-Fensters in den aktuellen Pattern aufzunehmen. Beim Aufnehmen werden alle Noten, die Sie spielen, in diesen Pattern geschrieben und hinterher können Sie diese abspielen und bearbeiten. - - - 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. - - - 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. - Klicken Sie hier, um die markierten Noten in die Zwischenablage auszuschneiden. Sie können sie überall in einem beliebigen Pattern wieder einfügen, indem Sie auf den Einfügen-Button klicken. - - - 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. - Klicken Sie hier, um die markierten Noten in die Zwischenablage zu kopieren. Sie können sie überall in einem beliebigen Pattern wieder einfügen, indem Sie auf den Einfügen-Button klicken. - - - 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. - - - Note lock - - - - Note Volume - Noten-lautstärke - - - Note Panning - - - - Detune mode (Shift+T) - Verstimmungsmodus (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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - Aktuellen Halbton markieren/demarkieren - - - Mark current scale - Aktuelle Tonleite markieren - - - Mark current chord - Aktuellen Akkord markieren - - - Unmark all - Alles Markierungen entfernen - - - No scale - Keine Tonleiter - - - No chord - Kein Akkord + Die Welle hier zeichnen @@ -5274,10 +6903,6 @@ Lautstärke eines Steps kann mit Mausrad geändert werden Instrument plugins Instrument-Plugins - - three powerful oscillators you can modulate in several ways - Drei leistungsfähige Oszillatoren, die Sie auf verschiedene Art und Weise modulieren können - VST-host for using VST(i)-plugins within LMMS VST-Host zum Benutzen von VST(i)-Plugins innerhalb von LMMS @@ -5298,10 +6923,6 @@ Lautstärke eines Steps kann mit Mausrad geändert werden Filter for importing MIDI-files into LMMS Filter, um MIDI-Dateien in LMMS zu importieren - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - Einfacher Sampler mit verschiedenen Einstellungen zur Nutzung von Samples (z.B. Drums) in einer Instrument-Spur - Filter for importing FL Studio projects into LMMS Filter für Import von FL Studio Projekten in LMMS @@ -5314,18 +6935,10 @@ Lautstärke eines Steps kann mit Mausrad geändert werden plugin for using arbitrary LADSPA-effects inside LMMS. Plugin, um beliebige LADSPA-Effekte in LMMS nutzen zu können. - - plugin for using arbitrary VST-effects inside LMMS. - Plugin um beliebige VST-Effekte in LMMS nutzen zu können. - Incomplete monophonic imitation tb303 Unvollständiger monophonischer TB303-Klon - - versatile kick- & bassdrum-synthesizer - Vielfältiger Kick- & Bassdrum-Synthesizer - GUS-compatible patch instrument GUS-kompatibles Patch-Instrument @@ -5338,10 +6951,6 @@ Lautstärke eines Steps kann mit Mausrad geändert werden List installed LADSPA plugins Installierte LADSPA-Plugins auflisten - - plugin for boosting bass - Plugin zur Bass-Verstärkung - Plugin for freely manipulating stereo output Plugin zur freien Manipulation der Stereoausgabe @@ -5382,15 +6991,71 @@ Dieser Chip wurde in Commodore 64 Computern genutzt. 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 + + + plugin for processing dynamics in a flexible way + Ein Plugin, um Dynamik auf Flexible Weise zu verarbeiten + + + A native amplifier plugin + Ein natives Verstärker-Plugin + + + Graphical spectrum analyzer plugin + Graphisches Spektrumanalyzer Plugin + + + A NES-like synthesizer + Ein NES ähnlicher Synthesizer + + + Boost your bass the fast and simple way + Verstärken Sie Ihren Bass auf schnellen und einfachen Wege + + + 4-oscillator modulatable wavetable synth + 4-Oszillator modulierbarer Wellenformtabellen Synth + + + plugin for waveshaping + Plugin für Wellenformen + + + Monstrous 3-oscillator synth with modulation matrix + Monströser 3-Oszillator Synth mit Modulationsmatrix + + + plugin for using arbitrary VST effects inside LMMS. + Plugin um beliebige VST-Effekte in LMMS zu benutzen. + + + 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 + + + Three powerful oscillators you can modulate in several ways + Drei mächtige Oszillatoren, die Sie auf mehrere Weisen modulieren können + + + Carla Rack Instrument + Carla Rack Instrument + + + Carla Patchbay Instrument + Carla Patchbay Instrument @@ -5693,7 +7358,7 @@ Latenz: %2 ms Compact track buttons - Kompakte Track-Buttons + Kompakte Spur-Knöpfe Smooth scroll in Song Editor @@ -5701,23 +7366,23 @@ Latenz: %2 ms Sync VST plugins to host playback - + VST Plugins mit der Host-Wiedergabe synchronisieren Enable note labels in piano roll - + Notenbeschriftung in Piano-Roll aktivieren Enable waveform display by default - + Wellenform standardmäßig anzeigen Enable auto save feature - + Automatisches Speichern aktivieren Show playback cursor in AudioFileProcessor - + Wiedergabe-Courser im AudioFileProcessor anzeigen @@ -5760,7 +7425,7 @@ Latenz: %2 ms Chorus Lines - + Chorus/Anzahl Chorus Level @@ -5827,11 +7492,11 @@ Latenz: %2 ms 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. + 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: @@ -5854,7 +7519,7 @@ Latenz: %2 ms sfxrInstrument Wave Form - + Wellenform @@ -5952,7 +7617,7 @@ Latenz: %2 ms Triangle Wave - Dreiecks-Welle + Dreieckwelle SawTooth @@ -5976,47 +7641,47 @@ Latenz: %2 ms 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 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. 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. 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. 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. 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. 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 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. 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 direckt 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. @@ -6083,157 +7748,11 @@ Latenz: %2 ms Hydrogen projects - + Hydrogen-Projekte Select directory for writing exported tracks... - - - - - SongEditor - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Klicken Sie hier, wenn Sie das Abspielen des Songs stoppen wollen. Der Song-Positions-Marker wird automatisch auf den Song-Anfang zurückgesetzt. - - - Could not open file - Konnte Datei nicht öffnen - - - Could not write file - Konnte Datei nicht schreiben - - - Song-Editor - Song-Editor - - - 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. - Klicken Sie hier, wenn Sie Ihren ganzen Song abspielen wollen. Das Abspielen wird am Song-Positions-Marker (grün) gestartet. Sie können diesen auch während des Abspielens verschieben. - - - Play song (Space) - Song abspielen (Leertaste) - - - Stop song (Space) - Abspielen des Songs stoppen (Leertaste) - - - Add beat/bassline - Beat/Bassline hinzufügen - - - Add sample-track - Sample-Spur hinzufügen - - - Draw mode - Zeichen-Modus - - - Edit mode (select and move) - Editier-Modus (auswählen und verschieben) - - - Add automation-track - Automation-Spur hinzufügen - - - Record samples from Audio-device - Samples vom Audiogerät aufnehmen - - - Record samples from Audio-device while playing song or BB track - Samples vom Audiogerät während der Wiedergabe des Songs oder BB-Tracks aufnehmen - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - Lineares Spektrum - - - Linear Y axis - Lineare Y-Achse - - - - spectrumAnalyzerControls - - Linear spectrum - Lineares Spektrum - - - Linear Y-axis - Lineare Y-Axe - - - Channel mode - Kanalmodus + Wählen Sie einen Ordner zum schreiben der exportierten Spuren aus… @@ -6320,11 +7839,11 @@ Latenz: %2 ms Press <Ctrl> to disable magnetic loop points. - + Drücken Sie <Strg>, um magnetische Loop-Punkte zu deaktivieren. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. - + Halten Sie <Umschalt>, um den Anfangs-Loop-Punkt zu verschieben; Drücken Sie <Strg>, um magnetische Loop-Punkte zu deaktivieren. @@ -6404,7 +7923,7 @@ Latenz: %2 ms Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. - Drücken Sie <Strg> während des Klicks auf den Verschiebe-Griff, um eine neue Drag'n'Drop-Aktion zu beginnen. + Drücken Sie <Strg> während des Klicks auf den Verschiebe-Griff, um eine neue Klicken und Ziehen-Aktion zu beginnen. Actions for this track @@ -6422,6 +7941,18 @@ Latenz: %2 ms Solo Solo + + Turn all recording on + Alle Aufnahmen einschalten + + + Turn all recording off + Alle Aufnahmen ausschalten + + + Clear this track + Diese Spur leeren + vestigeInstrument @@ -6441,7 +7972,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt Please wait while loading VST-plugin... - Bitte warten, während das VST-Plugin geladen wird... + Bitte warten, während das VST-Plugin geladen wird… @@ -6464,7 +7995,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt Pan %1 - + Balance %1 Detune %1 @@ -6495,7 +8026,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt The 'V' knob sets the volume of the selected string. - Der 'V'-Knopf setzt die Lautstärke der gewählten Saite. + Der »V«-Regler setzt die Lautstärke der gewählten Saite. String stiffness: @@ -6503,7 +8034,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt 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'-Knopf 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. + 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: @@ -6511,7 +8042,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt 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'-Knopf bestimmt die Position, an der die Saite angezupft wird. Je kleiner die Einstellung, desto näher wird am Steg gezupft. + 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: @@ -6519,7 +8050,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt 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'-Knopf 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. + 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: @@ -6527,7 +8058,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt The Pan knob determines the location of the selected string in the stereo field. - Der Balance-Knopf bestimmt den Ort der gewählten Saite im Stereo-Raum. + Der Balance-Regler bestimmt den Ort der gewählten Saite im Stereo-Raum. Detune: @@ -6535,7 +8066,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt 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-Knopf 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. + 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: @@ -6543,7 +8074,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt 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-Knopf 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. + 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: @@ -6551,7 +8082,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt 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-Knopf 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. + 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 @@ -6559,7 +8090,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt 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. + 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 @@ -6567,7 +8098,7 @@ Wenn es mit anderer VST-software unter Linux funktioniert, kontaktieren Sie bitt 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. + 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 @@ -6581,13 +8112,13 @@ 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 Buttons rechts des Graphes initialisieren die Wellenform mit dem gewünschten Typ. Der '?'-Button lässt Sie eine Wellenform aus einer Datei laden - allerdings werden nur die ersten 128 Samples geladen. + 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'-Button glättet die Wellenform. +Der »S«-Knopf glättet die Wellenform. -Der 'N'-Button normalisiert 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. @@ -6601,15 +8132,15 @@ The 'V' knob controls the volume. The 'S' knob controls the 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. + 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'-Knopf bestimmt die Lautstärke. Mit dem 'S'-Knopf wird die Härte der Saite eingestellt. Der 'P'-Knopf beeinflusst den Ort, an dem die Saite angezupft wird, während der 'PU'-Knopf die Position des Abnehmers bestimmt. +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-Knopf fügt dem Klang der Saite etwas 'Fuzz' hinzu. +»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-Knopf bestimmt die Länge der Saite. +Der Länge-Regler bestimmt die Länge der Saite. Die LED rechts unterhalb der Wellenform gibt an, ob die Saite aktiviert ist. @@ -6635,7 +8166,7 @@ Die LED rechts unterhalb der Wellenform gibt an, ob die Saite aktiviert ist. Triangle wave - Dreiecks-Welle + Dreieckwelle Saw wave @@ -6643,7 +8174,7 @@ Die LED rechts unterhalb der Wellenform gibt an, ob die Saite aktiviert ist. Square wave - Rechtecks-Welle + Rechteckwelle White noise wave @@ -6669,17 +8200,13 @@ Die LED rechts unterhalb der Wellenform gibt an, ob die Saite aktiviert ist.Click here to normalize waveform. Hier klicken, um die Wellenform zu normalisieren. - - &Help - &Hilfe - Use a sine-wave for current oscillator. Sinuswelle für aktuellen Oszillator nutzen. Use a triangle-wave for current oscillator. - Dreieckswelle für aktuellen Oszillator nutzen. + Dreieckwelle für aktuellen Oszillator nutzen. Use a saw-wave for current oscillator. @@ -6687,7 +8214,7 @@ Die LED rechts unterhalb der Wellenform gibt an, ob die Saite aktiviert ist. Use a square-wave for current oscillator. - Rechteckswelle für aktuellen Oszillator nutzen. + Rechteckwelle für aktuellen Oszillator nutzen. Use white-noise for current oscillator. @@ -6753,7 +8280,77 @@ Die LED rechts unterhalb der Wellenform gibt an, ob die Saite aktiviert ist. Voice %1 test - + Stimme %1 Test + + + + waveShaperControlDialog + + INPUT + INPUT + + + Input gain: + Eingangsverstärkung: + + + OUTPUT + OUTPUT + + + Output gain: + Ausgabeverstärkung: + + + 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 graph amplitude by 1dB + Die Amplitude des Wellengraphs um 1dB erhöhen + + + Click here to increase wavegraph amplitude by 1dB + Klicken Sie hier, um die Amplitude des Wellengraphs um 1dB zu erhöhen + + + Decrease graph amplitude by 1dB + Die Amplitude des Wellengraphs um 1dB vermindern + + + Click here to decrease wavegraph amplitude by 1dB + Klicken Sie hier, um die Amplitude des Wellengraphs um 1dB zu vermindern + + + Clip input + Eingang begrenzen + + + Clip input signal to 0dB + Eingangssignal auf 0dB begrenzen + + + + waveShaperControls + + Input gain + Eingangsverstärkung + + + Output gain + Ausgabeverstärkung diff --git a/data/locale/en.ts b/data/locale/en.ts index f2aca61f0..9ed59949f 100644 --- a/data/locale/en.ts +++ b/data/locale/en.ts @@ -7,10 +7,6 @@ About LMMS - - LMMS (Linux MultiMedia Studio) - - Version %1 (%2/%3, Qt %4, %5) @@ -46,7 +42,65 @@ If you're interested in translating LMMS in another language or want to imp - <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + LMMS + + + + <html><head/><body><p><a href="http://lmms.io"><span style=" text-decoration: underline; color:#0000ff;">http://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 @@ -79,14 +133,6 @@ If you're interested in translating LMMS in another language or want to imp If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - - Loop sample at start- and end-point - - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - - Amplify: @@ -99,18 +145,10 @@ If you're interested in translating LMMS in another language or want to imp Startpoint: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Endpoint: - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Continue sample playback across notes @@ -119,6 +157,42 @@ If you're interested in translating LMMS in another language or want to imp 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. + + AudioFileProcessorWaveView @@ -365,6 +439,10 @@ If you're interested in translating LMMS in another language or want to imp Drag a control while pressing <Ctrl> + + Model is already connected to this pattern. + + AutomationPatternView @@ -396,6 +474,10 @@ If you're interested in translating LMMS in another language or want to imp Disconnect "%1" + + Set/clear record + + AutomationTrack @@ -404,6 +486,59 @@ If you're interested in translating LMMS in another language or want to imp + + BassBoosterControlDialog + + FREQ + + + + Frequency: + + + + GAIN + + + + Gain: + + + + RATIO + + + + Ratio: + + + + + BassBoosterControls + + Frequency + + + + Gain + + + + Ratio + + + + + CarlaInstrumentView + + Show GUI + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + Controller @@ -516,6 +651,186 @@ If you're interested in translating LMMS in another language or want to imp + + DelayControls + + Delay Samples + + + + Feedback + + + + Lfo Frequency + + + + Lfo Amount + + + + + DelayControlsDialog + + Delay + + + + Delay Time Samples: + + + + Feedback + + + + Feedback Amount: + + + + Lfo Hz + + + + Lfo Hz: + + + + Lfo Amt + + + + Lfo Amt: + + + + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + + + Effect @@ -880,6 +1195,10 @@ Right clicking will bring up a context menu where you can change the order in wh Drag a sample from somewhere and drop it in this window. + + Click here for random wave. + + ExportProjectDialog @@ -1007,14 +1326,6 @@ Right clicking will bring up a context menu where you can change the order in wh 8x - - Sample-exact controllers - - - - Alias-free oscillators - - Start @@ -1028,6 +1339,77 @@ Right clicking will bring up a context menu where you can change the order in wh + + FileBrowser + + Browser + + + + + 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... + + + + --- Factory files --- + + + + + 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 + + + + &Help + + + FxMixer @@ -1053,6 +1435,9 @@ Right clicking will bring up a context menu where you can change the order in wh FX-Mixer + + + FxMixerView::FxChannelView FX Fader %1 @@ -1066,6 +1451,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + FxRoute + + Amount to send from channel %1 to channel %2 + + + InstrumentFunctionArpeggio @@ -1124,6 +1516,10 @@ Right clicking will bring up a context menu where you can change the order in wh Sync + + Down and up + + InstrumentFunctionArpeggioView @@ -1566,6 +1962,18 @@ Right clicking will bring up a context menu where you can change the order in wh Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + + InstrumentFunctionNoteStackingView @@ -1628,6 +2036,18 @@ Right clicking will bring up a context menu where you can change the order in wh NOTE + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + InstrumentSoundShaping @@ -1774,6 +2194,10 @@ Right clicking will bring up a context menu where you can change the order in wh cutoff frequency: + + Envelopes, LFOs and filters are not supported by the current instrument. + + InstrumentTrack @@ -1859,10 +2283,6 @@ Right clicking will bring up a context menu where you can change the order in wh GENERAL SETTINGS - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - - Instrument volume @@ -1935,10 +2355,6 @@ Right clicking will bring up a context menu where you can change the order in wh PLUGIN - - Save current channel settings in a preset-file - - Pitch range (semitones) @@ -1947,6 +2363,14 @@ Right clicking will bring up a context menu where you can change the order in wh 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. + + LadspaControl @@ -1992,6 +2416,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + LcdSpinBox + + Please enter a new value between %1 and %2: + + + LfoController @@ -2351,10 +2782,6 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. LMMS (*.mmp *.mmpz) - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - - Version %1 @@ -2375,6 +2802,22 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Error while parsing configuration file at line %1:%2: %3 + + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + + MeterDialog @@ -2491,6 +2934,647 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 + + + + + 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. + + + + + 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 @@ -2534,6 +3618,10 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Osc %1 waveform + + Osc %1 harmonic + + PatmanView @@ -2582,6 +3670,38 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + + + + Open in piano-roll + + + + Clear all notes + + + + Reset name + + + + Change name + + + + Add steps + + + + Remove steps + + + PeakController @@ -2682,6 +3802,189 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PianoRoll + + Play/pause current pattern (Space) + + + + Stop playing of current pattern (Space) + + + + Cut selected notes (Ctrl+X) + + + + Copy selected notes (Ctrl+C) + + + + Paste notes from clipboard (Ctrl+V) + + + + Piano-Roll - no pattern + + + + Piano-Roll - %1 + + + + Please open a pattern by double-clicking on it! + + + + Record notes from MIDI-device/channel-piano + + + + Record notes from MIDI-device/channel-piano while playing song or BB track + + + + Draw mode (Shift+D) + + + + Erase mode (Shift+E) + + + + Select mode (Shift+S) + + + + Last note + + + + 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. + + + + 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. + + + + Note lock + + + + Note Volume + + + + Note Panning + + + + 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 Ctrl 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 Ctrl 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. + + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + + + + No scale + + + + No chord + + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + + + PianoView @@ -2708,6 +4011,10 @@ Reason: "%2" Failed to load plugin "%1"! + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2854,6 +4161,10 @@ Reason: "%2" File: + + File: %1 + + SampleBuffer @@ -2861,10 +4172,6 @@ Reason: "%2" Open audio file - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - - Wave-Files (*.wav) @@ -2885,10 +4192,6 @@ Reason: "%2" SPEEX-Files (*.spx) - - MP3-Files (*.mp3) - - VOC-Files (*.voc) @@ -2905,6 +4208,10 @@ Reason: "%2" RAW-Files (*.raw) + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + SampleTCOView @@ -2963,6 +4270,152 @@ Reason: "%2" + + SongEditor + + Song-Editor + + + + Play 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. + + + + Stop song (Space) + + + + Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. + + + + Add beat/bassline + + + + Add sample-track + + + + Could not open file + + + + Could not write file + + + + Add automation-track + + + + Draw mode + + + + Edit mode (select and move) + + + + Record samples from Audio-device + + + + Record samples from Audio-device while playing song or BB track + + + + 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. + + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + + + + Linear Y axis + + + + + SpectrumAnalyzerControls + + Linear spectrum + + + + Linear Y axis + + + + Channel mode + + + TempoSyncKnob @@ -3407,19 +4860,6 @@ Please make sure you have read-permission to the file and the directory containi Loading plugin - - Please wait while loading VST-plugin... - - - - Failed loading VST-plugin - - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - - Open Preset @@ -3460,6 +4900,268 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer .fxb + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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 + + + + 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 @@ -3585,54 +5287,32 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Reverse sample - - Loop - - Stutter - - - bassBoosterControlDialog - FREQ + Loopback point - Frequency: + Loop mode - GAIN + Interpolation mode - Gain: + None - RATIO + Linear - Ratio: - - - - - bassBoosterControls - - Frequency - - - - Gain - - - - Ratio + Sinc @@ -3693,6 +5373,10 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Change color + + Reset color to default + + bbTrack @@ -3787,6 +5471,120 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer + + 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 + + + exportProjectDialog @@ -3822,40 +5620,6 @@ Please make sure you have write-permission to the file and the directory contain - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - - - graphModel @@ -3873,18 +5637,46 @@ Please make sure you have write-permission to the file and the directory contain End frequency - - Decay - - - - Distortion - - Gain + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + kickerInstrumentView @@ -3896,18 +5688,38 @@ Please make sure you have write-permission to the file and the directory contain End frequency: - - Decay: - - - - Distortion: - - Gain: + + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: + + knob @@ -4182,6 +5994,38 @@ Double clicking any of the plugins will bring up information on the ports.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 @@ -4777,11 +6621,27 @@ Double clicking any of the plugins will bring up information on the ports. - Osc %1 fine detuning left: + 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: @@ -5051,215 +6911,6 @@ Double clicking any of the plugins will bring up information on the ports. - - pattern - - Cannot freeze pattern - - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - - - - - patternFreezeStatusDialog - - Freezing pattern... - - - - Cancel - - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - - - - Open in piano-roll - - - - Clear all notes - - - - Reset name - - - - Change name - - - - Refreeze - - - - Freeze - - - - Unfreeze - - - - Add steps - - - - Remove steps - - - - - PianoRoll - - Play/pause current pattern (Space) - - - - Stop playing of current pattern (Space) - - - - Cut selected notes (Ctrl+X) - - - - Copy selected notes (Ctrl+C) - - - - Paste notes from clipboard (Ctrl+V) - - - - Piano-Roll - no pattern - - - - Piano-Roll - %1 - - - - Please open a pattern by double-clicking on it! - - - - Record notes from MIDI-device/channel-piano - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Select mode (Shift+S) - - - - Last note - - - - 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. - - - - 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. - - - - Note lock - - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser @@ -5290,42 +6941,22 @@ use mouse wheel to set volume of a step List installed LADSPA plugins - - three powerful oscillators you can modulate in several ways - - Filter for importing FL Studio projects into LMMS - - versatile kick- & bassdrum-synthesizer - - GUS-compatible patch instrument - - plugin for using arbitrary VST-effects inside LMMS. - - Additive Synthesizer for organ-like sounds - - plugin for boosting bass - - Tuneful things to bang on - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - VST-host for using VST(i)-plugins within LMMS @@ -5383,6 +7014,66 @@ This chip was used in the Commodore 64 computer. 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 + + projectNotes @@ -6080,152 +7771,6 @@ Latency: %2 ms - - SongEditor - - Song-Editor - - - - Play 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. - - - - Stop song (Space) - - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - - - - Add beat/bassline - - - - Add sample-track - - - - Could not open file - - - - Could not write file - - - - Add automation-track - - - - Draw mode - - - - Edit mode (select and move) - - - - Record samples from Audio-device - - - - Record samples from Audio-device while playing song or BB track - - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - spectrumAnalyzerControls - - Linear spectrum - - - - Linear Y-axis - - - - Channel mode - - - stereoEnhancerControlDialog @@ -6412,6 +7957,18 @@ Latency: %2 ms Remove this track + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + vestigeInstrument @@ -6729,4 +8286,74 @@ The LED in the lower right corner of the waveform editor determines whether the + + 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 + + Input gain + + + + Output gain + + + diff --git a/data/locale/es.qm b/data/locale/es.qm index 5a0ac55fb..2ecf4746d 100644 Binary files a/data/locale/es.qm and b/data/locale/es.qm differ diff --git a/data/locale/es.ts b/data/locale/es.ts index 4bb9f5e1e..4e41e1abf 100644 --- a/data/locale/es.ts +++ b/data/locale/es.ts @@ -7,10 +7,6 @@ About LMMS - - LMMS (Linux MultiMedia Studio) - - Version %1 (%2/%3, Qt %4, %5) @@ -49,6 +45,64 @@ If you're interested in translating LMMS in another language or want to imp <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + LMMS + + + + + AmplifierControlDialog + + VOL + + + + Volume: + + + + PAN + + + + Panning: + + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + + + + Panning + + + + Left gain + + + + Right gain + + AudioAlsa::setupWidget @@ -79,14 +133,6 @@ If you're interested in translating LMMS in another language or want to imp If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Si activa este botón la muestra será reproducida al revés. Esto es útil para buenos efectos, como por ejemplo, golpes del revés. - - Loop sample at start- and end-point - - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - - Amplify: Amplificar: @@ -99,18 +145,10 @@ If you're interested in translating LMMS in another language or want to imp Startpoint: Punto inicial: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Endpoint: Punto final: - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Continue sample playback across notes @@ -119,6 +157,42 @@ If you're interested in translating LMMS in another language or want to imp 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. + + AudioFileProcessorWaveView @@ -365,6 +439,10 @@ If you're interested in translating LMMS in another language or want to imp Drag a control while pressing <Ctrl> + + Model is already connected to this pattern. + + AutomationPatternView @@ -396,6 +474,10 @@ If you're interested in translating LMMS in another language or want to imp Disconnect "%1" + + Set/clear record + + AutomationTrack @@ -404,6 +486,59 @@ If you're interested in translating LMMS in another language or want to imp + + BassBoosterControlDialog + + FREQ + + + + Frequency: + + + + GAIN + + + + Gain: + + + + RATIO + + + + Ratio: + + + + + BassBoosterControls + + Frequency + + + + Gain + + + + Ratio + + + + + CarlaInstrumentView + + Show GUI + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + Controller @@ -516,6 +651,132 @@ If you're interested in translating LMMS in another language or want to imp &Ayuda + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + 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 BandPass 12dB + + + + RC HighPass 12dB + + + + RC LowPass 24dB + + + + RC BandPass 24dB + + + + RC HighPass 24dB + + + + Vocal Formant Filter + + + Effect @@ -880,6 +1141,10 @@ Right clicking will bring up a context menu where you can change the order in wh Drag a sample from somewhere and drop it in this window. + + Click here for random wave. + + ExportProjectDialog @@ -1007,14 +1272,6 @@ Right clicking will bring up a context menu where you can change the order in wh 8x - - Sample-exact controllers - - - - Alias-free oscillators - - Start @@ -1028,6 +1285,77 @@ Right clicking will bring up a context menu where you can change the order in wh + + FileBrowser + + Browser + + + + + 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... + + + + --- Factory files --- + + + + + 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 + + + + &Help + &Ayuda + + FxMixer @@ -1053,6 +1381,9 @@ Right clicking will bring up a context menu where you can change the order in wh FX-Mixer + + + FxMixerView::FxChannelView FX Fader %1 @@ -1066,6 +1397,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + FxRoute + + Amount to send from channel %1 to channel %2 + + + InstrumentFunctionArpeggio @@ -1124,6 +1462,10 @@ Right clicking will bring up a context menu where you can change the order in wh Sync + + Down and up + + InstrumentFunctionArpeggioView @@ -1566,6 +1908,18 @@ Right clicking will bring up a context menu where you can change the order in wh Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + + InstrumentFunctionNoteStackingView @@ -1628,6 +1982,18 @@ Right clicking will bring up a context menu where you can change the order in wh NOTE + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + InstrumentSoundShaping @@ -1774,6 +2140,10 @@ Right clicking will bring up a context menu where you can change the order in wh cutoff frequency: + + Envelopes, LFOs and filters are not supported by the current instrument. + + InstrumentTrack @@ -1859,10 +2229,6 @@ Right clicking will bring up a context menu where you can change the order in wh GENERAL SETTINGS - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - Click aquí, si quiere guardar la configuración del canal en una plantilla. Después podrá cargarlo haciendo doble click en el navegador de plantillas. - Instrument volume @@ -1935,10 +2301,6 @@ Right clicking will bring up a context menu where you can change the order in wh PLUGIN PLUGIN - - Save current channel settings in a preset-file - - Pitch range (semitones) @@ -1947,6 +2309,14 @@ Right clicking will bring up a context menu where you can change the order in wh 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. + + LadspaControl @@ -1992,6 +2362,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + LcdSpinBox + + Please enter a new value between %1 and %2: + + + LfoController @@ -2351,10 +2728,6 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. LMMS (*.mmp *.mmpz) - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - - Version %1 @@ -2375,6 +2748,22 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Error while parsing configuration file at line %1:%2: %3 + + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + + MeterDialog @@ -2491,6 +2880,647 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 + + + + + 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. + + + + + 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 @@ -2534,6 +3564,10 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Osc %1 waveform + + Osc %1 harmonic + + PatmanView @@ -2582,6 +3616,38 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + + + + Open in piano-roll + Abrir en piano-roll + + + Clear all notes + Borrar todas las notas + + + Reset name + + + + Change name + Cambiar nombre + + + Add steps + + + + Remove steps + + + PeakController @@ -2682,6 +3748,189 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PianoRoll + + Cut selected notes (Ctrl+X) + Cortar las notas seleccionadas (Ctrl+X) + + + Copy selected notes (Ctrl+C) + Copiar las notas seleccionadas (Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + Pegar notas desde el portapapeles (Ctrl+V) + + + Play/pause current pattern (Space) + Reproducir/Pausar el patrón actual (Espaciador) + + + Stop playing of current pattern (Space) + Detener la reproducción del patrón actual (Espaciador) + + + Piano-Roll - no pattern + Piano Roll - ningún patrón + + + Please open a pattern by double-clicking on it! + Por favor abra el patrón haciendo doble click sobre él! + + + Piano-Roll - %1 + Piano-Roll - %1 + + + Record notes from MIDI-device/channel-piano + + + + Record notes from MIDI-device/channel-piano while playing song or BB track + + + + Draw mode (Shift+D) + + + + Erase mode (Shift+E) + + + + Select mode (Shift+S) + + + + Last note + + + + 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. + + + + 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. + + + + Note lock + + + + Note Volume + + + + Note Panning + + + + 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 Ctrl 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 Ctrl 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. + + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + + + + No scale + + + + No chord + + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + + + PianoView @@ -2708,6 +3957,10 @@ Reason: "%2" Failed to load plugin "%1"! + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2854,6 +4107,10 @@ Reason: "%2" File: + + File: %1 + + SampleBuffer @@ -2861,10 +4118,6 @@ Reason: "%2" Open audio file Abrir archivo de audio - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - - Wave-Files (*.wav) Archivos Wave (*.wav) @@ -2885,10 +4138,6 @@ Reason: "%2" SPEEX-Files (*.spx) - - MP3-Files (*.mp3) - - VOC-Files (*.voc) Archivos VOC (*.voc) @@ -2905,6 +4154,10 @@ Reason: "%2" RAW-Files (*.raw) Archivos RAW (*.raw) + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + SampleTCOView @@ -2963,6 +4216,152 @@ Reason: "%2" + + SongEditor + + Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. + Click aquí si usted desea detener la reproducción de su canción. El marcador de posición de la canción va a ser puesta al inicio de la canción. + + + Could not open file + No se puede abrir el archivo + + + Could not write file + No se puede escribir en el archivo + + + Song-Editor + Editor de canción + + + 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 aquí, si usted desea reproducir su canción completa. La reproducción se iniciara en el marcador de posición (verde). Usted puede también moverla mientras se reproduce. + + + Play song (Space) + Reproducir canción (Espaciador) + + + Stop song (Space) + Detener canción (Espaciador) + + + Add beat/bassline + Agregar beat/bassline + + + Add sample-track + Agregar pista de ejemplo. + + + Add automation-track + + + + Draw mode + + + + Edit mode (select and move) + + + + Record samples from Audio-device + + + + Record samples from Audio-device while playing song or BB track + + + + 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 + tiempo de 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). + + + + High quality mode + + + + Master volume + + + + master volume + + + + Master pitch + + + + master pitch + tono principal + + + 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. + + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + + + + Linear Y axis + + + + + SpectrumAnalyzerControls + + Linear spectrum + + + + Linear Y axis + + + + Channel mode + + + TempoSyncKnob @@ -3408,19 +4807,6 @@ La desintonización fina esta comprendida entre -100 cents y +100 cents. Esto es Loading plugin - - Please wait while loading VST-plugin... - - - - Failed loading VST-plugin - - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - - Open Preset @@ -3461,6 +4847,268 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer .fxb + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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 + + + + 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 @@ -3586,54 +5234,32 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Reverse sample - - Loop - - Stutter - - - bassBoosterControlDialog - FREQ + Loopback point - Frequency: + Loop mode - GAIN + Interpolation mode - Gain: + None - RATIO + Linear - Ratio: - - - - - bassBoosterControls - - Frequency - - - - Gain - - - - Ratio + Sinc @@ -3694,6 +5320,10 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Change color Cambiar color + + Reset color to default + + bbTrack @@ -3788,6 +5418,120 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer + + 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 + + + exportProjectDialog @@ -3823,40 +5567,6 @@ Please make sure you have write-permission to the file and the directory contain - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - - - graphModel @@ -3874,18 +5584,46 @@ Please make sure you have write-permission to the file and the directory contain End frequency - - Decay - - - - Distortion - - Gain + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + kickerInstrumentView @@ -3898,15 +5636,35 @@ Please make sure you have write-permission to the file and the directory contain - Decay: - Decay: - - - Distortion: + Gain: - Gain: + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: @@ -4183,6 +5941,38 @@ Double clicking any of the plugins will bring up information on the ports.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 @@ -4777,14 +6567,30 @@ Double clicking any of the plugins will bring up information on the ports.Osc %1 panning: Osc %1 encuadramiento: - - Osc %1 fine detuning left: - Osc %1 desintonización fina izquierda: - 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: + + papuInstrument @@ -5052,215 +6858,6 @@ Double clicking any of the plugins will bring up information on the ports. - - pattern - - Cannot freeze pattern - No se puede congelar el patrón - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - El patrón actual no puede ser congelado debido a que usted esta en el modo de reproducción. Por favor detenga la reproducción y vuelva a intentarlo! - - - - patternFreezeStatusDialog - - Freezing pattern... - Congelando patrón... - - - Cancel - Cancelar - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - - - - Open in piano-roll - Abrir en piano-roll - - - Clear all notes - Borrar todas las notas - - - Reset name - - - - Change name - Cambiar nombre - - - Refreeze - Recongelar - - - Freeze - Congelar - - - Unfreeze - Descongelar - - - Add steps - - - - Remove steps - - - - - PianoRoll - - Cut selected notes (Ctrl+X) - Cortar las notas seleccionadas (Ctrl+X) - - - Copy selected notes (Ctrl+C) - Copiar las notas seleccionadas (Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - Pegar notas desde el portapapeles (Ctrl+V) - - - Play/pause current pattern (Space) - Reproducir/Pausar el patrón actual (Espaciador) - - - Stop playing of current pattern (Space) - Detener la reproducción del patrón actual (Espaciador) - - - Piano-Roll - no pattern - Piano Roll - ningún patrón - - - Please open a pattern by double-clicking on it! - Por favor abra el patrón haciendo doble click sobre él! - - - Piano-Roll - %1 - Piano-Roll - %1 - - - Record notes from MIDI-device/channel-piano - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Select mode (Shift+S) - - - - Last note - - - - 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. - - - - 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. - - - - Note lock - - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser @@ -5291,42 +6888,22 @@ use mouse wheel to set volume of a step List installed LADSPA plugins - - three powerful oscillators you can modulate in several ways - - Filter for importing FL Studio projects into LMMS - - versatile kick- & bassdrum-synthesizer - - GUS-compatible patch instrument - - plugin for using arbitrary VST-effects inside LMMS. - - Additive Synthesizer for organ-like sounds - - plugin for boosting bass - - Tuneful things to bang on - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - VST-host for using VST(i)-plugins within LMMS @@ -5384,6 +6961,62 @@ This chip was used in the Commodore 64 computer. 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 + + projectNotes @@ -6081,152 +7714,6 @@ Latency: %2 ms - - SongEditor - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Click aquí si usted desea detener la reproducción de su canción. El marcador de posición de la canción va a ser puesta al inicio de la canción. - - - Could not open file - No se puede abrir el archivo - - - Could not write file - No se puede escribir en el archivo - - - Song-Editor - Editor de canción - - - 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 aquí, si usted desea reproducir su canción completa. La reproducción se iniciara en el marcador de posición (verde). Usted puede también moverla mientras se reproduce. - - - Play song (Space) - Reproducir canción (Espaciador) - - - Stop song (Space) - Detener canción (Espaciador) - - - Add beat/bassline - Agregar beat/bassline - - - Add sample-track - Agregar pista de ejemplo. - - - Add automation-track - - - - Draw mode - - - - Edit mode (select and move) - - - - Record samples from Audio-device - - - - Record samples from Audio-device while playing song or BB track - - - - 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 - tiempo de 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). - - - - High quality mode - - - - Master volume - - - - master volume - - - - Master pitch - - - - master pitch - tono principal - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - spectrumAnalyzerControls - - Linear spectrum - - - - Linear Y-axis - - - - Channel mode - - - stereoEnhancerControlDialog @@ -6413,6 +7900,18 @@ Latency: %2 ms Remove this track + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + vestigeInstrument @@ -6730,4 +8229,74 @@ The LED in the lower right corner of the waveform editor determines whether the + + 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 + + Input gain + + + + Output gain + + + diff --git a/data/locale/fa.qm b/data/locale/fa.qm index 97c0f1f91..dcd394be4 100644 Binary files a/data/locale/fa.qm and b/data/locale/fa.qm differ diff --git a/data/locale/fa.ts b/data/locale/fa.ts index 24fee5a2a..edc8c3f25 100644 --- a/data/locale/fa.ts +++ b/data/locale/fa.ts @@ -7,10 +7,6 @@ About LMMS - - LMMS (Linux MultiMedia Studio) - - Version %1 (%2/%3, Qt %4, %5) @@ -49,6 +45,64 @@ If you're interested in translating LMMS in another language or want to imp <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + LMMS + + + + + AmplifierControlDialog + + VOL + + + + Volume: + + + + PAN + + + + Panning: + + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + + + + Panning + + + + Left gain + + + + Right gain + + AudioAlsa::setupWidget @@ -79,14 +133,6 @@ If you're interested in translating LMMS in another language or want to imp If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. اگر این دکمه را ÙØ¹Ø§Ù„ کنید,تمام نمونه معکوس Ù…ÛŒ شود.این برای جلوه های جالب مانند یک تصاد٠معکوس مناسب است. - - Loop sample at start- and end-point - - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - - Amplify: تقویت: @@ -99,18 +145,10 @@ If you're interested in translating LMMS in another language or want to imp Startpoint: نقطه ÛŒ شروع: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Endpoint: نقطه ÛŒ پایان: - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Continue sample playback across notes @@ -119,6 +157,42 @@ If you're interested in translating LMMS in another language or want to imp 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. + + AudioFileProcessorWaveView @@ -365,6 +439,10 @@ If you're interested in translating LMMS in another language or want to imp Drag a control while pressing <Ctrl> + + Model is already connected to this pattern. + + AutomationPatternView @@ -396,6 +474,10 @@ If you're interested in translating LMMS in another language or want to imp Disconnect "%1" + + Set/clear record + + AutomationTrack @@ -404,6 +486,59 @@ If you're interested in translating LMMS in another language or want to imp + + BassBoosterControlDialog + + FREQ + + + + Frequency: + + + + GAIN + + + + Gain: + + + + RATIO + + + + Ratio: + + + + + BassBoosterControls + + Frequency + + + + Gain + + + + Ratio + + + + + CarlaInstrumentView + + Show GUI + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + Controller @@ -516,6 +651,132 @@ If you're interested in translating LMMS in another language or want to imp &راهنما + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + میان گذر 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 + + + Effect @@ -880,6 +1141,10 @@ Right clicking will bring up a context menu where you can change the order in wh Drag a sample from somewhere and drop it in this window. + + Click here for random wave. + + ExportProjectDialog @@ -1007,14 +1272,6 @@ Right clicking will bring up a context menu where you can change the order in wh 8x - - Sample-exact controllers - - - - Alias-free oscillators - - Start @@ -1028,6 +1285,77 @@ Right clicking will bring up a context menu where you can change the order in wh + + FileBrowser + + Browser + + + + + 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... + + + + --- Factory files --- + + + + + 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 + + + + &Help + &راهنما + + FxMixer @@ -1053,6 +1381,9 @@ Right clicking will bring up a context menu where you can change the order in wh FX-Mixer + + + FxMixerView::FxChannelView FX Fader %1 @@ -1066,6 +1397,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + FxRoute + + Amount to send from channel %1 to channel %2 + + + InstrumentFunctionArpeggio @@ -1124,6 +1462,10 @@ Right clicking will bring up a context menu where you can change the order in wh Sync + + Down and up + + InstrumentFunctionArpeggioView @@ -1566,6 +1908,18 @@ Right clicking will bring up a context menu where you can change the order in wh Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + + InstrumentFunctionNoteStackingView @@ -1628,6 +1982,18 @@ Right clicking will bring up a context menu where you can change the order in wh NOTE + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + InstrumentSoundShaping @@ -1774,6 +2140,10 @@ Right clicking will bring up a context menu where you can change the order in wh cutoff frequency: + + Envelopes, LFOs and filters are not supported by the current instrument. + + InstrumentTrack @@ -1859,10 +2229,6 @@ Right clicking will bring up a context menu where you can change the order in wh GENERAL SETTINGS - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - اگر Ù…ÛŒ خواهید تنظیمات کانال جاری را در پرونده-از قبل چیده شده ذخیره کنید اینجا را کلیک کنید.بعدا شما Ù…ÛŒ توانید این چیده شده را در مرور گر از پیش چیده شده بار گذاری کنید. - Instrument volume @@ -1935,10 +2301,6 @@ Right clicking will bring up a context menu where you can change the order in wh PLUGIN Ø§Ø¶Ø§ÙØ§Øª - - Save current channel settings in a preset-file - - Pitch range (semitones) @@ -1947,6 +2309,14 @@ Right clicking will bring up a context menu where you can change the order in wh 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. + + LadspaControl @@ -1992,6 +2362,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + LcdSpinBox + + Please enter a new value between %1 and %2: + + + LfoController @@ -2351,10 +2728,6 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. LMMS (*.mmp *.mmpz) - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - - Version %1 @@ -2375,6 +2748,22 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Error while parsing configuration file at line %1:%2: %3 + + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + + MeterDialog @@ -2491,6 +2880,647 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 + + + + + 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. + + + + + 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 @@ -2534,6 +3564,10 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Osc %1 waveform + + Osc %1 harmonic + + PatmanView @@ -2582,6 +3616,38 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + + + + Open in piano-roll + در غلتک پیانو باز Ú©Ù† + + + Clear all notes + پاک کردن تمامی نت ها + + + Reset name + باز نشانی نام + + + Change name + تغییر نام + + + Add steps + + + + Remove steps + + + PeakController @@ -2682,6 +3748,189 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PianoRoll + + Cut selected notes (Ctrl+X) + برش نت های انتخاب شده(Ctrl+X) + + + Copy selected notes (Ctrl+C) + Ú©Ù¾ÛŒ نت های انتخاب شده(Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + چسباندن نت ها از Ø­Ø§ÙØ¸Ù‡ ÛŒ موقت(Ctrl+V) + + + Play/pause current pattern (Space) + پخش/Ù…Ú©Ø« الگوی جاری (ÙØ§ØµÙ„Ù‡) + + + Stop playing of current pattern (Space) + توق٠پخش الگوی جاری (ÙØ§ØµÙ„Ù‡) + + + Piano-Roll - %1 + غلتک پیانو - %1 + + + Piano-Roll - no pattern + غلتک پیانو - بدون الگو + + + Please open a pattern by double-clicking on it! + Ù„Ø·ÙØ§ یک الگو را با دوبار کلیک روی أن باز کنید! + + + Record notes from MIDI-device/channel-piano + + + + Record notes from MIDI-device/channel-piano while playing song or BB track + + + + Draw mode (Shift+D) + + + + Erase mode (Shift+E) + + + + Select mode (Shift+S) + + + + Last note + + + + 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. + + + + 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. + + + + Note lock + + + + Note Volume + + + + Note Panning + + + + 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 Ctrl 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 Ctrl 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. + + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + + + + No scale + + + + No chord + + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + + + PianoView @@ -2708,6 +3957,10 @@ Reason: "%2" Failed to load plugin "%1"! + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2854,6 +4107,10 @@ Reason: "%2" File: + + File: %1 + + SampleBuffer @@ -2861,10 +4118,6 @@ Reason: "%2" Open audio file باز کردن پرونده ÛŒ صوتی - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - - Wave-Files (*.wav) Wave- پرونده های(*.wav) @@ -2885,10 +4138,6 @@ Reason: "%2" SPEEX-Files (*.spx) - - MP3-Files (*.mp3) - - VOC-Files (*.voc) VOC-پرونده های (*.voc) @@ -2905,6 +4154,10 @@ Reason: "%2" RAW-Files (*.raw) RAW-پرونده های (*.raw) + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + SampleTCOView @@ -2963,6 +4216,152 @@ Reason: "%2" + + SongEditor + + Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. + اگر Ù…ÛŒ خواهید پخش ترانه ÛŒ خود را متوق٠کنید اینجا را کلیک کنید.سازنده موقعیت ترانه به شروع ترانه تنظیم خواهد شد. + + + Could not open file + پرونده باز نشد + + + Could not write file + پرونده نوشته نشد + + + Song-Editor + ویرایشگر ترانه + + + 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. + اگر Ù…ÛŒ خواهید تمام ترانه ÛŒ خود را پخش کنید اینجا را کلیک کنید.پخش از محل سازنده ÛŒ موقعیت شروع خواهد شد(سبز).همچنین Ù…ÛŒ توانید در حال پخش آن را جابجا کنید. + + + Play song (Space) + پخش ترانه(ÙØ§ØµÙ„Ù‡) + + + Stop song (Space) + توق٠ترانه (ÙØ§ØµÙ„Ù‡) + + + Add beat/bassline + اضاÙÙ‡ ÛŒ خط بم/تپش (beat/baseline) + + + Add sample-track + اضاÙÙ‡ ÛŒ باریکه ÛŒ نمونه + + + Add automation-track + + + + Draw mode + + + + Edit mode (select and move) + + + + Record samples from Audio-device + + + + Record samples from Audio-device while playing song or BB track + + + + 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. + + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + + + + Linear Y axis + + + + + SpectrumAnalyzerControls + + Linear spectrum + + + + Linear Y axis + + + + Channel mode + + + TempoSyncKnob @@ -3407,19 +4806,6 @@ Please make sure you have read-permission to the file and the directory containi Loading plugin - - Please wait while loading VST-plugin... - - - - Failed loading VST-plugin - - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - - Open Preset @@ -3460,6 +4846,268 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer .fxb + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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 + + + + 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 @@ -3585,54 +5233,32 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Reverse sample - - Loop - - Stutter - - - bassBoosterControlDialog - FREQ + Loopback point - Frequency: + Loop mode - GAIN + Interpolation mode - Gain: + None - RATIO + Linear - Ratio: - - - - - bassBoosterControls - - Frequency - - - - Gain - - - - Ratio + Sinc @@ -3693,6 +5319,10 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Change color تغییر رنگ + + Reset color to default + + bbTrack @@ -3787,6 +5417,120 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer + + 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 + + + exportProjectDialog @@ -3822,40 +5566,6 @@ Please make sure you have write-permission to the file and the directory contain - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - - - graphModel @@ -3873,18 +5583,46 @@ Please make sure you have write-permission to the file and the directory contain End frequency - - Decay - - - - Distortion - - Gain + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + kickerInstrumentView @@ -3897,15 +5635,35 @@ Please make sure you have write-permission to the file and the directory contain - Decay: - محو شدن(Decay): - - - Distortion: + Gain: - Gain: + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: @@ -4182,6 +5940,38 @@ Double clicking any of the plugins will bring up information on the ports.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 @@ -4776,14 +6566,30 @@ Double clicking any of the plugins will bring up information on the ports.Osc %1 panning: تراز نوسان ساز %1: - - Osc %1 fine detuning left: - Ú©ÙˆÚ© دقیق Ú†Ù¾ نوسان ساز %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: + + papuInstrument @@ -5051,215 +6857,6 @@ Double clicking any of the plugins will bring up information on the ports. - - pattern - - Cannot freeze pattern - الگو منجمد نشد - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - الگوی جاری منجمد نشد زیرا شما در حالت پخش هستید.Ù„Ø·ÙØ§ توق٠کنید Ùˆ دوباره تلاش کنید! - - - - patternFreezeStatusDialog - - Freezing pattern... - انجماد الگو... - - - Cancel - لغو - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - - - - Open in piano-roll - در غلتک پیانو باز Ú©Ù† - - - Clear all notes - پاک کردن تمامی نت ها - - - Reset name - باز نشانی نام - - - Change name - تغییر نام - - - Refreeze - انجماد مجدد - - - Freeze - انجماد - - - Unfreeze - نامنجمد - - - Add steps - - - - Remove steps - - - - - PianoRoll - - Cut selected notes (Ctrl+X) - برش نت های انتخاب شده(Ctrl+X) - - - Copy selected notes (Ctrl+C) - Ú©Ù¾ÛŒ نت های انتخاب شده(Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - چسباندن نت ها از Ø­Ø§ÙØ¸Ù‡ ÛŒ موقت(Ctrl+V) - - - Play/pause current pattern (Space) - پخش/Ù…Ú©Ø« الگوی جاری (ÙØ§ØµÙ„Ù‡) - - - Stop playing of current pattern (Space) - توق٠پخش الگوی جاری (ÙØ§ØµÙ„Ù‡) - - - Piano-Roll - %1 - غلتک پیانو - %1 - - - Piano-Roll - no pattern - غلتک پیانو - بدون الگو - - - Please open a pattern by double-clicking on it! - Ù„Ø·ÙØ§ یک الگو را با دوبار کلیک روی أن باز کنید! - - - Record notes from MIDI-device/channel-piano - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Select mode (Shift+S) - - - - Last note - - - - 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. - - - - 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. - - - - Note lock - - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser @@ -5290,42 +6887,22 @@ use mouse wheel to set volume of a step List installed LADSPA plugins - - three powerful oscillators you can modulate in several ways - - Filter for importing FL Studio projects into LMMS - - versatile kick- & bassdrum-synthesizer - - GUS-compatible patch instrument - - plugin for using arbitrary VST-effects inside LMMS. - - Additive Synthesizer for organ-like sounds - - plugin for boosting bass - - Tuneful things to bang on - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - VST-host for using VST(i)-plugins within LMMS @@ -5383,6 +6960,62 @@ This chip was used in the Commodore 64 computer. 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 + + projectNotes @@ -6080,152 +7713,6 @@ Latency: %2 ms - - SongEditor - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - اگر Ù…ÛŒ خواهید پخش ترانه ÛŒ خود را متوق٠کنید اینجا را کلیک کنید.سازنده موقعیت ترانه به شروع ترانه تنظیم خواهد شد. - - - Could not open file - پرونده باز نشد - - - Could not write file - پرونده نوشته نشد - - - Song-Editor - ویرایشگر ترانه - - - 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. - اگر Ù…ÛŒ خواهید تمام ترانه ÛŒ خود را پخش کنید اینجا را کلیک کنید.پخش از محل سازنده ÛŒ موقعیت شروع خواهد شد(سبز).همچنین Ù…ÛŒ توانید در حال پخش آن را جابجا کنید. - - - Play song (Space) - پخش ترانه(ÙØ§ØµÙ„Ù‡) - - - Stop song (Space) - توق٠ترانه (ÙØ§ØµÙ„Ù‡) - - - Add beat/bassline - اضاÙÙ‡ ÛŒ خط بم/تپش (beat/baseline) - - - Add sample-track - اضاÙÙ‡ ÛŒ باریکه ÛŒ نمونه - - - Add automation-track - - - - Draw mode - - - - Edit mode (select and move) - - - - Record samples from Audio-device - - - - Record samples from Audio-device while playing song or BB track - - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - spectrumAnalyzerControls - - Linear spectrum - - - - Linear Y-axis - - - - Channel mode - - - stereoEnhancerControlDialog @@ -6412,6 +7899,18 @@ Latency: %2 ms Remove this track + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + vestigeInstrument @@ -6729,4 +8228,74 @@ The LED in the lower right corner of the waveform editor determines whether the + + 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 + + Input gain + + + + Output gain + + + diff --git a/data/locale/fr.qm b/data/locale/fr.qm index da1da6e56..1f7bc5c3f 100644 Binary files a/data/locale/fr.qm and b/data/locale/fr.qm differ diff --git a/data/locale/fr.ts b/data/locale/fr.ts index e6ccb95fd..7e6593543 100644 --- a/data/locale/fr.ts +++ b/data/locale/fr.ts @@ -7,10 +7,6 @@ About LMMS À propos de LMMS - - LMMS (Linux MultiMedia Studio) - LMMS (Linux MultiMedia Studio) - Version %1 (%2/%3, Qt %4, %5) Version %1 (%2/%3, Qt %4, %5) @@ -43,10 +39,68 @@ If you're interested in translating LMMS in another language or want to imp Copyright (c) 2004-2014, LMMS developers - Copyright (c) 2004-2008, les développeurs de LMMS {2004-2010,?} {2004-2014,?} + Copyright (c) 2004-2014, les développeurs de LMMS <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + + LMMS + LMMS + + + + AmplifierControlDialog + + VOL + VOL + + + Volume: + Volume : + + + PAN + PAN + + + Panning: + Panoramique : + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + Volume + + + Panning + Panoramique + + + Left gain + + + + Right gain @@ -79,14 +133,6 @@ If you're interested in translating LMMS in another language or want to imp 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, p. ex. une cymbale crash inversée. - - Loop sample at start- and end-point - Jouer l'échantillon en boucle entre les marqueurs de début et de fin - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - Ici vous pouvez indiquer si le mode de jeu en boucle est activé ou non. S'il est activé, AudioFileProcessor joue en boucle entre les marqueurs de début et de fin d'un échantillon jusqu'à ce que la note entière ait été jouée. Ceci est utile pour les échantillons de type corde ou chÅ“ur. - Amplify: Amplifier : @@ -99,24 +145,52 @@ If you're interested in translating LMMS in another language or want to imp Startpoint: Marqueur de début : - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Avec ce bouton vous pouvez placer le marqueur à partir duquel AudioFileProcessor devra commencer à jouer votre échantillon. Si vous activez le mode de jeu en boucle, c'est le marqueur auquel AudioFileProcessor reviendra lorsqu'une note sera plus longue que la portion de l'échantillon située entre les marqueurs de début et de fin. - Endpoint: Marqueur de fin : - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Avec ce bouton vous pouvez placer le marqueur auquel AudioFileProcessor devra arrêter de jouer votre échantillon. Si vous activez le mode de jeu en boucle, c'est le marqueur à partir duquel AudioFileProcessor reviendra lorsqu'une note sera plus longue que la portion de l'échantillon située entre les marqueurs de début et de fin. - Continue sample playback across notes - + Continuer de jouer l'échantillon à traver les notes Enabling this option makes the sample continue playing across different notes - if you change pitch, or the note length stops before the end of the sample, then the next note played will continue where it left off. To reset the playback to the start of the sample, insert a note at the bottom of the keyboard (< 20 Hz) + Activer cette option fait que l'échantillon continue de jouer à traver les différentes notes - si vous changez la hauteur, ou si la longueur de la note s'arrête avant la fin de l'échantillon, alors la note suivante jouée continuera où elle aura été arrêtée. Pour remettre à zéro le jeu au début de l'échantillon, insérez une note en bas du clavier (< 20 Hz) + + + Disable loop + + + + 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. @@ -124,7 +198,7 @@ If you're interested in translating LMMS in another language or want to imp AudioFileProcessorWaveView Sample length: - + Longueur de l'échantillon: @@ -237,171 +311,232 @@ If you're interested in translating LMMS in another language or want to imp Remove song-global automation - + Supprime l'automation globale de la chanson Remove all linked controls - + Supprime tous les contrôles liés AutomationEditor Play/pause current pattern (Space) - Jouer/Mettre en pause le motif (Barre d'espace) + Jouer/Mettre en pause le motif (Barre d'espace) Stop playing of current pattern (Space) - Arrêter de jouer le motif (Barre d'espace) + Arrêter de jouer le motif courant (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 si vous souhaitez jouer le motif. Ceci est utile pendant son édition. Le motif est automatiquement rejoué lorsque sa fin est atteinte. + Cliquez ici si vous souhaitez jouer le motif courant. Ceci est utile pendant son édition. Le motif est automatiquement rejoué lorsque sa fin est atteinte. Click here if you want to stop playing of the current pattern. - Cliquez ici si vous souhaitez arrêter de jouer le motif. + Cliquez ici si vous souhaitez arrêter de jouer le motif courant. Draw mode (Shift+D) - Mode dessin (Shift+D) + Mode dessin (Shift+D) Erase mode (Shift+E) - Mode effacement (Shift+E) + Mode effacement (Shift+E) 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 et le mode dessin sera activé. Dans ce mode vous pourrez 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. + Cliquez ici et le mode dessin sera activé. Dans ce mode vous pourrez 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 et le mode effacement sera activé. 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. + Cliquez ici et le mode effacement sera activé. 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. Cut selected values (Ctrl+X) - Couper les valeurs sélectionnées (Ctrl+X) + Couper les valeurs sélectionnées (Ctrl+X) Copy selected values (Ctrl+C) - Copier les valeurs sélectionnées (Ctrl+C) + Copier les valeurs sélectionnées (Ctrl+C) Paste values from clipboard (Ctrl+V) - Coller les valeurs sélectionnées (Ctrl+V) + Coller les valeurs sélectionnées (Ctrl+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 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. + 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 selected values 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. + 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 values 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. + Cliquez ici et les valeurs se trouvant dans le presse-papier seront collées sur la première mesure visible. Automation Editor - no pattern - Éditeur d'automation - pas de motif + Éditeur d'automation - pas de motif Automation Editor - %1 - Éditeur d'automation - %1 + Éditeur d'automation - %1 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 ! + Veuillez ouvrir un motif d'automation avec le menu contextuel d'un contrôle ! Values copied - Les valeurs ont été copiées + Les valeurs ont été copiées All selected values were copied to the clipboard. - Toutes les valeurs ont été copiées dans le presse-papier. + Toutes les valeurs ont été copiées dans le presse-papier. Discrete progression - + Progression discrète Linear progression - + Progression linéaire Cubic Hermite progression - + Progression cubique de Hermite Tension: - + Tension : 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 contant 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. 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 élevée donne une courbe plus lisse mais introduit des dépassements pour certaines valeurs. Une valeur de tension basse fera que la pente de la courbe se stabilisera à chaque point de contrôle. AutomationPattern Drag a control while pressing <Ctrl> - Déplacer un contrôle en appuyant sur <Ctrl> + Déplacer un contrôle en appuyant sur <Ctrl> + + + Model is already connected to this pattern. + AutomationPatternView double-click to open this pattern in automation editor - double-cliquer pour ouvrir ce motif dans l'éditeur d'automation + double-cliquer pour ouvrir ce motif dans l'éditeur d'automation Open in Automation editor - Ouvrir dans l'éditeur d'automation + Ouvrir dans l'éditeur d'automation Clear - Effacer + Effacer Reset name - Réinitialiser le nom + Réinitialiser le nom Change name - Changer le nom + Changer le nom %1 Connections - %1 connexions + %1 connexions Disconnect "%1" - Déconnecter "%1" + Déconnecter "%1" + + + Set/clear record + Régler/Effacer l'enregistrement AutomationTrack Automation track - Piste d'automation + Piste d'automation + + + + BassBoosterControlDialog + + FREQ + FRÉQ + + + Frequency: + Fréquence : + + + GAIN + GAIN + + + Gain: + Gain : + + + RATIO + RAPPORT + + + Ratio: + Rapport : + + + + BassBoosterControls + + Frequency + Fréquence + + + Gain + Gain + + + Ratio + Rapport + + + + CarlaInstrumentView + + Show GUI + Montrer l'interface utilisateur graphique + + + Click here to show or hide the graphical user interface (GUI) of Carla. + @@ -482,11 +617,11 @@ If you're interested in translating LMMS in another language or want to imp Confirm Delete - + Confirmer la suppression Confirm delete? There are existing connection(s) associted 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. @@ -516,6 +651,132 @@ If you're interested in translating LMMS in another language or want to imp Aid&e + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + 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 + + Effect @@ -892,6 +1153,10 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo Drag a sample from somewhere and drop it in this window. Faites glisser un échantillon et déposez-le dans cette fenêtre. + + Click here for random wave. + + ExportProjectDialog @@ -1019,14 +1284,6 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo 8x 8x - - Sample-exact controllers - Contrôleurs d'échantillon exact - - - Alias-free oscillators - Oscillateurs sans alias - Start Démarrer @@ -1037,8 +1294,79 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo Export as loop (remove end silence) + Exporter sous la forme d'une boucle (supprime le silence de fin) + + + + FileBrowser + + Browser + Explorateur + + + + FileBrowserTreeWidget + + Send to active instrument-track + Envoyer vers la piste d'instrument actif + + + Open in new instrument-track/Song-Editor + Ouvrir dans une nouvelle piste d'instrument/Éditeur de morceau + + + 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 --- + + + + 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 + + + + &Help + Aid&e + FxMixer @@ -1065,75 +1393,89 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo FX-Mixer Mélangeur d'effets + + + FxMixerView::FxChannelView FX Fader %1 - Curseur d'effet %1 + Curseur d'effet %1 Mute - Couper + Couper Mute this FX channel - Couper ce canal d'effet + Couper ce canal d'effet + + + + FxRoute + + Amount to send from channel %1 to channel %2 + InstrumentFunctionArpeggio Arpeggio - Arpège + Arpège Arpeggio type - Type d'arpège + Type d'arpège Arpeggio range - Gamme d'arpège + Plage d'arpège Arpeggio time - Temps d'arpège + Temps d'arpège Arpeggio gate - Durée d'arpège + Durée d'arpège Arpeggio direction - Sens d'arpège + Direction de l'arpège Arpeggio mode - Mode d'arpège + Mode d'arpège Up - Ascendant + Ascendant Down - Descendant + Descendant Up and down - Ascendant et descendant + Ascendant et descendant Random - Aléatoire + Aléatoire Free - Libre + Libre Sort - Tri + Tri Sync + Sync + + + Down and up @@ -1141,71 +1483,71 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo InstrumentFunctionArpeggioView ARPEGGIO - ARPÈGE + 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. + 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 - GAMME + PLAGE Arpeggio range: - Gamme d'arpège : + Plage d'arpège : octave(s) - 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 gamme d'octaves de l'arpège. L'arpège sélectionné sera joué sur le nombre d'octaves choisi. + 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 + TEMPS Arpeggio time: - Temps d'arpège : + Temps d'arpège : 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. - 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é. + 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 : + 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. + 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: - Sens : + Direction : Mode: - Mode : + Mode : @@ -1576,8 +1918,20 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo Minor + Mineur + + + Chromatic + + Half-Whole Diminished + + + + 5 + 8x {5?} + InstrumentFunctionNoteStackingView @@ -1599,11 +1953,11 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo STACKING - + EMPILEMENT Chord: - + Accord: @@ -1638,6 +1992,18 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo NOTE + NOTE + + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY @@ -1713,31 +2079,31 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo 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 @@ -1780,10 +2146,14 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo FREQ - FRÉQ + FRÉQ cutoff frequency: + Fréquence de coupure: + + + Envelopes, LFOs and filters are not supported by the current instrument. @@ -1823,7 +2193,7 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo Pitch range - + Plage de hauteur @@ -1871,10 +2241,6 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo GENERAL SETTINGS CONFIGURATION GÉNÉRALE - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - Cliquez ici si vous souhaitez enregistrer la configuration du canal dans un fichier de préréglage. Plus tard vous pourrez charger ce préréglage en double-cliquant sur son nom dans le sélecteur de préréglages. - Instrument volume Volume de l'instrument @@ -1947,17 +2313,21 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo PLUGIN GREFFON - - Save current channel settings in a preset-file - Enregistrer la configuration du canal dans un fichier de préréglage - Pitch range (semitones) - + Plage de hauteur (demi-tons) RANGE - GAMME + PLAGE + + + 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. + @@ -2004,6 +2374,13 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo Le greffon LDASPA %1 demandé est inconnu. + + LcdSpinBox + + Please enter a new value between %1 and %2: + Veuillez entrer un valeur entre %1 et %2 : + + LfoController @@ -2128,7 +2505,8 @@ Un clic-droit fera apparaître un menu contextuel où vous pourrez changer l&apo 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. @@ -2355,38 +2733,50 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS. Save as new &version - + Enregistrer comme nouvelle &version E&xport tracks... - + E&xporter les pistes... LMMS (*.mmp *.mmpz) - - - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - + LMMS (*.mmp *.mmpz) Version %1 - + Version %1 Project recovery - + Récupération de projet It looks like the last session did not end properly. Do you want to recover the project of this session? - + Il semble que la dernière session ne se soit pas terminée correctement. Voulez-vous récupérer le projet de cette session? 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 + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) @@ -2503,9 +2893,650 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS. Fixed output note + Note de sortie fixe + + + 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 + + + + + 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. + + + + + 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 + Volume général + + + Vibrato + Vibrato + + OscillatorObject @@ -2548,6 +3579,10 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS.Osc %1 waveform Forme d'onde de l'oscillateur %1 + + Osc %1 harmonic + + PatmanView @@ -2596,6 +3631,39 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS.Fichiers de son (*.pat) + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + double-cliquer pour ouvrir ce motif dans le piano virtuel +utilisez la molette de la souris pour régler le volume d'un pas + + + Open in piano-roll + Ouvrir dans le piano virtuel + + + Clear all notes + Effacer toutes les notes + + + Reset name + Réinitialiser le nom + + + Change name + Changer le nom + + + Add steps + Ajouter des pas + + + Remove steps + Supprimer des pas + + PeakController @@ -2604,11 +3672,11 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS. 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é 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. @@ -2638,31 +3706,31 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS. Attack: - Attaque : + Attaque : Release: - Relâchement : + Relâchement : AMNT - + AMNT MULT - + MULT Amount Multiplicator: - + Multiplicateur de quantité: ATCK - + ATCK DCAY - + DCAY @@ -2681,20 +3749,203 @@ Veuillez visiter http://lmms.sf.net/wiki pour la documentation de LMMS. Attack - Attaque + Attaque Release - Relâchement + Relâchement Abs Value - + Valeur Abs Amount Multiplicator + Multiplicateur de quantité + + + + PianoRoll + + Play/pause current pattern (Space) + Jouer/Mettre en pause le motif (Barre d'espace) + + + Stop playing of current pattern (Space) + Arrêter de jouer le motif (Barre d'espace) + + + Cut selected notes (Ctrl+X) + Couper les notes sélectionnées (Ctrl+X) + + + Copy selected notes (Ctrl+C) + Copier les notes sélectionnées (Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + Coller les notes se trouvant dans le presse-papier (Ctrl+V) + + + Piano-Roll - no pattern + Piano virtuel - pas de motif + + + Piano-Roll - %1 + Piano virtuel - %1 + + + Please open a pattern by double-clicking on it! + Veuillez ouvrir un motif en double-cliquant dessus ! + + + 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 + + + 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) + + + Last note + Dernière note + + + 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. + + + 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. + + + Note lock + Vérouiller la note + + + Note Volume + Volume de la note + + + Note Panning + Panoramique de la note + + + 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 Ctrl 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 Ctrl 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 Ctrl 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 Ctrl 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. + + + Mark/unmark current semitone + Cocher/décocher le demi-ton courant + + + Mark current scale + Cocher la gamme courante + + + Mark current chord + Cocher l'accord courant + + + Unmark all + Déchocher tout + + + No scale + Pas de gamme + + + No chord + Pas d'accord + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + Veuillez entrer un valeur entre %1 et %2 : + PianoView @@ -2723,6 +3974,10 @@ Raison : "%2" Failed to load plugin "%1"! Le chargement du greffon "%1" a échoué ! + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2740,87 +3995,87 @@ Raison : "%2" C Note name - + C Db Note name - + Db C# Note name - + C# D Note name - + D Eb Note name - + Eb D# Note name - + D# E Note name - + E Fb Note name - + Fb Gb Note name - + Gb F# Note name - + F# G Note name - + G Ab Note name - + Ab G# Note name - + G# A Note name - + A Bb Note name - + Bb A# Note name - + A# B Note name - + B @@ -2869,113 +4124,260 @@ Raison : "%2" File: Fichier : + + File: %1 + + SampleBuffer Open audio file - Ouvrir un fichier audio - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Tous les fichiers audio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) + Ouvrir un fichier audio Wave-Files (*.wav) - Fichiers WAVE (*.wav) + Fichiers WAVE (*.wav) OGG-Files (*.ogg) - Fichiers OGG (*.ogg) + Fichiers OGG (*.ogg) DrumSynth-Files (*.ds) - Fichiers DrumSynth (*.ds) + Fichiers DrumSynth (*.ds) FLAC-Files (*.flac) - Fichiers FLAC (*.flac) + Fichiers FLAC (*.flac) SPEEX-Files (*.spx) - Fichiers SPEEX (*.spx) - - - MP3-Files (*.mp3) - Fichiers MP3 (*.mp3) + Fichiers SPEEX (*.spx) VOC-Files (*.voc) - Fichiers VOC (*.voc) + Fichiers VOC (*.voc) AIFF-Files (*.aif *.aiff) - Fichiers AIFF (*.aif *.aiff) + Fichiers AIFF (*.aif *.aiff) AU-Files (*.au) - Fichiers AU (*.au) + Fichiers AU (*.au) RAW-Files (*.raw) - Fichiers RAW (*.raw) + Fichiers RAW (*.raw) + + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + SampleTCOView double-click to select sample - Double-cliquez pour choisir un échantillon + Double-cliquez pour choisir un échantillon Delete (middle mousebutton) - + Supprimer (bouton du milieu de la souris) Cut - Couper + Couper Copy - Copier + Copier Paste - Coller + Coller Mute/unmute (<Ctrl> + middle click) - Couper/Jouer (<Ctrl> + clic-milieu) + Couper/Jouer (<Ctrl> + clic-milieu) Set/clear record - Régler/Effacer l'enregistrement + Régler/Effacer l'enregistrement SampleTrack Sample track - Piste d'échantillon + Piste d'échantillon Volume - Volume + Volume SampleTrackView Track volume - Volume de la piste + Volume de la piste Channel volume: - Volume du canal : + Volume du canal : VOL - VOL + VOL + + + + SongEditor + + Song-Editor + Éditeur de morceau + + + Play song (Space) + Jouer le morceau (Barre d'espace) + + + 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 marquer (vert) de position dans le morceau. Vous pouvez aussi déplacer ce curseur pendant l'écoute. + + + Stop song (Space) + Arrêter de jouer le morceau (Barre d'espace) + + + 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. + + + Add beat/bassline + Ajouter une piste de rythme ou de ligne de basse + + + Add sample-track + Ajouter une piste d'échantillon + + + Could not open file + Le fichier n'a pas pu être ouvert + + + Could not write file + Le fichier n'a pas pu être écrit + + + Add automation-track + Ajouter une piste d'automation + + + Draw mode + Mode dessin + + + Edit mode (select and move) + Mode édition (Sélectionner et déplacer) + + + 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 + + + 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. Vos n'avez probablement pas le droit de lire ce fichier. +Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le répertoire qui contient ce fichier et réessayez. + + + Error in file + Il y a une ou plusieurs erreurs 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és. + + + 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 de ce morceau est spécifié en battements par minute (BPM). Si vous souhaitez changer 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. + + + + 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 @@ -3061,50 +4463,50 @@ Raison : "%2" TimeDisplayWidget click to change time units - + cliquez pour changer les unités de temps TrackContainer Couldn't import file - Le fichier n'a pas pu être importé + 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. + 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 + 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. + 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... + Chargement du projet... Cancel - Annuler + Annuler Please wait... - Veuillez patienter... + Veuillez patienter... Importing MIDI-file... - Importation du fichier MIDI... + Importation du fichier MIDI... Importing FLP-file... - Importation du fichier FLP... + Importation du fichier FLP... @@ -3254,22 +4656,22 @@ Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le ré Ui Contributors ordered by number of commits: - + Contributeurs classés par nombre de commits: Involved - + Impliqué VersionedSaveDialog Increment version number - + Incrémenter le numéro de version Decrement version number - + Décrémenter le numéro de version @@ -3312,110 +4714,110 @@ Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le ré 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 + 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 courant. 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 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 + 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 courant. Effect by: - + Effet par: &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> - + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> @@ -3424,58 +4826,306 @@ Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le ré Loading plugin Chargement du greffon - - Please wait while loading VST-plugin... - Veuillez patienter pendant le chargement du greffon VST... - - - Failed loading VST-plugin - Le chargement du greffon VST a échoué - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - Le greffon VST %1 n'a pas pu être chargé pour une raison quelconque. -S'il fonctionne avec d'autres logiciels VST sous Linux, merci de contacter un développeur LMMS ! - 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... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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. + Dessinez ici votre propre forme d'onde en faisant glisser votre souris sur ce graphique. + + + 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 + Normaliser + + + Click to normalize + + + + Invert + + + + Click to invert + + + + Smooth + Lisser + + + Click to smooth + + + + Sine wave + Onde sinusoïdale + + + Click for sine wave + + + + Triangle wave + Onde triangulaire + + + Click for triangle wave + + + + Click for saw wave + + + + Square wave + Onde carrée + + + Click for square wave @@ -3483,35 +5133,35 @@ S'il fonctionne avec d'autres logiciels VST sous Linux, merci de conta 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 @@ -3526,63 +5176,63 @@ S'il fonctionne avec d'autres logiciels VST sous Linux, merci de conta Portamento: - + Portamento: PORT - + PORT Filter Frequency: - + Fréquence du Filtre: FREQ - FRÉQ + FRÉQ Filter Resonance: - + Résonance du Filtre: RES - RES + RES Bandwidth: - + Largeur de bande: BW - + BW 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 @@ -3604,54 +5254,33 @@ S'il fonctionne avec d'autres logiciels VST sous Linux, merci de conta Inverser l'échantillon - Loop - Jouer en boucle + Stutter + ?? + Bégaiement - Stutter + Loopback point - - - bassBoosterControlDialog - FREQ - FRÉQ + Loop mode + Mode de jeu en boucle - Frequency: - Fréquence : + Interpolation mode + - GAIN - GAIN + None + - Gain: - Gain : + Linear + - RATIO - RAPPORT - - - Ratio: - Rapport : - - - - bassBoosterControls - - Frequency - Fréquence - - - Gain - Gain - - - Ratio - Rapport + Sinc + @@ -3686,11 +5315,11 @@ S'il fonctionne avec d'autres logiciels VST sous Linux, merci de conta Remove steps - Supprimer des pas + Supprimer des pas Add steps - Ajouter des pas + Ajouter des pas @@ -3711,6 +5340,10 @@ S'il fonctionne avec d'autres logiciels VST sous Linux, merci de conta Change color Changer la couleur + + Reset color to default + + bbTrack @@ -3720,7 +5353,7 @@ S'il fonctionne avec d'autres logiciels VST sous Linux, merci de conta Clone of %1 - + Clone de %1 @@ -3805,6 +5438,120 @@ S'il fonctionne avec d'autres logiciels VST sous Linux, merci de conta Cliquez ici pour une onde définie par l'utilisateur. + + 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 + + + exportProjectDialog @@ -3838,41 +5585,7 @@ Veuillez vérifier que vous avez les droits d'accès en écriture pour ce f fader Please enter a new value between %1 and %2: - Veuillez entrer un valeur entre %1 et %2 : - - - - fileBrowser - - Browser - Explorateur - - - - fileBrowserTreeWidget - - Send to active instrument-track - Envoyer vers la piste d'instrument actif - - - Open in new instrument-track/Song-Editor - Ouvrir dans une nouvelle piste d'instrument/Éditeur de morceau - - - 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 --- + Veuillez entrer un valeur entre %1 et %2 : @@ -3892,18 +5605,46 @@ Veuillez vérifier que vous avez les droits d'accès en écriture pour ce f End frequency Fréquence de fin - - Decay - Descente - - - Distortion - Distorsion - Gain Gain + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + Bruit + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + kickerInstrumentView @@ -3915,18 +5656,38 @@ Veuillez vérifier que vous avez les droits d'accès en écriture pour ce f End frequency: Fréquence de fin : - - Decay: - Descente : - - - Distortion: - Distorsion : - Gain: Gain : + + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: + + knob @@ -4213,6 +5974,38 @@ En double-cliquant sur ces greffons vous ferez apparaître des informations sur Click here for white-noise. Cliquez ici pour un bruit blanc. + + 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 @@ -4586,62 +6379,62 @@ En double-cliquant sur ces greffons vous ferez apparaître des informations sur 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. @@ -4655,39 +6448,39 @@ En double-cliquant sur ces greffons vous ferez apparaître des informations sur opl2instrument Patch - Son + Son 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 @@ -4759,15 +6552,15 @@ En double-cliquant sur ces greffons vous ferez apparaître des informations sur FM - + FM Vibrato Depth - + Profondeur de Vibrato Tremolo Depth - + Profondeur de Trémolo @@ -4807,14 +6600,30 @@ En double-cliquant sur ces greffons vous ferez apparaître des informations sur Osc %1 panning: Panoramique de l'oscillateur %1 : - - Osc %1 fine detuning left: - Désaccordage fin (gauche) de l'oscillateur %1 : - cents centièmes + + 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: + + papuInstrument @@ -5082,216 +6891,6 @@ En double-cliquant sur ces greffons vous ferez apparaître des informations sur Dessinez votre onde ici - - pattern - - Cannot freeze pattern - Le motif n'a pas pu être gelé - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - Le motif n'a pas pu être gelé car vous êtes en mode écoute. Veuillez arrêter de jouer le motif et recommencer ! - - - - patternFreezeStatusDialog - - Freezing pattern... - Gel du motif... - - - Cancel - Annuler - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - double-cliquer pour ouvrir ce motif dans le piano virtuel -utilisez la molette de la souris pour régler le volume d'un pas - - - Open in piano-roll - Ouvrir dans le piano virtuel - - - Clear all notes - Effacer toutes les notes - - - Reset name - Réinitialiser le nom - - - Change name - Changer le nom - - - Refreeze - Regeler - - - Freeze - Geler - - - Unfreeze - Dégeler - - - Add steps - Ajouter des pas - - - Remove steps - Supprimer des pas - - - - PianoRoll - - Play/pause current pattern (Space) - Jouer/Mettre en pause le motif (Barre d'espace) - - - Stop playing of current pattern (Space) - Arrêter de jouer le motif (Barre d'espace) - - - Cut selected notes (Ctrl+X) - Couper les notes sélectionnées (Ctrl+X) - - - Copy selected notes (Ctrl+C) - Copier les notes sélectionnées (Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - Coller les notes se trouvant dans le presse-papier (Ctrl+V) - - - Piano-Roll - no pattern - Piano virtuel - pas de motif - - - Piano-Roll - %1 - Piano virtuel - %1 - - - Please open a pattern by double-clicking on it! - Veuillez ouvrir un motif en double-cliquant dessus ! - - - 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 - - - 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) - - - Last note - Dernière note - - - 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. - - - 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. - - - Note lock - Vérouiller la note - - - Note Volume - Volume de la note - - - Note Panning - Panoramique de la note - - - 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 Ctrl 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 Ctrl 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 Ctrl 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 Ctrl 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. - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser @@ -5322,42 +6921,22 @@ utilisez la molette de la souris pour régler le volume d'un pasList installed LADSPA plugins Liste des greffons LADSPA installés - - three powerful oscillators you can modulate in several ways - Trois puissants oscillateurs que vous pouvez moduler de plusieurs façons - Filter for importing FL Studio projects into LMMS Filtre pour l'importation de projets Fruity Loops Studio dans LMMS - - versatile kick- & bassdrum-synthesizer - Synthétiseur de kick et grosse caisse polyvalent - GUS-compatible patch instrument Sons d'instruments compatibles avec la carte Gravis UltraSound (GUS) - - plugin for using arbitrary VST-effects inside LMMS. - Greffon pour l'utilisation d'effets VST dans LMMS. - Additive Synthesizer for organ-like sounds Synthétiseur additif pour sons d'orgue - - plugin for boosting bass - Greffon pour l'augmentation des basses - Tuneful things to bang on Instruments à frapper mélodieux - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - Échantilloneur simple avec différents réglages pour l'utilisation d'échantillons (p. ex. batteries) dans une piste d'instrument - VST-host for using VST(i)-plugins within LMMS Hôte VST pour l'utilisation de greffons VST(i) dans LMMS @@ -5405,14 +6984,70 @@ This chip was used in the Commodore 64 computer. 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 + + + + 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 @@ -5712,35 +7347,35 @@ Latence : %2 ms One instrument track window mode - + Mode fenêtre une piste d'instrument Compact track buttons - + Boutons de piste compacte Sync VST plugins to host playback - + Sync 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 Smooth scroll in Song Editor - + Déplacement fluide dans l'Editeur de Chanson Enable auto save feature - + Activer la fonction de sauvegarde automatique Show playback cursor in AudioFileProcessor - + Afficher le curseur de lecture dans AudioFileProcessor @@ -5877,7 +7512,7 @@ Latence : %2 ms sfxrInstrument Wave Form - + Forme d'Onde @@ -6106,158 +7741,11 @@ Latence : %2 ms Hydrogen projects - + Projets Hydrogen Select directory for writing exported tracks... - - - - - SongEditor - - Song-Editor - Éditeur de morceau - - - Play song (Space) - Jouer le morceau (Barre d'espace) - - - 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 marquer (vert) de position dans le morceau. Vous pouvez aussi déplacer ce curseur pendant l'écoute. - - - Stop song (Space) - Arrêter de jouer le morceau (Barre d'espace) - - - 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. - - - Add beat/bassline - Ajouter une piste de rythme ou de ligne de basse - - - Add sample-track - Ajouter une piste d'échantillon - - - Could not open file - Le fichier n'a pas pu être ouvert - - - Could not write file - Le fichier n'a pas pu être écrit - - - Add automation-track - Ajouter une piste d'automation - - - Draw mode - Mode dessin - - - Edit mode (select and move) - Mode édition (Sélectionner et déplacer) - - - 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 - - - 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. Vos n'avez probablement pas le droit de lire ce fichier. -Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le répertoire qui contient ce fichier et réessayez. - - - Error in file - Il y a une ou plusieurs erreurs 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és. - - - 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 de ce morceau est spécifié en battements par minute (BPM). Si vous souhaitez changer 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. - - - - - 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 + Sélectionnez un répertoire pour écrire les pistes exportées... @@ -6344,11 +7832,11 @@ Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le ré Press <Ctrl> to disable magnetic loop points. - + Appuyez sur <Ctrl> pour désactiver les marqueur magnétiques de jeu en boucle. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. - + Maintenez <Shift> pour déplacer le marqueur de début de jeu en boucle. Appuyez sur <Ctrl> pour désactiver les marqueurs magnétiques de jeu en boucle. @@ -6446,6 +7934,18 @@ Veuillez vérifier que vous avez les droits en lecture pour ce fichier et le ré Remove this track Supprimer cette piste + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + vestigeInstrument @@ -6780,4 +8280,74 @@ Le LED situé dans le coin en bas à droite de l'éditeur de forme d'o Test de la voix %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 + + + + + waveShaperControls + + Input gain + + + + Output gain + + + diff --git a/data/locale/gl.qm b/data/locale/gl.qm index 97cee737a..c36f2b4a8 100644 Binary files a/data/locale/gl.qm and b/data/locale/gl.qm differ diff --git a/data/locale/gl.ts b/data/locale/gl.ts index d830c5586..95bd83445 100644 --- a/data/locale/gl.ts +++ b/data/locale/gl.ts @@ -7,10 +7,6 @@ About LMMS Sobre o LMMS - - LMMS (Linux MultiMedia Studio) - LMMS (Estudio Multimedia de Linux) - Version %1 (%2/%3, Qt %4, %5) Versión %1 (%2/%3, Qt %4, %5) @@ -51,6 +47,64 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + LMMS + LMMS + + + + AmplifierControlDialog + + VOL + VOL + + + Volume: + Volume: + + + PAN + PAN + + + Panning: + Panorámica: + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + Volume + + + Panning + Panorámica + + + Left gain + + + + Right gain + + AudioAlsa::setupWidget @@ -81,14 +135,6 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións 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. - - Loop sample at start- and end-point - Repetir a mostra en bucle nos puntos inicial e final - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - Aquí pódese configurar se se desexa activar o modo de bucle. De activalo, o procesador de ficheiros de son repite entre os puntos inicial e final dunha mostra até que se toca a nota enteira. Isto é últil para cousas como mostras de corda e coro. - Amplify: Amplificar: @@ -101,18 +147,10 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións Startpoint: Punto inicial: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Con este botón pódese indicar o punto se desexa que o AudioFileProcessor comece a reproducir a mostra. Se o modo en bucle estiver activado, este é o punto ao que volta o AudioFileProcessor se unha nota é máis longa do que a mostra entre os puntos inicial e final. - Endpoint: Punto final: - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Con este botón pódese indicar o punto no que desexe o AudioFileProcessor pare a reprodución da mostra. Se o modo en bucle estiver activado, este é o punto ao que o AudioFileProcessor volve se a nota for máis longa que a mostra entre os puntos inicial e final. - Continue sample playback across notes @@ -121,6 +159,42 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións 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. + + AudioFileProcessorWaveView @@ -367,6 +441,10 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións Drag a control while pressing <Ctrl> Arrastre un control mentres ten <Ctrl> premido + + Model is already connected to this pattern. + + AutomationPatternView @@ -398,6 +476,10 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións Disconnect "%1" Desconectar «%1» + + Set/clear record + Indicar/Limpar a gravación + AutomationTrack @@ -406,6 +488,59 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións Pista de automatización + + BassBoosterControlDialog + + FREQ + FREQ + + + Frequency: + Frecuencia: + + + GAIN + GAIN + + + Gain: + Ganancia: + + + RATIO + TAXA + + + Ratio: + Taxa: + + + + BassBoosterControls + + Frequency + Frecuencia + + + Gain + Ganancia + + + Ratio + Taxa + + + + CarlaInstrumentView + + Show GUI + Mostrar a interface gráfica + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + Controller @@ -518,6 +653,132 @@ Se lle interesa traducir o LMMS a outro idioma ou desexa mellorar as traducións &Axuda + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + Pasa-baixas + + + HiPass + Pasa-altas + + + BandPass csg + Pasa-faixa csg + + + BandPass czpg + Pasa-faixa czpg + + + Notch + Entalle + + + Allpass + Pasa-todo + + + Moog + Moog + + + 2x LowPass + 2x Pasa-baixas + + + RC LowPass 12dB + RC pasa-baixa 12dB + + + RC BandPass 12dB + RC pasa-faixa 12dB + + + RC HighPass 12dB + RC pasa-alta 12dB + + + RC LowPass 24dB + RC pasa-baixa 24dB + + + RC BandPass 24dB + RC pasa-faixa 24dB + + + RC HighPass 24dB + RC pasa-alta 24dB + + + Vocal Formant Filter + Filtro de formante vocal + + Effect @@ -894,6 +1155,10 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar 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. + + ExportProjectDialog @@ -1021,14 +1286,6 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar 8x 8x - - Sample-exact controllers - Controladores de mostras exactas - - - Alias-free oscillators - Osciladores sen alias - Start Comezar @@ -1042,6 +1299,77 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar + + FileBrowser + + Browser + + + + + 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... + + + + --- Factory files --- + + + + + 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 + + + + &Help + &Axuda + + FxMixer @@ -1067,17 +1395,27 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar FX-Mixer Mesturador de efectos especiais + + + FxMixerView::FxChannelView FX Fader %1 - Fader de efectos %1 + Fader de efectos %1 Mute - Silenciar + Silenciar Mute this FX channel - Silenciar esta canle de efectos especiais + Silenciar esta canle de efectos especiais + + + + FxRoute + + Amount to send from channel %1 to channel %2 + @@ -1138,6 +1476,10 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar Sync Sincronizar + + Down and up + + InstrumentFunctionArpeggioView @@ -1151,7 +1493,7 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar RANGE - + INTERVALO Arpeggio range: @@ -1159,7 +1501,7 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar 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. @@ -1580,6 +1922,18 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + 5 + InstrumentFunctionNoteStackingView @@ -1642,6 +1996,18 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar NOTE + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + InstrumentSoundShaping @@ -1788,6 +2154,10 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar cutoff frequency: + + Envelopes, LFOs and filters are not supported by the current instrument. + + InstrumentTrack @@ -1873,10 +2243,6 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar GENERAL SETTINGS CONFIGURACIÓN XERAL - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - Prema aquí se desexa gravar a configuración desta canle nun ficheiro de predefinicións. Noutras ocasións poderá cargar estas predefinicións facendo duplo clic no navegador de predefinicións. - Instrument volume Volume do instrumento @@ -1949,16 +2315,20 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar PLUGIN ENGADIDO - - Save current channel settings in a preset-file - - Pitch range (semitones) RANGE + INTERVALO + + + 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. @@ -2006,6 +2376,13 @@ Ao premer co botón dereito aparece un menú de contexto no que se pode cambiar Solicitouse un engadido de LADSPA, %1, que é descoñecido. + + LcdSpinBox + + Please enter a new value between %1 and %2: + Introduza un valor novo entre %1 e %2: + + LfoController @@ -2383,11 +2760,23 @@ Visitehttp://lmms.sf.net/wiki para documentación sobre o LMMS. - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) + Version %1 - Version %1 + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) @@ -2506,6 +2895,647 @@ Visitehttp://lmms.sf.net/wiki para documentación sobre o LMMS. 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 + + + + + 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. + + + + + 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 + Volume global + + + Vibrato + Vibrato + OscillatorObject @@ -2549,6 +3579,10 @@ Visitehttp://lmms.sf.net/wiki para documentación sobre o LMMS. Osc %1 waveform Forma de onda do oscilador %1 + + Osc %1 harmonic + + PatmanView @@ -2597,6 +3631,39 @@ Visitehttp://lmms.sf.net/wiki para documentación sobre o LMMS. Ficheiros de parches (*.pat) + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + faga duplo clic para abrir este padrón na pianola +empregue a roda do rato para modificar o volume un paso + + + Open in piano-roll + Abrir na pianola + + + 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 + + PeakController @@ -2697,6 +3764,189 @@ Visitehttp://lmms.sf.net/wiki para documentación sobre o LMMS. + + PianoRoll + + Play/pause current pattern (Space) + Reproducir/Deter o padrón actual (Espazo) + + + Stop playing of current pattern (Space) + Parar a execución do padrón actual (Espazo) + + + Cut selected notes (Ctrl+X) + Recortar as notas escollidas (Ctrl+X) + + + Copy selected notes (Ctrl+C) + Copiar as notas escollidas (Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + Apegar as notas do porta-retallos (Ctrl+V) + + + Piano-Roll - no pattern + Pianola - non hai ningún padrón + + + Piano-Roll - %1 + Pianola - %1 + + + Please open a pattern by double-clicking on it! + Abra un padrón facendo duplo clic nel! + + + Record notes from MIDI-device/channel-piano + Gravar notas dun dispositivo MIDI/piano de canle + + + Record notes from MIDI-device/channel-piano while playing song or BB track + Gravar notas dun dispositivo MIDI/piano de canle mentres se reproduce a canción ou pista de ritmos/liña do baixo + + + Draw mode (Shift+D) + Modo de debuxo (Maiúsculas+D) + + + Erase mode (Shift+E) + Modo de borrado (Maiúsculas+E) + + + Select mode (Shift+S) + Modo de selección (Maiúscula+S) + + + Last note + Última nota + + + Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. + Prema aquí para reproducir este padrón. Isto é útil mentres se edita. O padrón repítese en bucle automaticamente ao chegar ao final. + + + 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. + Prema aquí para gravar notas desde un dispositivo MIDI ou desde o piano de proba virtual da xanela da canle correspondente no padrón actual. As notas tocadas ao gravar escríbense neste padrón e despois pódense editar. + + + 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. + Prema aquí para gravar notas desde un dispositivo MIDI ou desde o piano de proba virtual da xanela da canle correspondente no padrón actual. As notas tocadas ao gravar escríbense neste padrón e escóitase a canción ou pista de ritmos/liña do baixo no fondo. + + + Click here to stop playback of current pattern. + Prema aquí para parar a reprodución deste padrón. + + + 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. + Prema aquí e os valores escollidos recórtanse e van para o porta-retallos. Pódeos apegar en calquera lugar de calquera padrón premendo o botón de apegar. + + + 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. + Prema aquí e os valores escollidos cópianse no porta-retallos. Pódeos apegar en calquera lugar de calquera padrón premendo o botón de apegar. + + + Click here and the notes from the clipboard will be pasted at the first visible measure. + Prema aquí e os valores do porta-retallos apegaranse no primeiro compás visíbel. + + + Note lock + Bloqueo de notas + + + Note Volume + Volume das notas + + + Note Panning + Panormámica das notas + + + Detune mode (Shift+T) + Modo de desafinación (Maiúsculas+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 Ctrl to temporarily go into select mode. + Prema aquí e o activarase o modo de debuxo. Neste modo pode engadir e mover valores individuais. Este é o modo por omisión que se emprega a maior parte do tempo. Tamén pode premer «Maiúsculas+D» no teclado para activar este modo. Neste modo, manteña Ctrl para ir temporalmente ao 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. + Prema aquí e activarase o modo de borrado. Neste modo pódense borrar valores individuais. Tamén pode premer «Maiúsculas+E» no teclado para activar este modo. + + + Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. + Prema aquí e activarase o modo de borrado. Neste modo pódense borrar valores individuais. Como alternativa pode premer Ctrl no modo de debuxo para empregar temporalmente o 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. + Prema aquí e actívase o modo de desafinación.Neste modo pódese premer unhanota para abrir a súa desafinación de automatización. Pódese empregar isto para escorregar entre as notas. Tamén se pode premer «Maiúsculas+T» no teclado para activar este mdo. + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + + + + No scale + + + + No chord + + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + Introduza un valor novo entre %1 e %2: + + PianoView @@ -2724,6 +3974,10 @@ Razón: «%2» Failed to load plugin "%1"! Fallou a carga do engadido «%1»! + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2870,6 +4124,10 @@ Razón: «%2» File: Ficheiro: + + File: %1 + + SampleBuffer @@ -2877,10 +4135,6 @@ Razón: «%2» Open audio file Abrir un ficheiro de son - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Todos os ficheiros de son (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Wave-Files (*.wav) Ficheiros wave (*.wav) @@ -2901,10 +4155,6 @@ Razón: «%2» SPEEX-Files (*.spx) Ficheiros SPEEX (*.spx) - - MP3-Files (*.mp3) - Ficheiros MP3 (*.mp3) - VOC-Files (*.voc) Ficheiros VOC (*.voc) @@ -2921,6 +4171,10 @@ Razón: «%2» RAW-Files (*.raw) Ficheiros RAW (*.raw) + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + SampleTCOView @@ -2979,6 +4233,152 @@ Razón: «%2» VOL + + SongEditor + + Song-Editor + Editor de cancións + + + Play song (Space) + Reproducir unha canción (Espazo) + + + 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. + Prema aquí se desexa reproducir a canción enteira. A reprodución comeza no marcador de posición da canción (verde). Tamén se pode mover durante a reprodución. + + + Stop song (Space) + Parar a canción (Espazo) + + + Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. + Prema aquí se desexa parar a reprodución da canción. O marcador de posición da canción irá para o principio da canción. + + + Add beat/bassline + Engadir un ritmo/liña do baixo + + + Add sample-track + Engadir unha pista de mostra + + + Could not open file + Non foi posíbel abrir o ficheiro + + + Could not write file + Non foi posíbel escribir no ficheiro + + + Add automation-track + Engaidr unha pista de automatización + + + Draw mode + Modo de debuxo + + + Edit mode (select and move) + Modo de edición (escoller e mover) + + + Record samples from Audio-device + Gravar mostras dun dispositivo de son + + + Record samples from Audio-device while playing song or BB track + Gravar mostras dun dispositivo de son mentres se reproduce a canción ou pista de ritmos/liña do baixo + + + 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. + + + 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 + + + TEMPO/BPM + TEMPO/BPM + + + tempo of song + tempo da 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). + O tempo dunha canción indícase en pulsos por minuto (BPM). Para cambiar o tempo da canción hai que cambiar este valor. Cada compás ten catro pulsos, polo que o tempo en BPM indica cantos compases / 4 hai que tocar nun minuto (ou cantos compases habería que tocar en catro minutos). + + + High quality mode + Modo de alta calidade + + + Master volume + Volume global + + + master volume + volume global + + + Master pitch + Altura global + + + master pitch + altura global + + + Value: %1% + Valor: %1% + + + Value: %1 semitones + Valor: %1 semitóns + + + 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. + + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + Espectro linear + + + Linear Y axis + Eixo linear Y + + + + SpectrumAnalyzerControls + + Linear spectrum + Espectro linear + + + Linear Y axis + Eixo linear Y + + + Channel mode + Modo da canle + + TempoSyncKnob @@ -3425,20 +4825,6 @@ Asegúrese de ter permiso de lectura sobre o ficheiro e o directorio que o cont Loading plugin A cargar un engadido - - Please wait while loading VST-plugin... - Agarde mentres se carga o engadido de VST... - - - Failed loading VST-plugin - Fallou a carga do engadido de VST - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - Non foi posíbel cargar o engadido de VST %1 por algunha razón. -Se funciona con outro software de VST en Linux, contacte cun desenvolvedor do LMMS! - Open Preset @@ -3479,6 +4865,268 @@ Se funciona con outro software de VST en Linux, contacte cun desenvolvedor do LM .fxb + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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. + 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 + + ZynAddSubFxInstrument @@ -3604,55 +5252,33 @@ Se funciona con outro software de VST en Linux, contacte cun desenvolvedor do LM Reverse sample Inverter a mostra - - Loop - Bucle - Stutter - - - bassBoosterControlDialog - FREQ - FREQ + Loopback point + - Frequency: - Frecuencia: + Loop mode + Modo de bucle - GAIN - GAIN + Interpolation mode + - Gain: - Ganancia + None + - RATIO - TAXA + Linear + - Ratio: - Taxa: - - - - bassBoosterControls - - Frequency - Frecuencia - - - Gain - Ganancia - - - Ratio - Taxa + Sinc + @@ -3712,6 +5338,10 @@ Se funciona con outro software de VST en Linux, contacte cun desenvolvedor do LM Change color Mudar a cor + + Reset color to default + + bbTrack @@ -3806,6 +5436,120 @@ Se funciona con outro software de VST en Linux, contacte cun desenvolvedor do LM Prema aquí para unha forma definida polo usuario. + + 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 + + + exportProjectDialog @@ -3842,40 +5586,6 @@ Asegúrese de ter permisos sobre o ficheiro e o directorio que o contén e tente Introduza un valor novo entre %1 e %2: - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - - - graphModel @@ -3893,18 +5603,46 @@ Asegúrese de ter permisos sobre o ficheiro e o directorio que o contén e tente End frequency Frecuencia final - - Decay - Decaemento - - - Distortion - Distorsión - Gain Ganancia + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + Ruído + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + kickerInstrumentView @@ -3916,18 +5654,38 @@ Asegúrese de ter permisos sobre o ficheiro e o directorio que o contén e tente End frequency: Frecuencia final: - - Decay: - Decaemento: - - - Distortion: - Distorsión: - Gain: Ganancia: + + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: + + knob @@ -4214,6 +5972,38 @@ Facendo duplo clic sobre calquera dos engadidos mostra información sobre os por 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. + + lb303Synth @@ -4808,14 +6598,30 @@ Facendo duplo clic sobre calquera dos engadidos mostra información sobre os por Osc %1 panning: Panorámica do oscilador %1: - - Osc %1 fine detuning left: - Desafinación fina esquerda 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 + + + + Osc %1 harmonic: + + papuInstrument @@ -5083,216 +6889,6 @@ Facendo duplo clic sobre calquera dos engadidos mostra información sobre os por Debuxe a onda aquí - - pattern - - Cannot freeze pattern - Non é posíbel conxelar o padrón - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - Non é posíbel conxelar agora o padrón porque estamos no modo de reprodución. Pare e ténteo de novo! - - - - patternFreezeStatusDialog - - Freezing pattern... - A conxelar o padrón... - - - Cancel - Cancelar - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - faga duplo clic para abrir este padrón na pianola -empregue a roda do rato para modificar o volume un paso - - - Open in piano-roll - Abrir na pianola - - - Clear all notes - Limpar todas as notas - - - Reset name - Restaurar o nome - - - Change name - Mudar o nome - - - Refreeze - Reconxelar - - - Freeze - Conxelar - - - Unfreeze - Desconxelar - - - Add steps - Engadir pasos - - - Remove steps - Eliminar pasos - - - - PianoRoll - - Play/pause current pattern (Space) - Reproducir/Deter o padrón actual (Espazo) - - - Stop playing of current pattern (Space) - Parar a execución do padrón actual (Espazo) - - - Cut selected notes (Ctrl+X) - Recortar as notas escollidas (Ctrl+X) - - - Copy selected notes (Ctrl+C) - Copiar as notas escollidas (Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - Apegar as notas do porta-retallos (Ctrl+V) - - - Piano-Roll - no pattern - Pianola - non hai ningún padrón - - - Piano-Roll - %1 - Pianola - %1 - - - Please open a pattern by double-clicking on it! - Abra un padrón facendo duplo clic nel! - - - Record notes from MIDI-device/channel-piano - Gravar notas dun dispositivo MIDI/piano de canle - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Gravar notas dun dispositivo MIDI/piano de canle mentres se reproduce a canción ou pista de ritmos/liña do baixo - - - Draw mode (Shift+D) - Modo de debuxo (Maiúsculas+D) - - - Erase mode (Shift+E) - Modo de borrado (Maiúsculas+E) - - - Select mode (Shift+S) - Modo de selección (Maiúscula+S) - - - Last note - Última nota - - - Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. - Prema aquí para reproducir este padrón. Isto é útil mentres se edita. O padrón repítese en bucle automaticamente ao chegar ao final. - - - 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. - Prema aquí para gravar notas desde un dispositivo MIDI ou desde o piano de proba virtual da xanela da canle correspondente no padrón actual. As notas tocadas ao gravar escríbense neste padrón e despois pódense editar. - - - 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. - Prema aquí para gravar notas desde un dispositivo MIDI ou desde o piano de proba virtual da xanela da canle correspondente no padrón actual. As notas tocadas ao gravar escríbense neste padrón e escóitase a canción ou pista de ritmos/liña do baixo no fondo. - - - Click here to stop playback of current pattern. - Prema aquí para parar a reprodución deste padrón. - - - 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. - Prema aquí e os valores escollidos recórtanse e van para o porta-retallos. Pódeos apegar en calquera lugar de calquera padrón premendo o botón de apegar. - - - 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. - Prema aquí e os valores escollidos cópianse no porta-retallos. Pódeos apegar en calquera lugar de calquera padrón premendo o botón de apegar. - - - Click here and the notes from the clipboard will be pasted at the first visible measure. - Prema aquí e os valores do porta-retallos apegaranse no primeiro compás visíbel. - - - Note lock - Bloqueo de notas - - - Note Volume - Volume das notas - - - Note Panning - Panormámica das notas - - - Detune mode (Shift+T) - Modo de desafinación (Maiúsculas+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 Ctrl to temporarily go into select mode. - Prema aquí e o activarase o modo de debuxo. Neste modo pode engadir e mover valores individuais. Este é o modo por omisión que se emprega a maior parte do tempo. Tamén pode premer «Maiúsculas+D» no teclado para activar este modo. Neste modo, manteña Ctrl para ir temporalmente ao 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. - Prema aquí e activarase o modo de borrado. Neste modo pódense borrar valores individuais. Tamén pode premer «Maiúsculas+E» no teclado para activar este modo. - - - Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. - Prema aquí e activarase o modo de borrado. Neste modo pódense borrar valores individuais. Como alternativa pode premer Ctrl no modo de debuxo para empregar temporalmente o 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. - Prema aquí e actívase o modo de desafinación.Neste modo pódese premer unhanota para abrir a súa desafinación de automatización. Pódese empregar isto para escorregar entre as notas. Tamén se pode premer «Maiúsculas+T» no teclado para activar este mdo. - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser @@ -5323,42 +6919,22 @@ empregue a roda do rato para modificar o volume un paso List installed LADSPA plugins Enumerar os engadidos de LADSPA instalados - - three powerful oscillators you can modulate in several ways - tres potentes osciladores que se poden modular de varias maneiras - Filter for importing FL Studio projects into LMMS Filtro para importar proxectos do FL Studio ao LMMS - - versatile kick- & bassdrum-synthesizer - sintetizador de kick e tambor baixo versátil - GUS-compatible patch instrument Instrumento de parcheo compatíbel con GUS - - plugin for using arbitrary VST-effects inside LMMS. - engadido para empregar efectos de VST arbitrarios no LMMS. - Additive Synthesizer for organ-like sounds Sintetizador aditivo para sons tipo órgano - - plugin for boosting bass - engadido para potenciar os graves - Tuneful things to bang on Cousas melodiosas nas que bater - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - sampleador simple con varias opcións para empregar mostras (p.ex. batería) nunha pista de instrumento - VST-host for using VST(i)-plugins within LMMS Hóspede de VST para empregar engadidos de VST(i) co LMMS @@ -5417,6 +6993,62 @@ Este chip empregábase no computador Commodore 64. 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 + + projectNotes @@ -6115,152 +7747,6 @@ Latencia: %2 ms - - SongEditor - - Song-Editor - Editor de cancións - - - Play song (Space) - Reproducir unha canción (Espazo) - - - 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. - Prema aquí se desexa reproducir a canción enteira. A reprodución comeza no marcador de posición da canción (verde). Tamén se pode mover durante a reprodución. - - - Stop song (Space) - Parar a canción (Espazo) - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Prema aquí se desexa parar a reprodución da canción. O marcador de posición da canción irá para o principio da canción. - - - Add beat/bassline - Engadir un ritmo/liña do baixo - - - Add sample-track - Engadir unha pista de mostra - - - Could not open file - Non foi posíbel abrir o ficheiro - - - Could not write file - Non foi posíbel escribir no ficheiro - - - Add automation-track - Engaidr unha pista de automatización - - - Draw mode - Modo de debuxo - - - Edit mode (select and move) - Modo de edición (escoller e mover) - - - Record samples from Audio-device - Gravar mostras dun dispositivo de son - - - Record samples from Audio-device while playing song or BB track - Gravar mostras dun dispositivo de son mentres se reproduce a canción ou pista de ritmos/liña do baixo - - - 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. - - - 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 - - - TEMPO/BPM - TEMPO/BPM - - - tempo of song - tempo da 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). - O tempo dunha canción indícase en pulsos por minuto (BPM). Para cambiar o tempo da canción hai que cambiar este valor. Cada compás ten catro pulsos, polo que o tempo en BPM indica cantos compases / 4 hai que tocar nun minuto (ou cantos compases habería que tocar en catro minutos). - - - High quality mode - Modo de alta calidade - - - Master volume - Volume global - - - master volume - volume global - - - Master pitch - Altura global - - - master pitch - altura global - - - Value: %1% - Valor: %1% - - - Value: %1 semitones - Valor: %1 semitóns - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - Espectro linear - - - Linear Y axis - Eixo linear Y - - - - spectrumAnalyzerControls - - Linear spectrum - Espectro linear - - - Linear Y-axis - Eixo linear Y - - - Channel mode - Modo da canle - - stereoEnhancerControlDialog @@ -6447,6 +7933,18 @@ Latencia: %2 ms Remove this track Eliminar esta pista + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + vestigeInstrument @@ -6781,4 +8279,74 @@ O LED do recanto inferior dereito do editor da forma da onda determina se a cord Proba da voz %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 + + + + + waveShaperControls + + Input gain + + + + Output gain + + + diff --git a/data/locale/it.qm b/data/locale/it.qm index c7793e413..a65af6f4e 100644 Binary files a/data/locale/it.qm and b/data/locale/it.qm differ diff --git a/data/locale/it.ts b/data/locale/it.ts index f00ceea3c..4d29871d6 100644 --- a/data/locale/it.ts +++ b/data/locale/it.ts @@ -5,614 +5,878 @@ AboutDialog About LMMS - + About LMMS LMMS (Linux MultiMedia Studio) - + LMMS (Linux MultiMedia Studio) Version %1 (%2/%3, Qt %4, %5) - + Versione %1 (%2/%3, Qt %4, %5) About - Informazioni su + Informazioni su LMMS - easy music production for everyone - + LMMS - Produzione musicale semplice per tutti Authors - + Autori Translation - + Traduzione Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! - + Se hai partecipato alla traduzione ed il tuo nome non è presente in questa lista, aggiungilo! + Roberto Giaconia <derobyj@gmail.com> + +Se sei interessato a tradurre LMMS o vuoi migliorare una traduzione esistente, sei il benvenuto! License - + Licenza Copyright (c) 2004-2014, LMMS developers - + Copyright (c) 2004-2014, LMMS developers <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> - + <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + + + AmplifierControlDialog + + VOL + VOL + + + Volume: + Volume: + + + PAN + BIL + + + 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 AudioAlsa::setupWidget DEVICE - PERIFERICA + PERIFERICA CHANNELS - CANALI + CANALI AudioFileProcessorView Open other sample - Apri un altro campione + 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. + 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 + 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. - - - Loop sample at start- and end-point - Ripeti il campione tra i punti di inizio e fine - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - Qui è possibile impostare se la modalità ripetizione è attiva. AudioFileProcessor riproduce tra i punti di inizio e fine di un campione finché tutta la nota è stata suonata. Ciò è utile per campioni di strumenti a corda e cori. + Attivando questo pulsante, l'intero campione viene invertito. Ciò è utile per effetti particolari, ad es. un crash invertito. Amplify: - Amplificazione: + 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!) + 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: - - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Questa manopola regola il punto in cui AudioFileProcessor inizierà la riproduzione. Se la modalità ripetizione è attiva, questo è il punto in cui la riproduzione ritorna se una nota è più lunga del campione tra i punti di inizio e fine. + Punto di inizio: Endpoint: - Punto di fine: - - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Questa manopola regola il punto in cui AudioFileProcessor terminerà la riproduzione. Se la modalità ripetizione è attiva, questo è il punto in cui la riproduzione si ferma se una nota è più lunga del campione tra i punti di inizio e fine. + 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. AudioJack::setupWidget CLIENT-NAME - NOME DEL CLIENT + NOME DEL CLIENT CHANNELS - CANALI + CANALI AudioOss::setupWidget DEVICE - PERIFERICA + PERIFERICA CHANNELS - CANALI + CANALI AudioPortAudio::setupWidget BACKEND - SOTTOSISTEMA + USCITA POSTERIORE DEVICE - PERIFERICA + PERIFERICA AudioPulseAudio::setupWidget DEVICE - PERIFERICA + PERIFERICA CHANNELS - CANALI + CANALI AudioSdl::setupWidget DEVICE - PERIFERICA + PERIFERICA AutomatableModel &Reset (%1%2) - &Reimposta (%1%2) + &Reimposta (%1%2) &Copy value (%1%2) - &Copia valore (%1%2) + &Copia valore (%1%2) &Paste value (%1%2) - &Incolla valore (%1%2) + &Incolla valore (%1%2) Edit song-global automation - Modifica l'automazione globale della traccia + Modifica l'automazione globale della traccia Connected to %1 - Connesso a %1 + Connesso a %1 Connected to controller - Connesso al controller + Connesso a un controller Edit connection... - Modifica connessione... + Modifica connessione... Remove connection - Rimuovi connessione + Rimuovi connessione Connect to controller... - Connetti al 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 Play/pause current pattern (Space) - Riproduci/metti in pausa questo pattern (Spazio) + Riproduci/metti in pausa questo pattern (Barra Spaziatrice) Stop playing of current pattern (Space) - Ferma la riproduzione di questo pattern (Spazio) + Ferma la riproduzione di questo pattern (Barra Spaziatrice) 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. + Cliccando qui si riproduce il pattern selezionato. Questo è utile mentre lo si modifica. Il pattern viene automaticamente ripetuto quando finisce. Click here if you want to stop playing of the current pattern. - Cliccando qui si ferma la riproduzione del pattern. + Cliccando qui si ferma la riproduzione del pattern. Draw mode (Shift+D) - Modalità disegno (Shift+D) + Modalità disegno (Shift+D) Erase mode (Shift+E) - Modalità cancellazione (Shift+E) + Modalità cancella (Shift+E) 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'. + 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'. + 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'. Cut selected values (Ctrl+X) - Taglia i valori selezionati (Ctrl+X) + Taglia i valori selezionati (Ctrl+X) Copy selected values (Ctrl+C) - Copia i valori selezionati (Ctrl+C) + Copia i valori selezionati (Ctrl+C) Paste values from clipboard (Ctrl+V) - Incolla i valori selezionati (Ctrl+V) + Incolla i valori selezionati (Ctrl+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 nella clipboard. È possibile incollarli ovunque, in qualsiasi pattern, cliccando il pulsante Incolla. + Cliccando qui i valori selezionati vengono spostati nella clipboard. È 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 della clipboard. È possibile incollarli ovunque, in qualsiasi pattern, cliccando il pulsante Incolla. + Cliccando qui i valori selezionati vengono copiati della clipboard. È 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 nella clipboard vengono incollati alla prima battuta visibile. + Cliccando qui i valori nella clipboard vengono incollati alla prima battuta visibile. Automation Editor - no pattern - Editor dell'automazione - nessun pattern + Editor dell'automazione - nessun pattern Automation Editor - %1 - Editor dell'automazione - %1 + Editor dell'automazione - %1 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! + È necessario aprire un pattern di automazione con il menu contestuale di un controllo! Values copied - Valori copiati + Valori copiati All selected values were copied to the clipboard. - Tutti i valori sono stati copiati nella clipboard. + Tutti i valori sono stati copiati nella clipboard. Discrete progression - + Progressione discreta Linear progression - + Progressione lineare Cubic Hermite progression - + Progressione a cubica di Hermite Tension: - + tensione: 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. Tension value for spline - + Valore di tensione per 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'alta tensione può creare una curva più morbida, ma potrebbe non eseguire alcuni valori con precisione. Una bassa tensione farà stabilizzare la pendenza della curva verso i valori dei punti disegnati. AutomationPattern Drag a control while pressing <Ctrl> - È possibile disegnare un controllo tenendo premuto <Ctrl> + Trascina un controllo tenendo premuto <Ctrl> + + + Model is already connected to this pattern. + Il cntrollo è già connesso a questo pattern. AutomationPatternView double-click to open this pattern in automation editor - Con un doppio click si apre il pattern nell'editor dell'automazione + Fai doppio-click per disegnare questo pattern di automazione Open in Automation editor - Apri dell'editor dell'Automazione + Apri nell'editor dell'Automazione Clear - Pulisci + Pulisci Reset name - + Reimposta nome Change name - Cambia nome + Rinomina %1 Connections - %1 connessioni + %1 connessioni Disconnect "%1" - Disconnetti "%1" + Disconnetti "%1" + + + Set/clear record + Accendi/spegni registrazione AutomationTrack Automation track - Traccia di automazione + Traccia di automazione + + + + BassBoosterControlDialog + + FREQ + FREQ + + + Frequency: + Frequenza: + + + GAIN + GUAD + + + Gain: + Guadagno: + + + RATIO + RAPP + + + Ratio: + Rapporto: + + + + BassBoosterControls + + Frequency + Frequenza + + + Gain + Guadagno + + + Ratio + Rapporto dinamico + + + + CarlaInstrumentView + + Show GUI + Mostra GUI + + + 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. Controller Controller %1 - Controller %1 + Controller %1 ControllerConnectionDialog Connection Settings - Impostazioni connessione + Impostazioni connessione MIDI CONTROLLER - CONTROLLER MIDI + CONTROLLER MIDI Input channel - Canale di ingresso + Canale di ingresso CHANNEL - CANALE + CANALE Input controller - + Controller di input CONTROLLER - CONTROLLER + CONTROLLER Auto Detect - Rilevamento automatico + Rilevamento automatico MIDI-devices to receive MIDI-events from - Le periferiche MIDI ricevono eventi MIDI da + Le periferiche MIDI ricevono eventi MIDI da USER CONTROLLER - CONTROLLER PERSONALIZZATO + CONTROLLER PERSONALIZZATO MAPPING FUNCTION - FUNZIONE DI MAPPATURA + FUNZIONE DI MAPPATURA OK - OK + OK Cancel - Annulla + Annulla LMMS - LMMS + LMMS Cycle Detected. - Ciclo rilevato. + Ciclo rilevato. ControllerRackView Controller Rack - Rack di Controller + Rack di Controller Add - Aggiungi + Aggiungi Confirm Delete - + Conferma eliminazione Confirm delete? There are existing connection(s) associted 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 + 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. + I controller possono automatizzare il valore di una manopola, di uno slider e di altri controlli. Rename controller - Rinomina controller + Rinomina controller Enter the new name for this controller - Inserire il nuovo nome di questo controller + Inserire il nuovo nome di questo controller &Remove this plugin - &Elimina questo plugin + &Elimina questo plugin &Help - &Aiuto + &Aiuto + + + + 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 + + + + 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 Effect Effect enabled - Effetto attivo + Effetto attivo Wet/Dry mix - miscelazione Wet/Dry + Bilanciamento Wet/Dry Gate - Gate + Gate Decay - Decadimento + Decadimento EffectChain Effects enabled - Effetti abilitati + Effetti abilitati EffectRackView EFFECTS CHAIN - CATENA DI EFFETTI + CATENA DI EFFETTI Add effect - Aggiungi effetto + Aggiungi effetto EffectSelectDialog Add effect - Aggiungi effetto + Aggiungi effetto Plugin description - + Descrizione Plugin EffectView Toggles the effect on or off. - Abilita o disabilita l'effetto. + Abilita o disabilita l'effetto. On/Off - On/Off + On/Off W/D - W/D + W/D Wet Level: - Livello del segnale effettato: + 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. + La manopola Wet/Dry imposta il rapporto tra il segnale in ingresso e la quantità di effetto udibile in uscita. DECAY - + DECAY Time: - Tempo: + 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. + La manopola Decadimento controlla quanto silenzio deve esserci prima che il plugin si fermi. Valori più piccoli riducono il carico del processore ma rischiano di troncare la parte finale degli effetti di delay. GATE - GATE + GATE Gate: - Gate: + Gate: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - La manopola Gate controlla il livello del segnale che è considerato 'silenzio' per decidere quando smettere di processare i segnali. + La manopola Gate controlla il livello del segnale che è considerato 'silenzio' per decidere quando smettere di processare i segnali. Controls - Controlli + Controlli Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. @@ -628,13 +892,13 @@ The Gate knob controls the 'given threshold' for the effect's aut 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 dove il segnale li attraversa dall'alto verso il basso. + I plugin di effetti funzionano come una catena di effetti sottoposti al segnale dall'alto verso il basso. -Il selettore On/Off permette di saltare un certo plugin in qualsiasi momento. +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 effettato che viene generato 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 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 più processore, quindi il tempo è tipicamente basso per la maggior parte degli effetti. È necessario aumentarlo per effetti che producono lunghi periodi di silenzio, ad es. i delay. +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. @@ -644,2095 +908,3110 @@ Con il click destro si apre un menu conestuale che permette di cambiare l'o Move &up - Sposta verso l'&alto + Sposta verso l'&alto Move &down - Sposta verso il &basso + Sposta verso il &basso &Remove this plugin - &Elimina questo plugin + &Elimina questo plugin &Help - &Aiuto + &Aiuto EnvelopeAndLfoParameters Predelay - Ritardo iniziale + Ritardo iniziale Attack - Attacco + Attacco Hold - Mantenimento + Mantenimento Decay - Decadimento + Decadimento Sustain - Sostegno + Sostegno Release - Rilascio + Rilascio Modulation - Modulazione + Modulazione LFO Predelay - Ritardo iniziale dell'LFO + Ritardo iniziale dell'LFO LFO Attack - Attacco dell'LFO + Attacco dell'LFO LFO speed - Velocità dell'LFO + Velocità dell'LFO LFO Modulation - Modulazione dell'LFO + Modulazione dell'LFO LFO Wave Shape - Forma d'onda dell'LFO + Forma d'onda dell'LFO Freq x 100 - Freq x 100 + Freq x 100 Modulate Env-Amount - Modula la quantità di Env + Modula la quantità di Env EnvelopeAndLfoView DEL - RIT + RIT Predelay: - Ritardo iniziale: + Ritardo iniziale: Use this knob for setting predelay of the current envelope. The bigger this value the longer the time before start of actual envelope. - Questa manopola imposta il ritardo iniziale dell'envelope selezionato. Più grande è questo valore più tempo passerà prima che l'envelope effettivo inizi. + Questa manopola imposta il ritardo iniziale dell'envelope selezionato. Più grande è questo valore più tempo passerà prima che l'envelope effettivo inizi. ATT - ATT + ATT Attack: - Attacco: + Attacco: Use this knob for setting attack-time of the current envelope. The bigger this value the longer the envelope needs to increase to attack-level. Choose a small value for instruments like pianos and a big value for strings. - Questa manopola imposta il tempo di attacco dell'envelope selezionato. Più grande è questo valore più tempo passa prima di raggiungere il livello di attacco. Scegliere un valore contenuto per strumenti come pianoforti e un valore grande per gli archi. + Questa manopola imposta il tempo di attacco dell'envelope selezionato. Più grande è questo valore più tempo passa prima di raggiungere il livello di attacco. Scegliere un valore contenuto per strumenti come pianoforti e un valore grande per gli archi. HOLD - MANT + MANT Hold: - Mantenimento: + Mantenimento: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Questa manopola imposta il tempo di mantenimento dell'envelope selezionato. Più grande è questo valore più a lungo l'envelope manterrà il livello di attacco prima di cominciare a scendere verso il livello di sostegno. + Questa manopola imposta il tempo di mantenimento dell'envelope selezionato. Più grande è questo valore più a lungo l'envelope manterrà il livello di attacco prima di cominciare a scendere verso il livello di sostegno. DEC - DEC + DEC Decay: - Decadimento: + Decadimento: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Questa manopola imposta il tempo di decdimento dell'envelope selezionato. Più grande è questo valore più lentamente l'envelope decadrà dal livello di attacco a quello di sustain. Scegliere un valore piccolo per strumenti come i pianoforti. + Questa manopola imposta il tempo di decdimento dell'envelope selezionato. Più grande è questo valore più lentamente l'envelope decadrà dal livello di attacco a quello di sustain. Scegliere un valore piccolo per strumenti come i pianoforti. SUST - SOST + SOST Sustain: - Sostegno: + Sostegno: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Questa manopola imposta il livello di sostegno dell'anvelope selezionato. Più grande è questo valore più sarà alto il livello che l'envelope manterrà prima di scendere a zero. + Questa manopola imposta il livello di sostegno dell'envelope selezionato. Più grande è questo valore più sarà alto il livello che l'envelope manterrà prima di scendere a zero. REL - RIL + RIL Release: - Rilascio: + Rilascio: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Questa manopola imposta il tempo di rilascio dell'anvelope selezionato. Più grande è questo valore più tempo l'envelope impiegherà per scendere dal livello di sustain a zero. Scegliere un valore grande per strumenti dal suono morbido, come gli archi. + Questa manopola imposta il tempo di rilascio dell'anvelope selezionato. Più grande è questo valore più tempo l'envelope impiegherà per scendere dal livello di sustain a zero. Scegliere un valore grande per strumenti dal suono morbido, come gli archi. AMT - Q.TÀ + Q.TÀ Modulation amount: - Quantità di modulazione: + Quantità di modulazione: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Questa manopola imposta la quantità di modulazione dell'envelope selezionato. Più grande è questo valore più la grandezza corrispondente (ad es. il volume o la frequenza di taglio) sarà influenzata da questo envelope. + Questa manopola imposta la quantità di modulazione dell'envelope selezionato. Più grande è questo valore, più la grandezza corrispondente (ad es. il volume o la frequenza di taglio) sarà influenzata da questo envelope. LFO predelay: - Ritardo iniziale dell'LFO: + Ritardo iniziale dell'LFO: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Questa manopola imposta il ritardo iniziale dell'LFO selezionato. Più grande è questo valore più tempo passerà prima che l'LFO inizi a oscillare. + Questa manopola imposta il ritardo iniziale dell'LFO selezionato. Più grande è questo valore più tempo passerà prima che l'LFO inizi a oscillare. LFO- attack: - Attacco dell'LFO: + Attacco dell'LFO: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - Questa manopola imposta il tempo di attaco dell'LFO selezionato. Più grande è questo valore più tempo l'LFO impiegherà per raggiungere la massima ampiezza. + Questa manopola imposta il tempo di attaco dell'LFO selezionato. Più grande è questo valore più tempo l'LFO impiegherà per raggiungere la massima ampiezza. SPD - VEL + VEL LFO speed: - Velocità dell'LFO: + Velocità dell'LFO: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Questa manopola imposta la velocità dell'LFO selezionato. Più grande è questo valore più velocemente l'LFO oscillerà e più veloce sarà l'effetto. + Questa manopola imposta la velocità dell'LFO selezionato. Più grande è questo valore più velocemente l'LFO oscillerà e più veloce sarà l'effetto. Use this knob for setting modulation amount of the current LFO. The bigger this value the more the selected size (e.g. volume or cutoff-frequency) will be influenced by this LFO. - Questa manopola imposta la quantità di modulazione dell'LFO selezionato. Più grande è questo valore più la grandezza selezionata (ad es. il volume o la frequenza di taglio) sarà influenzata da questo LFO. + Questa manopola imposta la quantità di modulazione dell'LFO selezionato. Più grande è questo valore più la grandezza selezionata (ad es. il volume o la frequenza di taglio) sarà influenzata da questo LFO. Click here for a sine-wave. - Cliccando qui si ha un'onda sinusoidale. + Cliccando qui si ha un'onda sinusoidale. Click here for a triangle-wave. - Cliccando qui si ottiene un'onda triangolare. + Cliccando qui si ottiene un'onda triangolare. Click here for a saw-wave for current. - Cliccando qui si ha un'onda a dente di sega. + Cliccando qui si ha un'onda a dente di sega. Click here for a square-wave. - Cliccando qui si ottiene un'onda quadra. + Cliccando qui si ottiene un'onda quadra. Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Cliccando qui è possibile definire una forma d'onda personalizzata. Successivamente è possibile trascinare un file di campione nel grafico dell'LFO. + Cliccando qui è possibile definire una forma d'onda personalizzata. Successivamente è possibile trascinare un file di campione nel grafico dell'LFO. FREQ x 100 - FREQ x 100 + FREQ x 100 Click here if the frequency of this LFO should be multiplied by 100. - Cliccando qui la frequenza di questo LFO viene moltiplicata per 100. + Cliccando qui la frequenza di questo LFO viene moltiplicata per 100. multiply LFO-frequency by 100 - moltiplica la frequenza dell'LFO per 100 + moltiplica la frequenza dell'LFO per 100 MODULATE ENV-AMOUNT - MODULA LA QUANTITA' DI ENVELOPE + MODULA LA QUANTITA' DI ENVELOPE Click here to make the envelope-amount controlled by this LFO. - Cliccando qui questo LFO controlla la quantità di envelope. + Cliccando qui questo LFO controlla la quantità di envelope. control envelope-amount by this LFO - controlla la quantità di envelope con questo LFO + controlla la quantità di envelope con questo LFO ms/LFO: - ms/LFO: + ms/LFO: Hint - Suggerimento + Suggerimento Drag a sample from somewhere and drop it in this window. - È possibile trascinare un campione in questa finestra. + È possibile trascinare un campione in questa finestra. + + + Click here for random wave. + Clicca qui per un'onda randomica. ExportProjectDialog Export project - + Esporta il progetto Output - Uscita + Codifica File format: - + Formato file: Samplerate: - + Frequenza di campionamento: 44100 Hz - + 48000 Hz - + 88200 Hz - + 96000 Hz - + 192000 Hz - + Bitrate: - + Bitrate: 64 KBit/s - + 128 KBit/s - + 160 KBit/s - + 192 KBit/s - + 256 KBit/s - + 320 KBit/s - + Depth: - + Risoluzione Bit: 16 Bit Integer - + 32 Bit Float - + Please note that not all of the parameters above apply for all file formats. - + Non tutti i parametri si applicano nella creazione di tutti i formati. Quality settings - + Impostazioni qualità Interpolation: - + Interpolazione: Zero Order Hold - + Sinc Fastest - + 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 - + 4x - + 8x - - - - Sample-exact controllers - - - - Alias-free oscillators - + Start - + Inizia Cancel - Annulla + Annulla Export as loop (remove end silence) - + Esporta come loop (rimuove il silenzio finale) + + + + FileBrowser + + Browser + Browser + + + + FileBrowserTreeWidget + + Send to active instrument-track + Sostituisci questo strumento alla traccia attiva + + + Open in new instrument-track/Song-Editor + Usa in una nuova traccia nel Song-Editor + + + 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 --- + + + + 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 + + + &Help + &Aiuto FxMixer Master - Master + Master FX %1 - FX %1 + FX %1 FxMixerView Rename FX channel - Rinomina il canale FX + Rinomina il canale FX Enter the new name for this FX channel - Inserire il nuovo nome di questo canale FX + Inserire il nuovo nome di questo canale FX FX-Mixer - Mixer FX + Mixer FX + + + FxMixerView::FxChannelView FX Fader %1 - + Volume FX %1 Mute - Muto + Muto Mute this FX channel - Mettere questo canale FX in muto + Silenzia questo canale FX + + + + FxRoute + + Amount to send from channel %1 to channel %2 + Quantità da mandare dal canale %1 al canale %2 InstrumentFunctionArpeggio Arpeggio - Arpeggio + Arpeggio Arpeggio type - Tipo di arpeggio + Tipo di arpeggio Arpeggio range - Ampiezza dell'arpeggio + Ampiezza dell'arpeggio Arpeggio time - Tempo dell'arpeggio + Tempo dell'arpeggio Arpeggio gate - Gate dell'arpeggio + Gate dell'arpeggio Arpeggio direction - Direzione dell'arpeggio + Direzione dell'arpeggio Arpeggio mode - Modo dell'arpeggio + Modo dell'arpeggio Up - Su + Su Down - Giù + Giù Up and down - Su e giù + Su e giù Random - Casuale + Casuale Free - Libero + Libero Sort - Ordinato + Ordinato Sync - Sincronizzato + Sincronizzato + + + Down and up + Giù e su InstrumentFunctionArpeggioView ARPEGGIO - 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) vendono 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. + 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 + AMPIEZZA Arpeggio range: - Ampiezza dell'arpeggio: + Ampiezza dell'arpeggio: octave(s) - ottava(e) + 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. + Questa manopola imposta l'ampiezza in ottave dell'arpeggio. L'arpeggio selezionato verrà suonato all'interno del numero di ottave impostato. TIME - TEMPO + TEMPO Arpeggio time: - Tempo dell'arpeggio: + Tempo dell'arpeggio: 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. - Questa manopola imposta l'ampiezza dell'arpeggio in millisecondi. Il tempo dell'arpeggio specifica per quanto tempo ogni nota dell'arpeggio deve essere eseguita. + 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 + GATE Arpeggio gate: - Gate dell'arpeggio: + 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. + 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: + Direzione: Mode: - Modo: + Modo: InstrumentFunctionNoteStacking octave - ottava + ottava Major - Maggiore + Maggiore Majb5 - Majb5 + Majb5 minor - minore + minore minb5 - minb5 + minb5 sus2 - sus2 + sus2 sus4 - sus4 + sus4 aug - aug + aug augsus4 - augsus4 + augsus4 tri - triade + triade 6 - 6 + 6 6sus4 - 6sus4 + 6sus4 6add9 - 6add9 + 6add9 m6 - m6 + m6 m6add9 - m6add9 + m6add9 7 - 7 + 7 7sus4 - 7sus4 + 7sus4 7#5 - 7#5 + 7#5 7b5 - 7b5 + 7b5 7#9 - 7#9 + 7#9 7b9 - 7b9 + 7b9 7#5#9 - 7#5#9 + 7#5#9 7#5b9 - 7#5b9 + 7#5b9 7b5b9 - 7b5b9 + 7b5b9 7add11 - 7add11 + 7add11 7add13 - 7add13 + 7add13 7#11 - 7#11 + 7#11 Maj7 - Maj7 + Maj7 Maj7b5 - Maj7b5 + Maj7b5 Maj7#5 - Maj7#5 + Maj7#5 Maj7#11 - Maj7#11 + Maj7#11 Maj7add13 - Maj7add13 + Maj7add13 m7 - m7 + m7 m7b5 - m7b5 + m7b5 m7b9 - m7b9 + m7b9 m7add11 - m7add11 + m7add11 m7add13 - m7add13 + m7add13 m-Maj7 - m-Maj7 + m-Maj7 m-Maj7add11 - m-Maj7add11 + m-Maj7add11 m-Maj7add13 - m-Maj7add13 + m-Maj7add13 9 - 9 + 9 9sus4 - 9sus4 + 9sus4 add9 - add9 + add9 9#5 - 9#5 + 9#5 9b5 - 9b5 + 9b5 9#11 - 9#11 + 9#11 9b13 - 9b13 + 9b13 Maj9 - Maj9 + Maj9 Maj9sus4 - Maj9sus4 + Maj9sus4 Maj9#5 - Maj9#5 + Maj9#5 Maj9#11 - Maj9#11 + Maj9#11 m9 - m9 + m9 madd9 - madd9 + madd9 m9b5 - m9b5 + m9b5 m9-Maj7 - m9-Maj7 + m9-Maj7 11 - 11 + 11 11b9 - 11b9 + 11b9 Maj11 - Maj11 + Maj11 m11 - m11 + m11 m-Maj11 - m-Maj11 + m-Maj11 13 - 13 + 13 13#9 - 13#9 + 13#9 13b9 - 13b9 + 13b9 13b5b9 - 13b5b9 + 13b5b9 Maj13 - Maj13 + Maj13 m13 - m13 + m13 m-Maj13 - m-Maj13 + m-Maj13 Harmonic minor - Minore armonica + Minore armonica Melodic minor - Minore melodica + Minore melodica Whole tone - Toni interi + Toni interi Diminished - Diminuita + Diminuita Major pentatonic - Pentatonica maggiore + Pentatonica maggiore Minor pentatonic - Pentatonica minore + Pentatonica minore Jap in sen - Jap in sen + Jap in sen Major bebop - Bebop maggiore + Bebop maggiore Dominant bebop - Bebop dominante + Bebop dominante Blues - Blues + Blues Arabic - Araba + Araba Enigmatic - Enigmatica + Enigmatica Neopolitan - Napoletana + Napoletana Neopolitan minor - Napoletana minore + Napoletana minore Hungarian minor - Ungherese minore + Ungherese minore Dorian - Dorica + Dorica Phrygolydian - Phrygolydian + Phrygolydian Lydian - Lidia + Lidia Mixolydian - Misolidia + Misolidia Aeolian - Eolia + Eolia Locrian - Locria + Locria Chords - Accordi + Accordi Chord type - Tipo di accordo + Tipo di accordo Chord range - Ampiezza dell'accordo + Ampiezza dell'accordo Minor - + Minore + + + Chromatic + Cromatica + + + Half-Whole Diminished + Diminuita semitono-tono + + + 5 + Quinta InstrumentFunctionNoteStackingView RANGE - AMPIEZZA + AMPIEZZA Chord range: - Ampiezza degli accordi: + Ampiezza degli accordi: octave(s) - ottava(e) + 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. + 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 + ABILITA INGRESSO MIDI CHANNEL - CANALE + CANALE VELOCITY - VALOCITY + VALOCITY ENABLE MIDI OUTPUT - ABILITA USCITA MIDI + ABILITA USCITA MIDI PROGRAM - PROGRAMMA + 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 - + + + + CUSTOM BASE VELOCITY + VELOCITY BASE PERSONALIZZATA + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + Specifica la normalizzazione della velocity per strumenti MIDI al volume della nota 100% + + + BASE VELOCITY + VELOCITY BASE InstrumentSoundShaping VOLUME - VOLUME + VOLUME Volume - Volume + Volume CUTOFF - CUTOFF + CUTOFF Cutoff frequency - Frequenza di taglio + Frequenza di taglio RESO - RISO + RISO Resonance - Risonanza + Risonanza Envelopes/LFOs - Envelope/LFO + Envelope/LFO Filter type - Tipo di filtro + Tipo di filtro Q/Resonance - Q/Risonanza + Q/Risonanza LowPass - PassaBasso + PassaBasso HiPass - PassaAlto + PassaAlto BandPass csg - PassaBanda csg + PassaBanda csg BandPass czpg - PassaBanda czpg + PassaBanda czpg Notch - Notch + Notch Allpass - Passatutto + Passatutto Moog - Moog + Moog 2x LowPass - PassaBasso 2x + 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 InstrumentSoundShapingView TARGET - SCOPO + OBIETTIVO These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Queste schede contengono envelopes. Sono molto importanti per modificare i suoni, senza contare che sono quasi sempre necessarie per la sintesi sottrattiva. Per esempio se si usa un envelope per il volume, si può impostare quando un suono avrà un certo volume. Si potrebbero voler creare archi dal suono morbido, allora il suono deve iniziare e finire in modo molto morbido; ciò si ottiene impostando tempi di attacco e di rilascio ampi. Lo stesso vale per le altre funzioni degli envelope, come il panning, la frequenza di taglio dei filtri e così via. Bisogna semplicemente giocarci un po'! Si possono ottenere suoni veramente interessanti a partire da un'onda a dente di sega usando soltanto qualche envelope...! + Queste schede contengono envelopes. Sono molto importanti per modificare i suoni, senza contare che sono quasi sempre necessarie per la sintesi sottrattiva. Per esempio se si usa un envelope per il volume, si può impostare quando un suono avrà un certo volume. Si potrebbero voler creare archi dal suono morbido, allora il suono deve iniziare e finire in modo molto morbido; ciò si ottiene impostando tempi di attacco e di rilascio ampi. Lo stesso vale per le altre funzioni degli envelope, come il panning, la frequenza di taglio dei filtri e così via. Bisogna semplicemente giocarci un po'! Si possono ottenere suoni veramente interessanti a partire da un'onda a dente di sega usando soltanto qualche envelope...! FILTER - FILTRO + FILTRO Here you can select the built-in filter you want to use for this instrument-track. Filters are very important for changing the characteristics of a sound. - Qui è possibile selezionare il filtro da usare per questa traccia. I filtri sono molto importanti per cambiare le caratteristiche del suono. + Qui è possibile selezionare il filtro da usare per questa traccia. I filtri sono molto importanti per cambiare le caratteristiche del suono. Hz - Hz + Hz Use this knob for setting the cutoff frequency for the selected filter. The cutoff frequency specifies the frequency for cutting the signal by a filter. For example a lowpass-filter cuts all frequencies above the cutoff frequency. A highpass-filter cuts all frequencies below cutoff frequency, and so on... - Questa manopola imposta la frequenza di taglio del filtro. La frequenza di taglio specifica la frequenza a cui viene tagliato il segnate di un filtro. Per esempio un filtro passa-basso taglia tutte le frequenze sopra la frequenza di taglio, mentre un filtro passa-alto taglia tutte le frequenza al di sotto della frequenza di taglio e così via... + Questa manopola imposta la frequenza di taglio del filtro. La frequenza di taglio specifica la frequenza a cui viene tagliato il segnate di un filtro. Per esempio un filtro passa-basso taglia tutte le frequenze sopra la frequenza di taglio, mentre un filtro passa-alto taglia tutte le frequenza al di sotto della frequenza di taglio e così via... RESO - RISO + RISO Resonance: - Risonanza: + Risonanza: Use this knob for setting Q/Resonance for the selected filter. Q/Resonance tells the filter how much it should amplify frequencies near Cutoff-frequency. - Questa manopola imposta il parametro (Q) per la risonanza del filtro selezionato. Il parametro per la risonanza specifica l'ampiezza della campana di frequenze intorno alla frequenza di taglio che devono essere amplificate. + Questa manopola imposta il parametro (Q) per la risonanza del filtro selezionato. Il parametro per la risonanza specifica l'ampiezza della campana di frequenze intorno alla frequenza di taglio che devono essere amplificate. FREQ - FREQ + 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 + traccia_senza_nome Volume - Volume + Volume Panning - Panning + Panning Pitch - + Altezza FX channel - Canale FX + Canale FX Default preset - Impostazioni predefinite + Impostazioni predefinite With this knob you can set the volume of the opened channel. - Questa manopola imposta il volume del canale. + Questa manopola imposta il volume del canale. Base note - Nota base + Nota base Pitch range - + Estenzione dell'altezza InstrumentTrackView Volume - Volume + Volume Volume: - Volume: + Volume: VOL - VOL + VOL Panning - Panning + Panning Panning: - Panning: + Panning: PAN - PAN + PAN MIDI - MIDI + MIDI Input - Ingresso + Ingresso Output - Uscita + Uscita InstrumentTrackWindow GENERAL SETTINGS - IMPOSTAZIONI GENERALI - - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - Cliccando qui si salvano le attuali impostazioni del canale in un file. Sarà poi possibile ricaricare queste impostazioni facendo doppio-click su questo file nel navigatore dei preset. + IMPOSTAZIONI GENERALI Instrument volume - Volume dello strumento + Volume dello strumento Volume: - Volume: + Volume: VOL - VOL + VOL Panning - Panning + Panning Panning: - Panning: + Panning: PAN - PAN + PAN Pitch - + Altezza Pitch: - Pitch: + Altezza: cents - centesimi + centesimi PITCH - PITCH + ALTEZZA FX channel - Canale FX + Canale FX ENV/LFO - ENV/LFO + ENV/LFO FUNC - FUNC + FUNC FX - FX + FX MIDI - MIDI + MIDI Save preset - Salva il preset + Salva il preset XML preset file (*.xpf) - File di preset XML (*.xpf) + File di preset XML (*.xpf) PLUGIN - PLUGIN - - - Save current channel settings in a preset-file - + PLUGIN Pitch range (semitones) - + Ampiezza dell'altezza (in semitoni) RANGE - AMPIEZZA + 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"). LadspaControl Link channels - Abbina i canali + Abbina i canali LadspaControlDialog Link Channels - Canali abbinati + Canali abbinati Channel - Canale + Canale LadspaControlView Link channels - Abbina i canali + Abbina i canali Value: - Valore: + Valore: Sorry, no help available. - Spiacente, nessun aiuto disponibile + Spiacente, nessun aiuto disponibile. LadspaEffect Effect - Effetto + Effetto Unknown LADSPA plugin %1 requested. - Il plugin LADSPA %1 richiesto è sconosciuto. + Il plugin LADSPA %1 richiesto è sconosciuto. + + + + LcdSpinBox + + Please enter a new value between %1 and %2: + Inserire un valore compreso tra %1 e %2: LfoController LFO Controller - Controller dell'LFO + Controller dell'LFO Base value - Valore di base + Valore di base Oscillator speed - Velocità dell'oscillatore + Velocità dell'oscillatore Oscillator amount - Quantità di oscillatore + Quantità di oscillatore Oscillator phase - Fase dell'oscillatore + Fase dell'oscillatore Oscillator waveform - Forma d'onda dell'oscillatore + Forma d'onda dell'oscillatore Frequency Multiplier - Moltiplicatore della frequenza + Moltiplicatore della frequenza LfoControllerDialog LFO - LFO + LFO LFO Controller - Controller dell'LFO + Controller dell'LFO BASE - BASE + BASE Base amount: - Quantità di base: + Quantità di base: todo - da fare + da fare SPD - VEL + VEL LFO-speed: - Velocità dell'LFO: + Velocità dell'LFO: Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. - Questa manopola imposta la velocità dell'LFO selezionato. Più grande è questo valore più velocemente l'LFO oscillerà e più veloce sarà l'effetto. + Questa manopola imposta la velocità dell'LFO selezionato. Più grande è questo valore più velocemente l'LFO oscillerà e più veloce sarà l'effetto. AMT - Q.TÀ + Q.TÀ Modulation amount: - Quantità di modulazione: + Quantità di modulazione: Use this knob for setting modulation amount of the LFO. The bigger this value, the more the connected control (e.g. volume or cutoff-frequency) will be influenced by the LFO. - Questa manopola imposta la quantità di modulazione dell'LFO selezionato. Più grande è questo valore più la grandezza selezionata (ad es. il volume o la frequenza di taglio) sarà influenzata da questo LFO. + Questa manopola imposta la quantità di modulazione dell'LFO selezionato. Più grande è questo valore più la variabile selezionata (ad es. il volume o la frequenza di taglio) sarà influenzata da questo LFO. PHS - FASE + FASE Phase offset: - Scostamento della fase: + Scostamento della fase: degrees - gradi + gradi With this knob you can set the phase offset of the LFO. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Questa manopola regola lo scostamento della fase per l'LFO. Ciò significa spostare il punto dell'oscillazione da cui parte l'oscillatore. Per esempio, con un'onda sinusoidale e uno scostamento della fase di 180 gradi, l'onda inizierà scendendo. Lo stesso vale per un'onda quadra. + 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. Click here for a sine-wave. - Cliccando qui si ha un'onda sinusoidale. + Cliccando qui si ha un'onda sinusoidale. Click here for a triangle-wave. - Cliccando qui si ottiene un'onda triangolare. + Cliccando qui si ottiene un'onda triangolare. Click here for a saw-wave. - Cliccando qui si ottiene un'onda a dente di sega. + Cliccando qui si ottiene un'onda a dente di sega. Click here for a square-wave. - Cliccando qui si ottiene un'onda quadra. + Cliccando qui si ottiene un'onda quadra. Click here for a a moog saw-wave. - Cliccando qui si ha un'onda a dente di sega moog. + Cliccando qui si ha un'onda a dente di sega moog. Click here for an exponential wave. - Cliccando qui si ha un'onda esponenziale. + Cliccando qui si ha un'onda esponenziale. Click here for white-noise. - Cliccando qui si ottiene rumore bianco. + 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. MainWindow Working directory - Directory di lavoro + 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. + 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. Could not save config-file - Non è stato possibile salvare il file di configurazione + Non è stato possibile salvare il file di configurazione 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 è stato possibile salvare il file di configurazione %1. Probabilmente non hai i permessi di scrittura per questo file. + Non è stato possibile salvare il file di configurazione %1. Probabilmente non hai i permessi di scrittura per questo file. Assicurati di avere i permessi in scrittura per il file e riprova. &Project - &Progetto + &Progetto &New - &Nuovo + &Nuovo &Open... - &Apri... + &Apri... Recently opened projects - Progetti aperti di recente + Progetti aperti di recente &Save - &Salva + &Salva Save &As... - Salva &Con Nome... + Salva &Con Nome... Import... - Importa... + Importa... E&xport... - E&sporta... + E&sporta... &Quit - &Esci + &Esci &Edit - &Modifica + &Modifica Settings - Impostazioni + Impostazioni &Tools - S&trumenti + S&trumenti &Help - &Aiuto + &Aiuto Online help - Aiuto in linea + Aiuto in linea Help - Aiuto + Aiuto What's this? - Cos'è questo? + Cos'è questo? About - Informazioni su + Informazioni su Create new project - Crea un nuovo progetto + Crea un nuovo progetto Create new project from template - Crea un nuovo progetto da un modello + Crea un nuovo progetto da un modello Open existing project - Apri un progetto esistente + Apri un progetto esistente Recently opened project - Progetti aperti di recente + Progetti aperti di recente Save current project - Salva questo progetto + Salva questo progetto Export current project - Esporta questo progetto + Esporta questo progetto Show/hide Song-Editor - Mostra/nascondi il 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. + 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. Show/hide Beat+Bassline Editor - Mostra/nascondi il Beat+Bassline Editor + Mostra/nascondi il 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. + 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. Show/hide Piano-Roll - Mostra/nascondi il 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. + Questo pulsante mostra o nasconde il Piano-Roll. Con l'aiuto del Piano-Roll è possibile modificare sequenze melodiche in modo semplice. Show/hide Automation Editor - Mostra/nascondi l'Editor dell'automazione + 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. + Questo pulsante mostra o nasconde l'editor dell'automazione. Con l'aiuto dell'editor dell'automazione è possibile rendere dinamici alcuni valori in modo semplice. Show/hide FX Mixer - Mostra/nascondi il mixer degli effetti + 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 altri canali di effetti. + 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. Show/hide project notes - Mostra/nascondi le note del progetto + 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. + Questo pulsante mostra o nasconde la finestra delle note del progetto. Qui è possibile scrivere le note per il progetto. Show/hide controller rack - Mostra/nascondi il rack di controller + Mostra/nascondi il rack di controller Untitled - Senza_nome + Senza_nome LMMS %1 - LMMS %1 + LMMS %1 Project not saved - Progetto non salvato + 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? + Questo progetto è stato modificato dopo l'ultimo salvataggio. Vuoi salvarlo adesso? Open project - Apri progetto + Apri progetto Save project - Salva progetto + Salva progetto Help not available - Aiuto non disponibile + 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. + Al momento non è disponibile alcun aiuto in LMMS. Visitare http://lmms.sf.net/wiki per la documentazione di LMMS. My projects - + I miei progetti My samples - + I miei campioni My presets - + I miei preset My home - + Cartelle utente My computer - + Cartelle computer Root directory - + Directory principale Save as new &version - + Salva come nuova &versione E&xport tracks... - + E&sporta tracce... LMMS (*.mmp *.mmpz) - - - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - + Version %1 - + Versione %1 Project recovery - + Recupero del progetto It looks like the last session did not end properly. Do you want to recover the project of this session? - + Sembra che l'ultima sessione non sia stata chiusa correttamente. Vuoi recuperare il progetto di quella sessione? 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 + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + Progetto LMMS (*mmpz *.mmp);;Progetto Template LMMS (*.mpt) MeterDialog Meter Numerator - Numeratore della misura + Numeratore della misura Meter Denominator - Denominatore della misura + Denominatore della misura TIME SIG - + TEMPO MeterModel Numerator - Numeratore + Numeratore Denominator - Denominatore + Denominatore MidiAlsaRaw::setupWidget DEVICE - PERIFERICA + PERIFERICA MidiAlsaSeq::setupWidget DEVICE - PERIFERICA + PERIFERICA MidiController MIDI Controller - Controller MIDI + Controller MIDI unnamed_midi_controller - controller_midi_senza_nome + 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. MidiOss::setupWidget DEVICE - PERIFERICA + PERIFERICA MidiPort Input channel - Canale di ingresso + Canale di ingresso Output channel - Canale di uscita + Canale di uscita Input controller - + Controller in entrata Output controller - Controller il uscita + Controller in uscita Fixed input velocity - Velocity in ingresso fisso + Velocity fissa in ingresso Fixed output velocity - Velocity in uscita fisso + Velocity fissa in uscita Output MIDI program - Programma MIDI in uscita + Programma MIDI in uscita Receive MIDI-events - Ricevi eventi MIDI + Ricevi eventi MIDI Send MIDI-events - Invia eventi MIDI + Invia eventi MIDI Fixed output note - + Nota fissa in uscita + + + Base velocity + Velocity base + + + + 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-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 + + + + + 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. + + + + 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 OscillatorObject Osc %1 volume - Volume osc %1 + Volume osc %1 Osc %1 panning - Panning osc %1 + Panning osc %1 Osc %1 coarse detuning - Intonazione osc %1 + Intonazione osc %1 Osc %1 fine detuning left - Intonazione precisa osc %1 sinistra + Intonazione precisa osc %1 sinistra Osc %1 fine detuning right - Intonazione precisa osc %1 destra + Intonazione precisa osc %1 destra Osc %1 phase-offset - Scostamento fase osc %1 + Scostamento fase osc %1 Osc %1 stereo phase-detuning - Intonazione fase stereo osc %1 + Intonazione fase stereo osc %1 Osc %1 wave shape - Forma d'onda Osc %1 + Forma d'onda Osc %1 Modulation type %1 - Modulazione di tipo %1 + Modulazione di tipo %1 Osc %1 waveform - Forma d'onda osc %1 + Forma d'onda osc %1 + + + Osc %1 harmonic + Armoniche Osc %1 PatmanView Open other patch - Apri un altro 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. + Clicca qui per aprire un altro file di patch. Le impostazioni di ripetizione e intonazione non vengono reimpostate. Loop - Ripetizione + Ripetizione Loop mode - Modalità ripetizione + 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 abilitato, PatMan userà l'informazione sulla ripetizione disponibile nel file. + Qui puoi scegliere la modalità di ripetizione. Se abilitata, PatMan userà l'informazione sulla ripetizione disponibile nel file. Tune - Intonazione + Intonazione Tune mode - Modalità intonazione + 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 abilitato, PatMan intonerà il campione alla frequenza della nota. + Qui puoi scegliere la modalità di intonazione. Se abilitata, PatMan intonerà il campione alla frequenza della nota. No file selected - Nessun file selezionato + Nessun file selezionato Open patch file - Apri file di patch + Apri file di patch Patch-Files (*.pat) - File di patch (*.pat) + File di patch (*.pat) + + + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + un doppio click apre questo pattern nel piano-roll +la rotellina del mouse impostare il volume delle note + + + 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 PeakController Peak Controller - Controller dei picchi + 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 + PICCO LFO Controller - Controller dell'LFO + Controller dell'LFO PeakControllerEffectControlDialog BASE - BASE + BASE Base amount: - Quantità di base: + Quantità di base: Modulation amount: - Quantità di modulazione: + Quantità di modulazione: Attack: - Attacco: + Attacco: Release: - Rilascio: + Rilascio: AMNT - + Q.TÀ MULT - + MOLT Amount Multiplicator: - + Moltiplicatore di quantità: ATCK - + ATCC DCAY - + DCAD PeakControllerEffectControls Base value - Valore di base + Valore di base Modulation amount - Quantità di modulazione + Quantità di modulazione Mute output - Uscita muta + Silenzia l'output Attack - Attacco + Attacco Release - Rilascio + Rilascio Abs Value - + Valore Assoluto Amount Multiplicator - + Moltiplicatore della quantità + + + + PianoRoll + + Play/pause current pattern (Space) + Riproduci/metti in pausa questo pattern (Spazio) + + + Record notes from MIDI-device/channel-piano + Registra note da una periferica/canale piano MIDI + + + Stop playing of current pattern (Space) + Ferma la riproduzione di questo pattern (Spazio) + + + Cut selected notes (Ctrl+X) + Taglia le note selezionate (Ctrl+X) + + + Copy selected notes (Ctrl+C) + Copia le note selezionate (Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + Incolla le note selezionate (Ctrl+V) + + + Piano-Roll - no pattern + Piano-Roll - nessun pattern + + + Piano-Roll - %1 + Piano-Roll - %1 + + + Please open a pattern by double-clicking on it! + Aprire un pattern con un doppio-click sul pattern stesso! + + + Last note + Ultima nota + + + 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 + + + Draw mode (Shift+D) + Modalità disegno (Shift+D) + + + Erase mode (Shift+E) + Modalità cancellazione (Shift+E) + + + Select mode (Shift+S) + Modalità selezione (Shift+S) + + + 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. + + + 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. + + + Note lock + Note lock + + + Note Volume + Volume Note + + + Note Panning + Panning Note + + + 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 Ctrl 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 Ctfl 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 Ctrl in draw mode to temporarily use select mode. + Cliccando qui viene attivata la modalità selezione. Puoi selezionare le note. Puoi anche tenere premuto Ctrl 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à. + + + 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 + + + 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 '-Accordi' in questo menù. + + + Volume: %1% + Volume: %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: PianoView Base note - Nota base + Nota base Plugin Plugin not found - Plugin non trovato + 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! + Il plugin "%1" non è stato trovato o non è stato possibile caricarlo! Motivo: "%2" Error while loading plugin - Errore nel caricamento del plugin + Errore nel caricamento del plugin Failed to load plugin "%1"! - Non è stato possibile caricare il plugin "%1"! + Non è stato possibile caricare il plugin "%1"! + + + LMMS plugin %1 does not have a plugin descriptor named %2! + Il plugin LMMS %1 non ha una descrizione chiamata %2! ProjectRenderer WAV-File (*.wav) - File WAV (*.wav) + File WAV (*.wav) Compressed OGG-File (*.ogg) - File in formato OGG compresso (*.ogg) + File in formato OGG compresso (*.ogg) @@ -2740,87 +4019,87 @@ Motivo: "%2" C Note name - + Do Db Note name - + Dob C# Note name - + Do# D Note name - + Re Eb Note name - + Mib D# Note name - + Re# E Note name - + Mi Fb Note name - + Fab Gb Note name - + Solb F# Note name - + Fa# G Note name - + Sol Ab Note name - + Lab G# Note name - + Sol# A Note name - + La Bb Note name - + Sib A# Note name - + La# B Note name - + Si @@ -2869,720 +4148,1115 @@ Motivo: "%2" In Place Broken: In Place Broken: + + File: %1 + File: %1 + SampleBuffer Open audio file - Apri file audio - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Tutti i file audio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) + Apri file audio Wave-Files (*.wav) - File wave (*.wav) + File wave (*.wav) OGG-Files (*.ogg) - File OGG (*.ogg) + File OGG (*.ogg) DrumSynth-Files (*.ds) - File DrumSynth (*.ds) + File DrumSynth (*.ds) FLAC-Files (*.flac) - File FLAC (*.flac) + File FLAC (*.flac) SPEEX-Files (*.spx) - File SPEEX (*.spx) - - - MP3-Files (*.mp3) - File MP3 (*.mp3) + File SPEEX (*.spx) VOC-Files (*.voc) - File VOC (*.voc) + File VOC (*.voc) AIFF-Files (*.aif *.aiff) - File AIFF (*.aif *.aiff) + File AIFF (*.aif *.aiff) AU-Files (*.au) - File AU (*.au) + File AU (*.au) RAW-Files (*.raw) - File RAW (*.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) SampleTCOView double-click to select sample - Fare doppio click per selezionare il campione + Fare doppio click per selezionare il campione Delete (middle mousebutton) - Elimina (tasto centrale del mouse) + Elimina (tasto centrale del mouse) Cut - Taglia + Taglia Copy - Copia + Copia Paste - Incolla + Incolla Mute/unmute (<Ctrl> + middle click) - Attiva/disattiva la modalità muta (<Ctrl> + tasto centrale) + Attiva/disattiva la modalità muta (<Ctrl> + tasto centrale) Set/clear record - Set/clear record + Set/clear record SampleTrack Sample track - Traccia di campione + Traccia di campione Volume - Volume + Volume SampleTrackView Track volume - Volume della traccia + Volume della traccia Channel volume: - Volume del canale: + Volume del canale: VOL - VOL + VOL + + + + SongEditor + + Song-Editor + Song-Editor + + + Play song (Space) + Riproduci la canzone (Spazio) + + + Stop song (Space) + Ferma la riproduzione della canzone (Spazio) + + + Add beat/bassline + Aggiungi beat/bassline + + + Add sample-track + Aggiungi traccia di campione + + + 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'intera canzone. 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 della canzone. Il segnaposto verrà portato all'inizio della canzone. + + + Could not open file + Non è stato possibile aprire il file + + + Could not write file + Impossibile scrivere il file + + + Draw mode + Modalità disegno + + + Edit mode (select and move) + Modalità modifica (seleziona e sposta) + + + Add automation-track + Aggiungi una traccia di automazione + + + 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 la canzone o la BB track sono in riproduzione + + + 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. + + + + 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 TempoSyncKnob Tempo Sync - Sync del tempo + Sync del tempo No Sync - Non in Sync + Non in Sync Eight beats - Otto battiti + Otto battiti Whole note - Un intero + Un intero Half note - Una metà + Una metà Quarter note - Quarto + Quarto 8th note - Ottavo + Ottavo 16th note - Sedicesimo + Sedicesimo 32nd note - Trentaduesimo + Trentaduesimo Custom... - Personalizzato... + Personalizzato... &Help - &Aiuto + &Aiuto Custom - Personalizzato + Personalizzato Synced to Eight Beats - In sync con otto battiti + In sync con otto battiti Synced to Whole Note - In sync con un intero + In sync con un intero Synced to Half Note - In sync con un mezzo + In sync con un mezzo Synced to Quarter Note - In sync con quarti + In sync con quarti Synced to 8th Note - In sync con ottavi + In sync con ottavi Synced to 16th Note - In sync con 16simi + In sync con 16simi Synced to 32nd Note - In sync con 32simi + In sync con 32simi TimeDisplayWidget click to change time units - + Clicca per cambiare l'unità di tempo visualizzata TrackContainer Couldn't import file - Non è stato possibile importare il 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 LMM usando un altro programma. + 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 + 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 la directory che lo contiene e riprovare! + 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... + Caricamento del progetto... Cancel - Annulla + Annulla Please wait... - Prego attendere... + Attendere... Importing MIDI-file... - Importazione del file MIDI... + Importazione del file MIDI... Importing FLP-file... - Importazione del file FLP... + Importazione del file FLP... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 - Usare la modulazione di fase per modulare l'oscillatore 2 con l'oscillatore 1 + Usare la modulazione di fase per modulare l'oscillatore 2 con l'oscillatore 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 - Usare la modulazione di amplificazione per modulare l'oscillatore 2 con l'oscillatore 1 + 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 + Miscelare gli oscillatori 1 e 2 Synchronize oscillator 1 with oscillator 2 - Sincronizzare l'oscillatore 1 con l'oscillatore 2 + Sincronizzare l'oscillatore 1 con l'oscillatore 2 Use frequency modulation for modulating oscillator 2 with oscillator 1 - Usare la modulazione di frequenza per modulare l'oscillatore 2 con l'oscillatore 1 + Usare la modulazione di frequenza per modulare l'oscillatore 2 con l'oscillatore 1 Use phase modulation for modulating oscillator 3 with oscillator 2 - Usare la modulazione di fase per modulare l'oscillatore 3 con l'oscillatore 2 + Usare la modulazione di fase per modulare l'oscillatore 3 con l'oscillatore 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 - Usare la modulazione di amplificazione per modulare l'oscillatore 3 con l'oscillatore 2 + 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 + Miscelare gli oscillatori 2 e 3 Synchronize oscillator 2 with oscillator 3 - Sincronizzare l'oscillatore 2 con l'oscillatore 3 + Sincronizzare l'oscillatore 2 con l'oscillatore 3 Use frequency modulation for modulating oscillator 3 with oscillator 2 - Usare la modulazione di frequenza per modulare l'oscillatore 3 con l'oscillatore 2 + Usare la modulazione di frequenza per modulare l'oscillatore 3 con l'oscillatore 2 Osc %1 volume: - Volume 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. - 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. + 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: + 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. + 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: + Intonazione dell'osc %1: semitones - semitoni + semitoni With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) 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 12 semitoni (un'ottava) in positivo e in negativo. Può essere usata per creare suoni con un accordo. + 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: + Intonazione precisa osc %1 sinistra: cents - centesimi + 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". + 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: + 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". + 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: + Scostamento fase dell'osc %1: degrees - gradi + 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. + 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: + 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. + 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. + Utilizzare un'onda sinusoidale per questo oscillatore. Use a triangle-wave for current oscillator. - Utilizzare un'onda triangolare per questo oscillatore. + Utilizzare un'onda triangolare per questo oscillatore. Use a saw-wave for current oscillator. - Utilizzare un'onda a dente di sega per questo oscillatore. + Utilizzare un'onda a dente di sega per questo oscillatore. Use a square-wave for current oscillator. - Utilizzare un'onda quadra per questo oscillatore. + 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. + Utilizzare un'onda di tipo moog per questo oscillatore. Use an exponential wave for current oscillator. - Utilizzare un'onda esponenziale per questo oscillatore. + Utilizzare un'onda esponenziale per questo oscillatore. Use white-noise for current oscillator. - Utilizzare rumore bianco per questo oscillatore. + Utilizzare rumore bianco per questo oscillatore. Use a user-defined waveform for current oscillator. - Utilizzare un'onda personalizzata per questo oscillatore. + Utilizzare un'onda personalizzata per questo oscillatore. Ui Contributors ordered by number of commits: - + Hanno collaborato (ordinati per numero di contributi): Involved - + Coinvolti VersionedSaveDialog Increment version number - + Nuova versione Decrement version number - + Riduci numero versione VestigeInstrumentView Open other VST-plugin - Apri un altro plugin VST + 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. + 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 + 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. + Clicca qui per mostrare o nascondere l'interfaccia grafica (GUI) per i plugin VST. Turn off all notes - Disabilita tutte le note + Disabilita tutte le note Open VST-plugin - Apri plugin VST + Apri plugin VST DLL-files (*.dll) - File DLL (*.dll) + File DLL (*.dll) EXE-files (*.exe) - File EXE (*.exe) + File EXE (*.exe) No VST-plugin loaded - Nessun plugin VST caricato + 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 + 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 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 + 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 - - - Please wait while loading VST-plugin... - Prego attendere, caricamento del plugin VST... - - - Failed loading VST-plugin - Errore nel caricamento del plugin VST - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - Non è stato possibile caricare il plugin VST %1 a causa di alcuni errori. -Se, con altre applicazioni GNU/Linux il plugin funziona, si prega di contattare uno sviluppatore di LMMS! + 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... + + + Failed loading VST plugin + Caricamento del VST fallito + + + The VST plugin %1 could not be loaded for some reason. + Il VST %1 non è stato caricato correttamente per qualche ragione. + + + + 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 ZynAddSubFxInstrument Portamento - + Filter Frequency - + Frequenza del filtro Filter Resonance - + Risonanza del filtro Bandwidth - + 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: - + PORT - + Filter Frequency: - + Frequenza del Filtro: FREQ - FREQ + FREQ Filter Resonance: - + Risonanza del Filtro: RES - RIS + RIS Bandwidth: - + BW - + 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 @@ -3603,55 +5277,33 @@ Se, con altre applicazioni GNU/Linux il plugin funziona, si prega di contattare End of sample Fine del campione - - Loop - Ripetizione - Stutter - - - - - bassBoosterControlDialog - - FREQ - FREQ + - Frequency: - Frequenza: + Loopback point + Punto di LoopBack - GAIN - GUAD + Loop mode + Modalità ripetizione - Gain: - Guadagno: + Interpolation mode + Modalità Interpolazione - RATIO - LIV + None + Nessuna - Ratio: - Livello: - - - - bassBoosterControls - - Frequency - Frequenza + Linear + Lineare - Gain - Guadagno - - - Ratio - Livello + Sinc + Sincronizzata @@ -3686,11 +5338,11 @@ Se, con altre applicazioni GNU/Linux il plugin funziona, si prega di contattare Remove steps - Elimina note + Elimina note Add steps - Aggiungi note + Aggiungi note @@ -3711,6 +5363,10 @@ Se, con altre applicazioni GNU/Linux il plugin funziona, si prega di contattare Change color Cambia colore + + Reset color to default + Reimposta il colore a default + bbTrack @@ -3720,7 +5376,7 @@ Se, con altre applicazioni GNU/Linux il plugin funziona, si prega di contattare Clone of %1 - + Clone di %1 @@ -3805,74 +5461,154 @@ Se, con altre applicazioni GNU/Linux il plugin funziona, si prega di contattare 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 + + exportProjectDialog Could not open file - Non è stato possibile aprire il 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 aprire in scrittura il file %1. -Assicurarsi di avere i permessi in scrittura per il file e la directory contenente il file e riprovare! + Impossibile aprire in scrittura il file %1. +Assicurarsi di avere i permessi in scrittura per il file e per la directory contenente il file e riprovare! Error - Errore + Errore Error while determining file-encoder device. Please try to choose a different output format. - Si è verificato un errore nel tentativo di determinare il dispositivo per la codifica del file. Si prega di selezionare un formato differente. + Si è verificato un errore nel tentativo di determinare il dispositivo per la codifica del file. Si prega di selezionare un formato differente. Rendering: %1% - Renderizzazione: %1% + Renderizzazione: %1% Export project to %1 - Esporta il progetto in %1 + Esporta il progetto in %1 fader Please enter a new value between %1 and %2: - Inserire un valore compreso tra %1 e %2: - - - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - + Inserire un valore compreso tra %1 e %2: @@ -3892,18 +5628,46 @@ Assicurarsi di avere i permessi in scrittura per il file e la directory contenen End frequency Frequenza finale - - Decay - Decadimento - - - Distortion - Distorsione - 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 @@ -3915,18 +5679,38 @@ Assicurarsi di avere i permessi in scrittura per il file e la directory contenen End frequency: Frequenza finale: - - Decay: - Decadimento: - - - Distortion: - Distorsione: - 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: + knob @@ -4213,6 +5997,38 @@ Facendo doppio click sui plugin verranno fornite informazioni sulle relative por 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. + lb303Synth @@ -4586,62 +6402,62 @@ Facendo doppio click sui plugin verranno fornite informazioni sulle relative por 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. @@ -4655,119 +6471,119 @@ Facendo doppio click sui plugin verranno fornite informazioni sulle relative por opl2instrument Patch - 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 @@ -4807,14 +6623,30 @@ Facendo doppio click sui plugin verranno fornite informazioni sulle relative por Osc %1 panning: Panning osc %1: - - Osc %1 fine detuning left: - Intonazione precisa osc %1 sinistra: - 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: + papuInstrument @@ -4967,7 +6799,7 @@ Facendo doppio click sui plugin verranno fornite informazioni sulle relative por Wave Channel Volume - Volume wave del canale: + Volume wave del canale Noise Channel Volume: @@ -5082,226 +6914,12 @@ Facendo doppio click sui plugin verranno fornite informazioni sulle relative por Disegnare l'onda qui - - pattern - - Cannot freeze pattern - Impossibile congelare il pattern - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - Non è stato possibile congelare questo pattern perché in modalità riproduzione. Fermare la riproduzione e riprovare! - - - - patternFreezeStatusDialog - - Freezing pattern... - Congelamento del pattern... - - - Cancel - Annulla - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - un doppio click apre questo pattern nel piano-roll -la rotellina del mouse impostare il volume delle note - - - Open in piano-roll - Apri nel piano-roll - - - Clear all notes - Cancella tutte le note - - - Reset name - Reimposta il nome - - - Change name - Cambia nome - - - Refreeze - Congela nuovamente - - - Freeze - Congela - - - Unfreeze - Scongela - - - Add steps - Aggiungi note - - - Remove steps - Elimina note - - - - PianoRoll - - Play/pause current pattern (Space) - Riproduci/metti in pausa questo pattern (Spazio) - - - Record notes from MIDI-device/channel-piano - Registra note da una periferica/canale piano MIDI - - - Stop playing of current pattern (Space) - Ferma la riproduzione di questo pattern (Spazio) - - - Cut selected notes (Ctrl+X) - Taglia le note selezionate (Ctrl+X) - - - Copy selected notes (Ctrl+C) - Copia le note selezionate (Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - Incolla le note selezionate (Ctrl+V) - - - Piano-Roll - no pattern - Piano-Roll - nessun pattern - - - Piano-Roll - %1 - Piano-Roll - %1 - - - Please open a pattern by double-clicking on it! - Aprire un pattern con un doppio-click sul pattern stesso! - - - Last note - Ultima nota - - - 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 - - - Draw mode (Shift+D) - Modalità disegno (Shift+D) - - - Erase mode (Shift+E) - Modalità cancellazione (Shift+E) - - - Select mode (Shift+S) - Modalità selezione (Shift+S) - - - 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. - - - 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. - - - Note lock - Note lock - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser Instrument plugins Plugin strumentali - - three powerful oscillators you can modulate in several ways - tre potenti oscillatori che puoi modulare in diversi modi - no description nessuna descrizione @@ -5310,10 +6928,6 @@ la rotellina del mouse impostare il volume delle note VST-host for using VST(i)-plugins within LMMS Host VST per usare i plugin VST con LMMS - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - Semplice campionatore con molte impostazioni per usare campioni (ad es. di percussioni) in una traccia - Filter for importing FL Studio projects into LMMS Filtro per importare progetti di FL Studio in LMMS @@ -5338,10 +6952,6 @@ la rotellina del mouse impostare il volume delle note Plugin for controlling knobs with sound peaks Plugin per controllare le manopole con picchi di suono - - versatile kick- & bassdrum-synthesizer - sintetizzatore di colpo di cassa versatile - GUS-compatible patch instrument strumento compatibile con GUS @@ -5358,18 +6968,10 @@ la rotellina del mouse impostare il volume delle note Incomplete monophonic imitation tb303 Imitazione monofonica del tb303 incompleta - - plugin for using arbitrary VST-effects inside LMMS. - Plugin per usare qualsiasi effetto VST in LMMS. - Tuneful things to bang on Oggetti dotati di intonazione su cui picchiare - - plugin for boosting bass - Plugin per aumentare notevolmente i bassi - List installed LADSPA plugins Elenca i plugin LADSPA installati @@ -5402,19 +7004,75 @@ Questo chip era utilizzato nel Commode 64. Embedded ZynAddSubFX - + ZynAddSubFX incorporato 2-operator FM Synth - + Sintetizzatore FM a 2 operatori Filter for importing Hydrogen files into LMMS - + Strumento per l'importazione di file Hydrogen dentro LMMS LMMS port of sfxr - + Port di sfxr su LMMS + + + Monstrous 3-oscillator synth with modulation matrix + Sintetizzatore mostruoso con 3 oscillatori e matrice di modulazione + + + Three powerful oscillators you can modulate in several ways + Tre potenti oscillatori modulabili in vari modi + + + A native amplifier plugin + Un plugin di amplificazione nativo + + + Carla Rack Instrument + Strutmento Rack Carla + + + 4-oscillator modulatable wavetable synth + Sintetizzatore wavetable con 4 oscillatori modulabili + + + plugin for waveshaping + Plugin per la modifica della forma d'onda + + + Boost your bass the fast and simple way + Potenzia il tuo basso in modo veloce e semplice + + + Versatile drum synthesizer + Sintetizzatore di percussioni versatile + + + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + Semplice sampler con varie impostazioni, per usare suoni (come percussioni) in una traccia strumentale + + + plugin for processing dynamics in a flexible way + Un versatile processore di dynamic + + + Carla Patchbay Instrument + Strumento Patchbay Carla + + + plugin for using arbitrary VST effects inside LMMS. + Plugin per usare effetti VST arbitrari dentro LMMS. + + + Graphical spectrum analyzer plugin + Analizzatore di spettro grafico + + + A NES-like synthesizer + Un sintetizzatore che imita i suoni del Nintendo Entertainment System @@ -5713,35 +7371,35 @@ Latenza: %2 ms One instrument track window mode - + Modalità finestra ad una traccia strumento Compact track buttons - + Pulsanti della traccia compatti Sync VST plugins to host playback - + Sincronizza i plugin VST al playback dell'host Enable note labels in piano roll - + Abilita i nomi delle note nel piano-roll Enable waveform display by default - + Abilità il display della forma d'onda per default Smooth scroll in Song Editor - + Scorrimento morbido nel Song-Editor Enable auto save feature - + Abilita la funzione di salvataggio automatico Show playback cursor in AudioFileProcessor - + Mostra il cursore di riproduzione dentro AudioFileProcessor @@ -5878,7 +7536,7 @@ Latenza: %2 ms sfxrInstrument Wave Form - + Forma d'onda @@ -6103,161 +7761,15 @@ Latenza: %2 ms All file types - + Tutti i tipi di file Hydrogen projects - + Progetti Hydrogen Select directory for writing exported tracks... - - - - - SongEditor - - Song-Editor - Song-Editor - - - Play song (Space) - Riproduci la canzone (Spazio) - - - Stop song (Space) - Ferma la riproduzione della canzone (Spazio) - - - Add beat/bassline - Aggiungi beat/bassline - - - Add sample-track - Aggiungi traccia di campione - - - 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'intera canzone. 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 della canzone. Il segnaposto verrà portato all'inizio della canzone. - - - Could not open file - Non è stato possibile aprire il file - - - Could not write file - Impossibile scrivere il file - - - Draw mode - Modalità disegno - - - Edit mode (select and move) - Modalità modifica (seleziona e sposta) - - - Add automation-track - Aggiungi una traccia di automazione - - - 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 la canzone o la BB track sono in riproduzione - - - 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/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. - - - - - 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 + Seleziona una directory per le tracce esportate... @@ -6344,11 +7856,11 @@ Latenza: %2 ms Press <Ctrl> to disable magnetic loop points. - + Premi <Ctrl> per disabilitare i punti di loop magnetici. Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. - + Tieni premuto <Shift> per spostare l'inizio del punto di loop; premi <Ctrl> per disabilitare i punti di loop magnetici. @@ -6446,6 +7958,18 @@ Latenza: %2 ms Solo Solo + + Clear this track + Pulisci questa traccia + + + Turn all recording on + Accendi tutti i processi di registrazione + + + Turn all recording off + Spegni tutti i processi di registrazione + vestigeInstrument @@ -6730,7 +8254,7 @@ Il LED nell'angolo in basso a destra sull'editor della forma d'on Click to enable - + Clicca per abilitare @@ -6780,4 +8304,74 @@ Il LED nell'angolo in basso a destra sull'editor della forma d'on 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 + + Input gain + Guadagno in input + + + Output gain + Guadagno in output + + diff --git a/data/locale/ja.qm b/data/locale/ja.qm index 65bd82e43..74415c4a0 100644 Binary files a/data/locale/ja.qm and b/data/locale/ja.qm differ diff --git a/data/locale/ja.ts b/data/locale/ja.ts index 0298ffba6..793cc17d8 100644 --- a/data/locale/ja.ts +++ b/data/locale/ja.ts @@ -5,11 +5,7 @@ AboutDialog About LMMS - - - - LMMS (Linux MultiMedia Studio) - + LMMS ã«ã¤ã„㦠Version %1 (%2/%3, Qt %4, %5) @@ -17,7 +13,7 @@ About - + LMMS ã«ã¤ã„㦠LMMS - easy music production for everyone @@ -25,21 +21,23 @@ 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ã‚’ä»–ã®è¨€èªžã«ç¿»è¨³ã™ã‚‹ã“ã¨ã‚„æ—¢ã«å­˜åœ¨ã™ã‚‹ç¿»è¨³ã‚’改善ã™ã‚‹ã“ã¨ã«èˆˆå‘³ãŒã‚ã‚‹ãªã‚‰ã°ã€ãœã²ã¨ã‚‚ç§ãŸã¡ã‚’助ã‘ã¦ãã ã•ã„! ãŸã  Maintainer ã«ã‚³ãƒ³ã‚¿ã‚¯ãƒˆã‚’å–ã‚‹ã ã‘ã§ã™! License - + ライセンス Copyright (c) 2004-2014, LMMS developers @@ -49,6 +47,64 @@ If you're interested in translating LMMS in another language or want to imp <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + LMMS + + + + + AmplifierControlDialog + + VOL + + + + Volume: + 音é‡: + + + PAN + + + + Panning: + + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + éŸ³é‡ + + + Panning + + + + Left gain + + + + Right gain + + AudioAlsa::setupWidget @@ -69,47 +125,31 @@ If you're interested in translating LMMS in another language or want to imp 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. - ã“ã®ãƒœã‚¿ãƒ³ã‚’有効ã«ã™ã‚Œã°ã€ã™ã¹ã¦ã®ã‚µãƒ³ãƒ—ルãŒé€†å›žè»¢ã•れã¾ã™ã€‚リãƒãƒ¼ã‚¹ãƒ‰ã‚¯ãƒ©ãƒƒã‚·ãƒ¥ã¨ã„ã†ã‹ã£ã“ã„ã„エフェクトã«ä½¿ãˆã¾ã™ã€‚ - - - Loop sample at start- and end-point - 開始点ã¨çµ‚了点ã§ã‚µãƒ³ãƒ—ルをループ - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - ã©ã“ã‹ã‚‰ãƒ«ãƒ¼ãƒ—モードãŒå§‹ã¾ã‚‹ã‹ã‚’指定ã—ã¾ã™ã€‚ループモードãŒå§‹ã¾ã‚‹ã¨ã‚ªãƒ¼ãƒ‡ã‚£ã‚ªãƒ—ロセッサーã¯ã€ã™ã¹ã¦ã®éŸ³ï¼ˆãƒŽãƒ¼ãƒˆï¼‰ãŒæ¼”å¥ã•れるã¾ã§ã€ã‚µãƒ³ãƒ—ルã®é–‹å§‹ç‚¹ã¨çµ‚了点ã®é–“をループã—ã¾ã™ã€‚ ストリングやクワイヤーã®ã‚µãƒ³ãƒ—ルãªã©ã«åŠ¹æžœçš„ã§ã™ã€‚ + ã“ã®ãƒœã‚¿ãƒ³ã‚’有効ã«ã™ã‚‹ã¨ã€ã™ã¹ã¦ã®ã‚µãƒ³ãƒ—ルãŒé€†å›žè»¢ã•れã¾ã™ã€‚例ãˆã°ãƒªãƒãƒ¼ã‚¹ãƒ‰ã‚¯ãƒ©ãƒƒã‚·ãƒ¥ã¨ã„ã£ãŸã‚¯ãƒ¼ãƒ«ãªã‚¨ãƒ•ェクトã§å½¹ç«‹ã¡ã¾ã™ã€‚ 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%ã«ã™ã‚‹ã¨ã‚µãƒ³ãƒ—ルã¯å¤‰åŒ–ã—ã¾ã›ã‚“。ãã†ã§ãªã„ã¨ãã¯å¢—幅率ãŒä¸Šä¸‹ã—ã¾ã™ï¼ˆå®Ÿéš›ã®ã‚µãƒ³ãƒ—ルファイルãã®ã¾ã¾ã§ï¼‰ã€‚ + ã“ã®ã¤ã¾ã¿ã§ã¯å¢—幅率を設定ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã“ã®å€¤ã‚’100%ã«ã™ã‚‹ã¨ã‚µãƒ³ãƒ—ルã¯å¤‰åŒ–ã—ã¾ã›ã‚“。ãã†ã§ãªã„ã¨ãã¯å¢—幅率ãŒä¸Šä¸‹ã—ã¾ã™ï¼ˆå®Ÿéš›ã®ã‚µãƒ³ãƒ—ルファイルã¯å¤‰æ›´ã•れã¾ã›ã‚“!) Startpoint: - - - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - ã“ã®ã¤ã¾ã¿ã§ã‚ªãƒ¼ãƒ‡ã‚£ã‚ªãƒ•ァイルプロセッサãŒãŒã‚µãƒ³ãƒ—ル演å¥ã‚’é–‹å§‹ã™ã‚‹å ´æ‰€ã‚’セットã—ã¾ã™ã€‚ループモードをONã«ã—ã¦ã‚‹å ´åˆã§ã²ã¨ã¤ã®ãƒŽãƒ¼ãƒˆãŒã‚¹ã‚¿ãƒ¼ãƒˆãƒã‚¤ãƒ³ãƒˆã¨ã‚¨ãƒ³ãƒ‰ãƒã‚¤ãƒ³ãƒˆã®é–“ã®ã‚µãƒ³ãƒ—ルより長ã„å ´åˆã€ã“ã‚Œã§æŒ‡å®šã—ãŸä½ç½®ãŒã‚ªãƒ¼ãƒ‡ã‚£ã‚ªãƒ—ãƒ­ã‚»ãƒƒã‚µãŒæˆ»ã‚‹ç‚¹ã§ã™ã€‚ + 開始点: Endpoint: - - - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - ã“ã®ã¤ã¾ã¿ã§ã‚ªãƒ¼ãƒ‡ã‚£ã‚ªãƒ—ロセッサãŒã‚µãƒ³ãƒ—ル演å¥ã‚’ストップã™ã‚‹ä½ç½®ã‚’指定ã—ã¾ã™ã€‚ã‚‚ã—ループモードãŒONã®å ´åˆã§ã²ã¨ã¤ã®ãƒŽãƒ¼ãƒˆãŒé–‹å§‹ç‚¹ã¨çµ‚了点ã®ã‚ã„ã ã®ã‚µãƒ³ãƒ—ルより長ã„å ´åˆã€ã“ã®ä½ç½®ã¯ã‚ªãƒ¼ãƒ‡ã‚£ã‚ªãƒ—ãƒ­ã‚»ãƒƒã‚µãŒæˆ»ã‚‹ä½ç½®ã§ã™ã€‚ + 終了点: Continue sample playback across notes @@ -119,6 +159,42 @@ If you're interested in translating LMMS in another language or want to imp 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. + + AudioFileProcessorWaveView @@ -150,22 +226,22 @@ If you're interested in translating LMMS in another language or want to imp AudioJack::setupWidget CLIENT-NAME - クライアントå + CHANNELS - ãƒãƒ£ãƒ³ãƒãƒ« + AudioOss::setupWidget DEVICE - デãƒã‚¤ã‚¹ + CHANNELS - ãƒãƒ£ãƒ³ãƒãƒ« + @@ -176,25 +252,25 @@ If you're interested in translating LMMS in another language or want to imp DEVICE - デãƒã‚¤ã‚¹ + AudioPulseAudio::setupWidget DEVICE - デãƒã‚¤ã‚¹ + CHANNELS - ãƒãƒ£ãƒ³ãƒãƒ« + AudioSdl::setupWidget DEVICE - デãƒã‚¤ã‚¹ + @@ -209,11 +285,11 @@ If you're interested in translating LMMS in another language or want to imp &Paste value (%1%2) - 値をペースト(&P) (%1%2) + 値を貼り付ã‘(&P) (%1%2) Edit song-global automation - 歌全体ã®ã‚ªãƒ¼ãƒˆãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’編集 + 曲全体ã®ã‚ªãƒ¼ãƒˆãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ã‚’編集 Connected to %1 @@ -221,19 +297,19 @@ If you're interested in translating LMMS in another language or want to imp Connected to controller - ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ©ã«æŽ¥ç¶šæ¸ˆ + ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ©ãƒ¼ã«æŽ¥ç¶šæ¸ˆ Edit connection... - 接続を編集 + 接続を編集... Remove connection - 接続を消去 + 接続を削除 Connect to controller... - ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ©ã«æŽ¥ç¶š + ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ©ãƒ¼ã«æŽ¥ç¶š... Remove song-global automation @@ -248,7 +324,7 @@ If you're interested in translating LMMS in another language or want to imp AutomationEditor Play/pause current pattern (Space) - ç¾åœ¨ã®ãƒ‘ターンã®å†ç”Ÿ/ãƒãƒ¼ã‚º (Space) + ç¾åœ¨ã®ãƒ‘ターンã®å†ç”Ÿ/ä¸€æ™‚åœæ­¢ (Space) Stop playing of current pattern (Space) @@ -268,7 +344,7 @@ If you're interested in translating LMMS in another language or want to imp Erase mode (Shift+E) - 消去 モード (shift+E) + 消去モード (shift+E) 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. @@ -280,7 +356,7 @@ If you're interested in translating LMMS in another language or want to imp Cut selected values (Ctrl+X) - é¸æŠžã—ãŸå€¤ã‚’カット (Shift+M) + é¸æŠžã—ãŸå€¤ã‚’切りå–り (Shift+M) Copy selected values (Ctrl+C) @@ -288,7 +364,7 @@ If you're interested in translating LMMS in another language or want to imp Paste values from clipboard (Ctrl+V) - 値をクリップボードã‹ã‚‰ãƒšãƒ¼ã‚¹ãƒˆ (Ctrl+V) + クリップボードã‹ã‚‰å€¤ã‚’貼り付㑠(Ctrl+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. @@ -304,23 +380,23 @@ If you're interested in translating LMMS in another language or want to imp Automation Editor - no pattern - オートメーションエディタ - パターンãªã— + Automation Editor - %1 - オートメーションエディタ - %1 + Please open an automation pattern with the context menu of a control! - コントロールã®ã‚³ãƒ³ãƒ†ã‚¯ã‚¹ãƒˆãƒ¡ãƒ‹ãƒ¥ãƒ¼ã§ã‚ªãƒ¼ãƒˆãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ãƒ‘ターンをé¸ã‚“ã§ãã ã•ã„ + コントロールã®ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆãƒ¡ãƒ‹ãƒ¥ãƒ¼ã§ã‚ªãƒ¼ãƒˆãƒ¡ãƒ¼ã‚·ãƒ§ãƒ³ãƒ‘ã‚¿ãƒ¼ãƒ³ã‚’é¸æŠžã—ã¦ãã ã•ã„! Values copied - 値ã¯ã‚³ãƒ”ーã•れã¾ã—㟠+ 値をコピーã—ã¾ã—㟠All selected values were copied to the clipboard. - é¸æŠžã•れãŸå€¤ã¯ã™ã¹ã¦ã‚¯ãƒªãƒƒãƒ—ボードã«ã‚³ãƒ”ーã•れã¾ã—㟠+ é¸æŠžã•れãŸå€¤ã¯ã™ã¹ã¦ã‚¯ãƒªãƒƒãƒ—ボードã«ã‚³ãƒ”ーã•れã¾ã—ãŸã€‚ Discrete progression @@ -363,18 +439,22 @@ If you're interested in translating LMMS in another language or want to imp AutomationPattern Drag a control while pressing <Ctrl> - 実行中ã®ãƒ‰ãƒ©ãƒƒã‚°ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«<Ctrl> + <Ctrl>を押ã—ãªãŒã‚‰ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ã‚’ドラッグã—ã¦ãã ã•ã„ + + + Model is already connected to this pattern. + AutomationPatternView double-click to open this pattern in automation editor - ダブルクリックã§ã“ã®ãƒ‘ターンをオートメーションエディタ中ã«ã²ã‚‰ãã¾ã™ + ダブルクリックã™ã‚‹ã¨ã€ã“ã®ãƒ‘ターンをAutomation Editorã§é–‹ãã¾ã™ Open in Automation editor - オートメーションエディタ中ã«é–‹ã + Automation Editor ã§é–‹ã Clear @@ -386,7 +466,7 @@ If you're interested in translating LMMS in another language or want to imp Change name - + åå‰ã‚’変更 %1 Connections @@ -396,30 +476,87 @@ If you're interested in translating LMMS in another language or want to imp Disconnect "%1" "%1" を切断 + + Set/clear record + 録音をセット/クリア + AutomationTrack Automation track - オートメーショントラック + Automation track + + + + BassBoosterControlDialog + + FREQ + + + + Frequency: + 周波数: + + + GAIN + + + + Gain: + ゲイン: + + + RATIO + + + + Ratio: + 比率: + + + + BassBoosterControls + + Frequency + 周波数 + + + Gain + ゲイン + + + Ratio + 比率 + + + + CarlaInstrumentView + + Show GUI + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + Controller Controller %1 - コントローラ %1 + Controller %1 ControllerConnectionDialog Connection Settings - コントローラ設定 + 接続設定 MIDI CONTROLLER - MIDI コントローラ + MIDI コントローラー Input channel @@ -431,11 +568,11 @@ If you're interested in translating LMMS in another language or want to imp Input controller - インプット コントローラ + 入力コントローラー CONTROLLER - コントローラ + コントローラー Auto Detect @@ -447,7 +584,7 @@ If you're interested in translating LMMS in another language or want to imp USER CONTROLLER - ユーザ コントローラ + ユーザー コントローラー MAPPING FUNCTION @@ -455,34 +592,34 @@ If you're interested in translating LMMS in another language or want to imp 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. @@ -497,25 +634,151 @@ If you're interested in translating LMMS in another language or want to imp 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 - ã“ã®ãƒ—ラグインを除去(&R) + ã“ã®ãƒ—ラグインを削除(&R) &Help ヘルプ(&H) + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + + + Effect @@ -528,11 +791,11 @@ If you're interested in translating LMMS in another language or want to imp Gate - + ゲート Decay - + ディケイ @@ -550,25 +813,25 @@ If you're interested in translating LMMS in another language or want to imp Add effect - エフェクト追加 + エフェクトを追加 EffectSelectDialog Add effect - エフェクト追加 + エフェクトを追加 Plugin description - + プラグインã®èª¬æ˜Ž EffectView Toggles the effect on or off. - エフェクト㮠オン/オフ + ã‚¨ãƒ•ã‚§ã‚¯ãƒˆã®æœ‰åй/無効を切り替ãˆã¾ã™ã€‚ On/Off @@ -580,11 +843,11 @@ If you're interested in translating LMMS in another language or want to imp Wet Level: - + Wet レベル: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - Wet/Dry ã¤ã¾ã¿ã§ã€€å‡ºåЛ䏭ã®å…¥åŠ›ã‚·ã‚°ãƒŠãƒ«ã¨ã‚¨ãƒ•ェクトシグナルã®å‰²åˆã‚’ãã‚ã¾ã™ã€‚ + Wet/Dry ã¤ã¾ã¿ã§ã¯ã€å‡ºåЛ䏭ã®å…¥åŠ›ã‚·ã‚°ãƒŠãƒ«ã¨ã‚¨ãƒ•ェクトシグナルã®å‰²åˆã‚’設定ã—ã¾ã™ã€‚ DECAY @@ -592,11 +855,11 @@ If you're interested in translating LMMS in another language or want to imp 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ã®ã‚ªãƒ¼ãƒãƒ˜ãƒƒãƒ‰ã‚’ã¸ã‚‰ã›ã¾ã™ãŒã€ãƒ‡ã‚£ãƒ¬ã‚¤ã¨ãƒªãƒãƒ¼éƒ¨ã‚¨ãƒ•ェクトã®å°»å°¾ãŒã‚¯ãƒªãƒƒãƒ”ングã™ã‚‹å±é™ºãŒã‚りã¾ã™ã€‚ + ディケイã¤ã¾ã¿ã§ã¯ã€ãƒ—ラグインãŒãƒ—ロセスを終了ã™ã‚‹å‰ã«ã„ãã¤ã®ç„¡éŸ³ãƒãƒƒãƒ•ã‚¡ãŒæ¸¡ã•れãªã‘れã°ãªã‚‰ãªã„ã‹ã‚’コントロールã—ã¾ã™ã€‚値をå°ã•ãã™ã‚‹ã»ã©CPUã®ã‚ªãƒ¼ãƒãƒ˜ãƒƒãƒ‰ã¯æ¸›å°‘ã—ã¾ã™ãŒã€ãƒ‡ã‚£ãƒ¬ã‚¤ã¨ãƒªãƒãƒ¼ãƒ–ã‚¨ãƒ•ã‚§ã‚¯ãƒˆã®æœ«å°¾ãŒã‚¯ãƒªãƒƒãƒ”ングã™ã‚‹å±é™ºãŒã‚りã¾ã™ã€‚ GATE @@ -604,11 +867,11 @@ If you're interested in translating LMMS in another language or want to imp Gate: - + ゲート: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - ゲートã¤ã¾ã¿ã¯ã‚·ã‚°ãƒŠãƒ«ãƒ¬ãƒ™ãƒ«ã‚’コントールã—ã¾ã™ã€‚ã“ã®ã‚·ã‚°ãƒŠãƒ«ãƒ¬ãƒ™ãƒ«ã¯ã‚·ã‚°ãƒŠãƒ«å‡¦ç†ã‚’ã„ã¤çµ‚了ã™ã‚‹ã‹æ±ºå®šã™ã‚‹éš›ã«ç„¡éŸ³ã¨åˆ¤æ–­ã•れるレベルã§ã™ã€‚ + ゲートã¤ã¾ã¿ã§ã¯ã‚·ã‚°ãƒŠãƒ«ãƒ¬ãƒ™ãƒ«ã‚’コントロールã—ã¾ã™ã€‚ã“ã®ã‚·ã‚°ãƒŠãƒ«ãƒ¬ãƒ™ãƒ«ã¨ã¯ã‚·ã‚°ãƒŠãƒ«å‡¦ç†ã‚’ã„ã¤çµ‚了ã™ã‚‹ã‹æ±ºå®šã™ã‚‹éš›ã«ç„¡éŸ³ã¨åˆ¤æ–­ã•れるレベルã§ã™ã€‚ Controls @@ -628,87 +891,87 @@ The Gate knob controls the 'given threshold' for the effect's aut 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. - エフェクトプラグイン関数ã¯ã„ã¤ã¤ã‹ã®ã‚¨ãƒ•ェクトã®ã²ã¨é€£ãªã‚Šã§ã™ã€‚シグナルã¯ä¸Šã‹ã‚‰ä¸‹ã«å‡¦ç†ã•れã¾ã™ã€‚ -On/Off スイッãƒã§ã„ã¤ã§ã‚‚指定ã—ãŸãƒ—ラグインをパイパスã™ã‚‹ã“ã¨ãŒã§ãã¾ã™. + エフェクトプラグイン関数ã¨ã¯é€£éŽ–ã™ã‚‹ã‚¨ãƒ•ェクト系列ã§ã™ã€‚シグナルã¯ä¸Šã‹ã‚‰ä¸‹ã«å‡¦ç†ã•れã¾ã™ã€‚ -Wet/Dry ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトã®å‡ºåЛ䏭ã®å…¥åŠ›ã‚·ã‚°ãƒŠãƒ«ã¨ã‚¨ãƒ•ェクトシグナルã®ãƒãƒ©ãƒ³ã‚¹ã‚’コントロールã§ãã¾ã™ã€‚ +On/Off スイッãƒã§ã„ã¤ã§ã‚‚指定ã—ãŸãƒ—ラグインをãƒã‚¤ãƒ‘スã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ -入力ステージã¯ä¸€ã¤å‰ã®ã‚¹ãƒ†ãƒ¼ã‚¸ã‹ã‚‰ã®å‡ºåŠ›ã§ã™ã€‚ãªã®ã§é€£éŽ–ã®ä¸‹ã®æ–¹ã®ã‚¨ãƒ•ェクト㮠'dry'シグナルã¯ãれã¾ã§ã®ã‚¨ãƒ•ェクトをã™ã¹ã¦å«ã‚“ã§ã„ã™ã€‚ +Wet/Dry ã¤ã¾ã¿ã§ã¯ã€ã‚¨ãƒ•ェクトã®å‡ºåЛ䏭ã®å…¥åŠ›ã‚·ã‚°ãƒŠãƒ«ã¨ã‚¨ãƒ•ェクトシグナルã®ãƒãƒ©ãƒ³ã‚¹ã‚’コントロールã—ã¾ã™ã€‚ステージã®å…¥åŠ›ã¨ã¯ä¸€ã¤å‰ã®ã‚¹ãƒ†ãƒ¼ã‚¸ã‹ã‚‰ã®å‡ºåŠ›ã§ã™ã€‚ãã®ãŸã‚連鎖ã®ä¸‹ã®æ–¹ã®ã‚¨ãƒ•ェクト㮠'dry'シグナルã¯ãれã¾ã§ã®ã‚¨ãƒ•ェクトをã™ã¹ã¦å«ã‚“ã§ã„ã¾ã™ã€‚ -Decay ã¤ã¾ã¿ã§ã€€ãƒŽãƒ¼ãƒˆãŒçµ‚ã‚ã£ãŸã‚ã¨ã©ã‚Œã ã‘ã®æ™‚間シグナルを処ç†ã™ã‚‹ã‹ã‚’ãã‚ã¾ã™ã€‚与ãˆã‚‰ã‚ŒãŸæ™‚間内ã«ä¸Žãˆã‚‰ã‚ŒãŸã—ãã„値以下ã«éŸ³é‡ãŒè½ã¡ãŸã¨ãã«ã‚¨ãƒ•ェクトã¯å‡¦ç†ã‚’åœæ­¢ã—ã¾ã™ã€‚ã“ã®ã¤ã¾ã¿ã§â€ä¸Žãˆã‚‰ã‚ŒãŸæ™‚é–“â€ã‚’ãã‚ã¾ã™ã€‚ã“ã®æ™‚é–“ã‚’é•·ãã™ã‚‹ã¨CPUを食ã„ã¾ã™ã€ã™ãªã‚ã¡ãŸå¤§æŠµã®ã‚¨ãƒ•ェクトã«ã¤ã„ã¦ã¯ Decayã¯å°ã•ãã™ã‚‹ã¹ãã§ã™ã€‚ディレイã®ã‚ˆã†ãªé•·ã„æ™‚é–“ã®æ²ˆé»™ã‚’生ã˜ã‚‹ã‚¨ãƒ•ェクトã®å ´åˆã¯Decayを増やã™å¿…è¦ãŒã‚りã¾ã™ã€‚ +ディケイã¤ã¾ã¿ã§ã¯ã€ãƒŽãƒ¼ãƒˆã®ãƒªãƒªãƒ¼ã‚¹å¾Œã«å‡¦ç†ã•れるシグナルã®é•·ã•をコントロールã—ã¾ã™ã€‚与ãˆã‚‰ã‚ŒãŸæ™‚間内ã«ä¸Žãˆã‚‰ã‚ŒãŸé–¾å€¤ä»¥ä¸‹ã«éŸ³é‡ãŒè½ã¡ãŸã¨ãã«ã‚¨ãƒ•ェクトã¯å‡¦ç†ã‚’åœæ­¢ã—ã¾ã™ã€‚ã“ã®ã¤ã¾ã¿ã§â€ä¸Žãˆã‚‰ã‚ŒãŸæ™‚é–“â€ã‚’設定ã—ã¾ã™ã€‚ã“ã®æ™‚é–“ã‚’é•·ãã™ã‚‹ã»ã©CPUã‚’å¿…è¦ã¨ã™ã‚‹ã®ã§ã€å¤šãã®ã‚¨ãƒ•ェクトã§ã¯å°ã•ã„値を指定ã™ã‚‹ã¹ãã§ã—ょã†ã€‚ディレイã®ã‚ˆã†ãªé•·æ™‚é–“ã®æ²ˆé»™ãŒç™ºç”Ÿã™ã‚‹ã‚¨ãƒ•ェクトã®å ´åˆã¯å€¤ã‚’増やã™å¿…è¦ãŒã‚りã¾ã™ã€‚ -Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ã‚ŒãŸã—ãã„値"を決ã‚ã¾ã™ã€‚ã“ã®ãƒŽãƒ–ã§æ±ºã‚ãŸãƒ¬ãƒ™ãƒ«ä»¥ä¸‹ã«ã‚·ã‚°ãƒŠãƒ«ãƒ¬ãƒ™ãƒ«ãŒè½ã¡ã‚‹ã¨ã¨ã™ãã«â€ä¸Žãˆã‚‰ã‚ŒãŸæ™‚é–“â€ãŒã¯ã˜ã¾ã‚Šã¾ã™ã€‚ -コントロール ボタンã§ã€€ã‚¨ãƒ•ェクトã®ãƒ‘ラメタã®ç·¨é›†ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’ã²ã‚‰ãã¾ã™ã€‚ +ゲートã¤ã¾ã¿ã§ã¯ã€ã‚¨ãƒ•ェクトã®è‡ªå‹•åœæ­¢ãŸã‚ã«â€ä¸Žãˆã‚‰ã‚Œã‚‹é–¾å€¤â€ã‚’コントロールã—ã¾ã™ã€‚ã“ã®ã¤ã¾ã¿ã§æŒ‡å®šã—ãŸãƒ¬ãƒ™ãƒ«ä»¥ä¸‹ã«ã‚·ã‚°ãƒŠãƒ«ãƒ¬ãƒ™ãƒ«ãŒè½ã¡ã‚‹ã¨ã™ãã«â€ä¸Žãˆã‚‰ã‚ŒãŸæ™‚é–“é•·â€ãŒé–‹å§‹ã—ã¾ã™ã€‚ -å³ã‚¯ãƒªãƒƒã‚¯ã™ã‚‹ã¨ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆãƒ¡ãƒ‹ãƒ¥ãƒ¼ãŒé–‹ãã¾ã™ã€‚ãã“ã§ã‚¨ãƒ•ェクトãŒå®Ÿè¡Œã•れる順番をã‹ãˆãŸã‚Šã‚¨ãƒ•ã‚§ã‚¯ãƒˆã‚’å®Œå…¨ã«æ¶ˆåŽ»ã—ãŸã‚Šã§ãã¾ã™ã€‚ +コントロールボタンã¯ã‚¨ãƒ•ェクトã®ãƒ‘ラメータã®ç·¨é›†ãƒ€ã‚¤ã‚¢ãƒ­ã‚°ã‚’é–‹ãã¾ã™ã€‚ + +å³ã‚¯ãƒªãƒƒã‚¯ã™ã‚‹ã¨ã‚³ãƒ³ãƒ†ã‚­ã‚¹ãƒˆãƒ¡ãƒ‹ãƒ¥ãƒ¼ãŒé–‹ãã¾ã™ã€‚メニューã§ã¯ã‚¨ãƒ•ェクトãŒå®Ÿè¡Œã•れる順番を変更ã—ãŸã‚Šã€ã‚¨ãƒ•ã‚§ã‚¯ãƒˆã‚’å®Œå…¨ã«æ¶ˆåŽ»ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ Move &up - 上方移動(&u) + 一ã¤ä¸Šã¸(&u) Move &down - 下方移動(&d) + 一ã¤ä¸‹ã¸(&d) &Remove this plugin - ã“ã®ãƒ—ラグインを除去(&R) + ã“ã®ãƒ—ラグインを削除(&R) &Help - ヘルプ(&H) + ヘルプ(&H) EnvelopeAndLfoParameters Predelay - + プレディレイ Attack - + アタック Hold - + ホールド Decay - + ディケイ Sustain - + サスティン Release - + リリース Modulation - + モジュレーション LFO Predelay - + LFO プレディレイ LFO Attack - + LFO アタック LFO speed - + LFO ã®é€Ÿåº¦ LFO Modulation - + LFO ã®ãƒ¢ã‚¸ãƒ¥ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³ LFO Wave Shape - + LFO ã®æ³¢å½¢ Freq x 100 @@ -727,11 +990,11 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ 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 @@ -739,11 +1002,11 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ 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 @@ -751,11 +1014,11 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ 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 @@ -763,11 +1026,11 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ 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 @@ -775,11 +1038,11 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ 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 @@ -787,11 +1050,11 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ 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 @@ -799,27 +1062,27 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ Modulation amount: - + モジュレーションé‡: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - ã“ã®ã¤ã¾ã¿ã§ç¾åœ¨ã®ã‚¨ãƒ³ãƒ™ãƒ­ãƒ¼ãƒ—ã®ãƒ¢ã‚¸ãƒ¥ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³é‡ã‚’指定ã—ã¾ã™ã€‚ã“ã®å€¤ã‚’大ããã™ã‚‹ã¨ã“ã®ã‚¨ãƒ³ãƒ™ãƒ­éƒ¨ãŒå½±éŸ¿ã™ã‚‹å¯¾å¿œã™ã‚‹å€¤ï¼ˆéŸ³é‡ã¨ã‹ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«å‘¨æ³¢æ•°ã¨ã‹ï¼‰ãŒå¤§ãããªã‚Šã¾ã‚Šã¾ã™ã€‚ + ã“ã®ã¤ã¾ã¿ã§ç¾åœ¨ã®ã‚¨ãƒ³ãƒ™ãƒ­ãƒ¼ãƒ—ã®ãƒ¢ã‚¸ãƒ¥ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³é‡ã‚’指定ã—ã¾ã™ã€‚ã“ã®å€¤ã‚’大ããã™ã‚‹ã»ã©å¯¾å¿œã™ã‚‹å€¤ï¼ˆéŸ³é‡ã‚„カットオフ周波数ãªã©ï¼‰ã¯ã‚¨ãƒ³ãƒ™ãƒ­ãƒ¼ãƒ—ã®å½±éŸ¿ã‚’å—ã‘ã¾ã™ã€‚ LFO predelay: - + LFO プレディレイ: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - ã“ã®ã¤ã¾ã¿ã§ç¾åœ¨ã®LFOã®ãƒ—レデイレイタイムを指定ã—ã¾ã™ã€‚ã“ã®å€¤ã‚’大ããã™ã‚‹ã¨ã€€LSFOãŒã‚ªã‚·ãƒ¬ãƒ¼ãƒˆã‚’å§‹ã‚ã‚‹ã¾ã§ã®æ™‚é–“ãŒé•·ããªã‚Šã¾ã™ã€‚ + ã“ã®ã¤ã¾ã¿ã§ç¾åœ¨ã®LFOã®ãƒ—レディレイ時間を指定ã—ã¾ã™ã€‚ã“ã®å€¤ã‚’大ããã™ã‚‹ã»ã©LFOãŒã‚ªã‚·ãƒ¬ãƒ¼ãƒˆã‚’é–‹å§‹ã™ã‚‹ã¾ã§ã®æ™‚é–“ãŒé•·ããªã‚Šã¾ã™ã€‚ LFO- attack: - + LFO アタック: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - ã“ã®ã¤ã¾ã¿ã§ç¾åœ¨ã®LFOã®ã‚¢ã‚¿ãƒƒã‚¯ã‚¿ã‚¤ãƒ ã‚’指定ã—ã¾ã™ã€‚大ããã™ã‚‹ã¨LFOã®æŒ¯å¹…ãŒæœ€å¤§ã«ãªã‚‹ã¾ã§ã«ã‹ã‹ã‚‹æ™‚é–“ãŒé•·ããªã‚Šã¾ã™ã€‚ + ã“ã®ã¤ã¾ã¿ã§ç¾åœ¨ã®LFOã®ã‚¢ã‚¿ãƒƒã‚¯æ™‚間を指定ã—ã¾ã™ã€‚ã“ã®å€¤ã‚’大ããã™ã‚‹ã»ã©LFOã®æŒ¯å¹…ãŒæœ€å¤§ã«ãªã‚‹ã¾ã§ã«ã‹ã‹ã‚‹æ™‚é–“ãŒé•·ããªã‚Šã¾ã™ã€‚ SPD @@ -827,35 +1090,35 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ LFO speed: - + LFO ã®é€Ÿåº¦: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - ã“ã®ã¤ã¾ã¿ã§ç¾åœ¨ã®LFOã®ã‚¹ãƒ”ードを指定ã—ã¾ã™ã€‚値を大ããã™ã‚‹ã¨LFOã®ã‚ªã‚·ãƒ¬ãƒ¼ãƒˆãŒæ—©ããªã£ã¦ã‚¨ãƒ•ェクトも早ããªã‚Šã¾ã™ã€‚ + ã“ã®ã¤ã¾ã¿ã§ç¾åœ¨ã®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ã®å½±éŸ¿ã‚’ã†ã‘ã‚‹é¸ã‚“ã å€¤ï¼ˆãƒœãƒªã‚¦ãƒ ã¨ã‹ã‚«ãƒƒãƒˆã‚ªãƒ•周波数ã¨ã‹ï¼‰ãŒãŠãŠãããªã‚Šã¾ã™ã€‚ + ã“ã®ã¤ã¾ã¿ã§ç¾åœ¨ã®LFOã®ãƒ¢ã‚¸ãƒ¥ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³é‡ã‚’指定ã—ã¾ã™ã€‚ã“ã®å€¤ã‚’大ããã™ã‚‹ã»ã©é¸ã‚“ã å€¤ï¼ˆéŸ³é‡ã‚„カットオフ周波数等)ã¯LFOã®å½±éŸ¿ã‚’å—ã‘ã¾ã™ã€‚ Click here for a sine-wave. - クリックã§ã‚µã‚¤ãƒ³æ³¢ + ã“ã“をクリックã™ã‚‹ã¨ã‚µã‚¤ãƒ³æ³¢å½¢ã«ã—ã¾ã™ã€‚ Click here for a triangle-wave. - + ã“ã“をクリックã™ã‚‹ã¨ä¸‰è§’波形ã«ã—ã¾ã™ã€‚ Click here for a saw-wave for current. - クリックã§ã®ã“ãŽã‚Šæ³¢ + ã“ã“をクリックã™ã‚‹ã¨ã®ã“ãŽã‚Šæ³¢å½¢ã«ã—ã¾ã™ã€‚ Click here for a square-wave. - + ã“ã“をクリックã™ã‚‹ã¨æ–¹å½¢æ³¢å½¢ã«ã—ã¾ã™ã€‚ Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - クリックã§ãƒ¦ãƒ¼ã‚¶ãƒ¼å®šç¾©æ³¢å½¢ã€‚ã‚ã¨ã§ã€å¯¾å¿œã™ã‚‹ã‚µãƒ³ãƒ—ルファイルをLFOグラフã®ä¸Šã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦ãã ã•ã„。 + ã“ã“をクリックã™ã‚‹ã¨ãƒ¦ãƒ¼ã‚¶ãƒ¼å®šç¾©æ³¢å½¢ã«ã—ã¾ã™ã€‚ãã®å¾Œã€å¯¾å¿œã™ã‚‹ã‚µãƒ³ãƒ—ルファイルをLFOグラフã®ä¸Šã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦ãã ã•ã„。 FREQ x 100 @@ -863,11 +1126,11 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ Click here if the frequency of this LFO should be multiplied by 100. - クリックã§LFO周波数を1ï¼ï¼å€ + ã“ã“をクリックã™ã‚‹ã¨LFO周波数を100å€ã«ã—ã¾ã™ã€‚ multiply LFO-frequency by 100 - + LFO周波数を100å€ã«ã™ã‚‹ MODULATE ENV-AMOUNT @@ -875,7 +1138,7 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ Click here to make the envelope-amount controlled by this LFO. - クリックã™ã‚‹ã¨ã€€ã‚¨ãƒ³ãƒ™ãƒ­ãƒ¼ãƒ—ã®é‡ãŒã“ã®LFOã§ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ã•れã¾ã™ã€‚ + ã“ã“をクリックã™ã‚‹ã¨ã‚¨ãƒ³ãƒ™ãƒ­ãƒ¼ãƒ—é‡ã‚’ã“ã®LFOã§ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ã—ã¾ã™ã€‚ control envelope-amount by this LFO @@ -887,30 +1150,34 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ Hint - ヒント + ヒント Drag a sample from somewhere and drop it in this window. - ã©ã£ã‹ã‹ã‚‰ã‚µãƒ³ãƒ—ルをドラッグã—ã¦ãã¦ã“ã®ã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã«ãƒ‰ãƒ­ãƒƒãƒ—ã—ã¦ãã ã•ã„。 + ä»»æ„ã®å ´æ‰€ã‹ã‚‰ã‚µãƒ³ãƒ—ルをドラッグã—ã€ã“ã®ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦å†…ã«ãƒ‰ãƒ­ãƒƒãƒ—ã—ã¦ãã ã•ã„。 + + + Click here for random wave. + ExportProjectDialog Export project - + プロジェクトã®ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆ Output - + 出力 File format: - + ファイル フォーマット: Samplerate: - + サンプルレート: 44100 Hz @@ -934,7 +1201,7 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ Bitrate: - + ビットレート: 64 KBit/s @@ -962,7 +1229,7 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ Depth: - + 深度: 16 Bit Integer @@ -978,11 +1245,11 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ Quality settings - + å“質設定 Interpolation: - + 補間: Zero Order Hold @@ -1002,7 +1269,7 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ Oversampling (use with care!): - + オーãƒãƒ¼ã‚µãƒ³ãƒ—リング(æ…Žé‡ã«æ‰±ã£ã¦ãã ã•ã„!): 1x (None) @@ -1020,52 +1287,118 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ 8x - - Sample-exact controllers - - - - Alias-free oscillators - - Start - + é–‹å§‹ Cancel - キャンセル + キャンセル Export as loop (remove end silence) + + FileBrowser + + Browser + + + + + 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... + + + + --- Factory files --- + + + + + 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 + + + + &Help + ヘルプ(&H) + + FxMixer Master - マスタ + マスター FX %1 - エフェクト %1 + FxMixerView Rename FX channel - エフェクトãƒãƒ£ãƒ³ãƒãƒ«ã®æ”¹å + FXãƒãƒ£ãƒ³ãƒãƒ«åを変更 Enter the new name for this FX channel - ã“ã®ã‚¨ãƒ•ェクトãƒãƒ£ãƒ³ãƒãƒ«ã®æ–°ã—ã„åå‰ã‚’入力 + ã“ã®FXãƒãƒ£ãƒ³ãƒãƒ«ã®æ–°ã—ã„åå‰ã‚’入力ã—ã¦ãã ã•ã„ FX-Mixer - エフェクトミキサー + + + + FxMixerView::FxChannelView FX Fader %1 @@ -1076,7 +1409,14 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ Mute this FX channel - ã“ã®ã‚¨ãƒ•ェクトãƒãƒ£ãƒ³ãƒãƒ«ã‚’ミュート + ã“ã®FXãƒãƒ£ãƒ³ãƒãƒ«ã‚’ミュート + + + + FxRoute + + Amount to send from channel %1 to channel %2 + @@ -1137,6 +1477,10 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ Sync + + Down and up + + InstrumentFunctionArpeggioView @@ -1579,6 +1923,18 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + + InstrumentFunctionNoteStackingView @@ -1641,6 +1997,18 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ NOTE + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + InstrumentSoundShaping @@ -1787,6 +2155,10 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ cutoff frequency: + + Envelopes, LFOs and filters are not supported by the current instrument. + + InstrumentTrack @@ -1872,10 +2244,6 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ GENERAL SETTINGS - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - ãりã£ãã™ã‚‹ã¨ã€ãƒ—リセットファイルã«ç¾åœ¨ã®ãƒãƒ£ãƒ³ãƒãƒ«ã‚»ãƒƒãƒ†ã‚£ãƒ³ã‚°ã‚’セーブã§ãã¾ã™ã€‚後ã‹ã‚‰ãƒ—リセットブラウザ中ã§ã“ã®ãƒ—リセットをダブルクリックã™ã‚‹ã¨ã“ã®ãƒ—リセットをロードã§ãã¾ã™ã€‚ - Instrument volume @@ -1948,10 +2316,6 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ PLUGIN - - Save current channel settings in a preset-file - - Pitch range (semitones) @@ -1960,6 +2324,14 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ 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. + + LadspaControl @@ -2005,6 +2377,13 @@ Gate ã®ã¤ã¾ã¿ã§ã€€ã‚¨ãƒ•ェクトãŒè‡ªå‹•åœæ­¢ã™ã‚‹ãŸã‚ã®â€ä¸Žãˆã‚‰ 䏿˜ŽãªLADSPA プラグイン %1 + + LcdSpinBox + + Please enter a new value between %1 and %2: + %1 㨠%2 ã®é–“ã®æ–°ã—ã„値を入力ã—ã¦ãã ã•ã„: + + LfoController @@ -2367,10 +2746,6 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. LMMS (*.mmp *.mmpz) - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - - Version %1 @@ -2391,6 +2766,22 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Error while parsing configuration file at line %1:%2: %3 + + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + + MeterDialog @@ -2436,22 +2827,22 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiController MIDI Controller - MIDI コントローラ + unnamed_midi_controller - åãªã—_MIDI_コントローラ + å称未設定_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. @@ -2462,7 +2853,7 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiOss::setupWidget DEVICE - デãƒã‚¤ã‚¹ + @@ -2477,19 +2868,19 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Input controller - インプット コントローラ + 入力コントローラー Output controller - アウトプット コントローラ + 出力コントローラー Fixed input velocity - 入力ベロシティ固定 + 固定入力ベロシティ Fixed output velocity - 出力ベロシティ固定 + 固定出力ベロシティ Output MIDI program @@ -2507,6 +2898,647 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 + + + + + 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. + + + + + 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 @@ -2550,6 +3582,10 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Osc %1 waveform + + Osc %1 harmonic + + PatmanView @@ -2598,6 +3634,39 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. パッãƒãƒ•ァイル (*.pat) + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + ダプルクリックã§ã“ã®ãƒ‘ターンをピアノロールã«é–‹ãã¾ã™ã€‚ +マウスホイールã§ã‚¹ãƒ†ãƒƒãƒ—ã®éŸ³é‡ã‚’セットã—ã¾ã™ã€‚ + + + Open in piano-roll + ピアノロールを開ã + + + Clear all notes + ã™ã¹ã¦ã®ãƒŽãƒ¼ãƒˆã‚’クリア + + + Reset name + åå‰ã‚’リセット + + + Change name + åå‰å¤‰æ›´ + + + Add steps + ステップ追加 + + + Remove steps + ステップ除去 + + PeakController @@ -2698,6 +3767,189 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PianoRoll + + Play/pause current pattern (Space) + ç¾åœ¨ã®ãƒ‘ターンã®å†ç”Ÿ/ä¸€æ™‚åœæ­¢ (Space) + + + Stop playing of current pattern (Space) + ç¾åœ¨ã®ãƒ‘ターンã®å†ç”Ÿã‚’åœæ­¢ (Space) + + + Cut selected notes (Ctrl+X) + é¸æŠžã—ãŸãƒŽãƒ¼ãƒˆã®åˆ‡ã‚Šå–り (Ctrl+X) + + + Copy selected notes (Ctrl+C) + é¸æŠžã—ãŸãƒŽãƒ¼ãƒˆã®ã‚³ãƒ”ー (Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + クリップボードã‹ã‚‰ãƒŽãƒ¼ãƒˆã‚’貼り付㑠(Ctrl+V) + + + Piano-Roll - no pattern + + + + Piano-Roll - %1 + + + + Please open a pattern by double-clicking on it! + パターン上ã§ãƒ€ãƒ–ルクリックã—ã¦ã€ãƒ‘ターンを開ã„ã¦ãã ã•ã„! + + + Record notes from MIDI-device/channel-piano + MIDI-デãƒã‚¤ã‚¹/ãƒãƒ£ãƒ³ãƒãƒ«-ピアノã‹ã‚‰ãƒŽãƒ¼ãƒˆã‚’録音 + + + Record notes from MIDI-device/channel-piano while playing song or BB track + 曲やBBトラックをå†ç”Ÿä¸­ã« MIDI-デãƒã‚¤ã‚¹/ãƒãƒ£ãƒ³ãƒãƒ«-ピアノã‹ã‚‰ãƒŽãƒ¼ãƒˆã‚’録音 + + + Draw mode (Shift+D) + ドローモード (shift+D) + + + Erase mode (Shift+E) + 消去モード (shift+E) + + + Select mode (Shift+S) + é¸æŠžãƒ¢ãƒ¼ãƒ‰ (Shift+S) + + + Last note + 最後ã«ä½¿ç”¨ã—ãŸãƒŽãƒ¼ãƒˆ + + + 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デãƒã‚¤ã‚¹ã¾ãŸã¯å¯¾å¿œã™ã‚‹ãƒãƒ£ãƒ³ãƒãƒ«ã‚¦ã‚£ãƒ³ãƒ‰ã‚¦ã®ãƒãƒ¼ãƒãƒ£ãƒ«ãƒ†ã‚¹ãƒˆãƒ”アノã‹ã‚‰ã€ãƒŽãƒ¼ãƒˆã‚’ç¾åœ¨ã®ãƒ‘ターンã«éŒ²éŸ³ã—ã¾ã™ã€‚録音ã®éš›ã€å†ç”Ÿã—ãŸã™ã¹ã¦ã®ãƒŽãƒ¼ãƒˆã¯ç¾åœ¨ã®ãƒ‘ã‚¿ãƒ¼ãƒ³ã«æ›¸ãè¾¼ã¾ã‚Œã¾ã™ã€‚曲ã¾ãŸã¯BBトラックãŒãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã§æ¼”å¥ã•れã¾ã™ã€‚ + + + Click here to stop playback of current pattern. + ã“ã“をクリックã™ã‚‹ã¨ç¾åœ¨ã®ãƒ‘ターンã®éŒ²éŸ³å†ç”Ÿã‚’åœæ­¢ã—ã¾ã™ã€‚ + + + 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. + ã“ã“をクリックã™ã‚‹ã¨ã‚¯ãƒªãƒƒãƒ—ボード内ã®ãƒŽãƒ¼ãƒˆãŒæœ€åˆã«è¡¨ç¤ºã•れã¦ã„ã‚‹å°ç¯€ã«è²¼ã‚Šä»˜ã‘られã¾ã™ã€‚ + + + Note lock + ノートをロック + + + Note Volume + ノートã®éŸ³é‡ + + + Note Panning + ノートã®ãƒ‘ンニング + + + 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 Ctrl to temporarily go into select mode. + ã“ã“をクリックã™ã‚‹ã¨ãƒ‰ãƒ­ãƒ¼ãƒ¢ãƒ¼ãƒ‰ã«ãªã‚Šã¾ã™ã€‚ドローモードã§ã¯å€‹ã€…ã®ãƒŽãƒ¼ãƒˆã‚’追加・リサイズ・移動ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚普段ã“ã®ãƒ¢ãƒ¼ãƒ‰ã‚’デフォルトã§ä½¿ç”¨ã—ã¾ã™ã€‚'Shift+D' を押ã—ã¦ã‚‚ã“ã®ãƒ¢ãƒ¼ãƒ‰ã«ãªã‚Šã¾ã™ã€‚ã“ã®ãƒ¢ãƒ¼ãƒ‰ã§ã¯Ctrlを長押ã—ã™ã‚‹ã“ã¨ã§ä¸€æ™‚çš„ã«é¸æŠžãƒ¢ãƒ¼ãƒ‰ã«ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + + + 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 Ctrl in draw mode to temporarily use select mode. + ã“ã“をクリックã™ã‚‹ã¨é¸æŠžãƒ¢ãƒ¼ãƒ‰ã«ãªã‚Šã¾ã™ã€‚é¸æŠžãƒ¢ãƒ¼ãƒ‰ã§ã¯å€‹ã€…ã®ãƒŽãƒ¼ãƒˆã‚’é¸æŠžã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ã¾ãŸã€ãƒ‰ãƒ­ãƒ¼ãƒ¢ãƒ¼ãƒ‰ä¸­ã«Ctrlを長押ã—ã™ã‚‹ã“ã¨ã§ä¸€æ™‚çš„ã«é¸æŠžãƒ¢ãƒ¼ãƒ‰ã‚’使用ã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ + + + 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. + + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + + + + No scale + + + + No chord + + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + %1 㨠%2 ã®é–“ã®æ–°ã—ã„値を入力ã—ã¦ãã ã•ã„: + + PianoView @@ -2725,6 +3977,10 @@ Reason: "%2" Failed to load plugin "%1"! プラグイン "%1" ã®ãƒ­ãƒ¼ãƒ‰ã«å¤±æ•—ï¼ + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2869,58 +4125,58 @@ Reason: "%2" File: - ファイル + ファイル: + + + File: %1 + ファイル: %1 SampleBuffer Open audio file - - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - + オーディオファイルを開ã Wave-Files (*.wav) - + WAV ファイル (*.wav) OGG-Files (*.ogg) - + OGG ファイル (*.ogg) DrumSynth-Files (*.ds) - + DrumSynth ファイル (*.ds) FLAC-Files (*.flac) - + FLAC ファイル (*.flac) SPEEX-Files (*.spx) - - - - MP3-Files (*.mp3) - + 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 *.mp3) @@ -2931,11 +4187,11 @@ Reason: "%2" Delete (middle mousebutton) - + 削除 (マウス中ボタン) Cut - カット + 切りå–り Copy @@ -2943,11 +4199,11 @@ Reason: "%2" Paste - ペースト + 貼り付㑠Mute/unmute (<Ctrl> + middle click) - + ミュート/ミュート解除(<Ctrl> + 中ボタンクリック) Set/clear record @@ -2962,29 +4218,176 @@ Reason: "%2" Volume - ボリウム + éŸ³é‡ SampleTrackView Track volume - トラック ボリウム + ãƒˆãƒ©ãƒƒã‚¯éŸ³é‡ Channel volume: - ãƒãƒ£ãƒ³ãƒãƒ«ãƒœãƒªã‚¦ãƒ  + ãƒãƒ£ãƒ³ãƒãƒ«éŸ³é‡: VOL + + SongEditor + + Song-Editor + + + + Play song (Space) + 曲をå†ç”Ÿ (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. + ã“ã“をクリックã™ã‚‹ã¨æ›²å…¨ä½“ã‚’å†ç”Ÿã—ã¾ã™ã€‚ソングãƒã‚¸ã‚·ãƒ§ãƒ³ãƒžãƒ¼ã‚«ãƒ¼ï¼ˆç·‘色)ã®ä½ç½®ã‹ã‚‰å†ç”Ÿé–‹å§‹ã—ã¾ã™ã€‚å†ç”Ÿä¸­ã«ãƒžãƒ¼ã‚«ãƒ¼ã‚’移動ã•ã›ã‚‹ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ + + + Stop song (Space) + æ›²ã‚’åœæ­¢ (Space) + + + Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. + ã“ã“をクリックã™ã‚‹ã¨æ›²ã®å†ç”Ÿã‚’åœæ­¢ã—ã¾ã™ã€‚å†ç”Ÿå¾Œã€ã‚½ãƒ³ã‚°ãƒã‚¸ã‚·ãƒ§ãƒ³ãƒžãƒ¼ã‚«ãƒ¼ã¯æ›²ã®æœ€åˆã«ã‚»ãƒƒãƒˆã•れã¾ã™ã€‚ + + + Add beat/bassline + Beat/Bassline を追加 + + + Add sample-track + Sample-Track を追加 + + + Could not open file + ファイルを開ãã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—㟠+ + + Could not write file + ãƒ•ã‚¡ã‚¤ãƒ«ã«æ›¸ã込むã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—㟠+ + + Add automation-track + Automation-Track を追加 + + + Draw mode + ドローモード + + + Edit mode (select and move) + 編集モード (é¸æŠžã¨ç§»å‹•) + + + Record samples from Audio-device + オーディオデãƒã‚¤ã‚¹ã‹ã‚‰ã‚µãƒ³ãƒ—ルを録音 + + + Record samples from Audio-device while playing song or BB track + 曲ã¾ãŸã¯BBトラックをå†ç”Ÿä¸­ã«ã‚ªãƒ¼ãƒ‡ã‚£ã‚ªãƒ‡ãƒã‚¤ã‚¹ã‹ã‚‰ã‚µãƒ³ãƒ—ルを録音 + + + 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)ã§æŒ‡å®šã—ã¾ã™ã€‚曲ã®ãƒ†ãƒ³ãƒã‚’変更ã™ã‚‹å ´åˆã¯ã“ã®å€¤ã‚’変更ã—ã¦ãã ã•ã„。å„å°ç¯€ã¯ï¼”ã¤ã®ãƒ“ートをもã¡ã¾ã™ã‹ã‚‰ã€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. + + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + + + + Linear Y axis + + + + + SpectrumAnalyzerControls + + Linear spectrum + + + + Linear Y axis + + + + Channel mode + + + TempoSyncKnob Tempo Sync - テンãƒåŒæœŸ + テンãƒã®åŒæœŸ No Sync @@ -2992,7 +4395,7 @@ Reason: "%2" Eight beats - エイトビート + 8ビート Whole note @@ -3020,19 +4423,19 @@ Reason: "%2" Custom... - カスタム + カスタム... &Help - ヘルプ(&H) + ヘルプ(&H) Custom - カスタム + カスタム Synced to Eight Beats - エイトビートã«åŒæœŸ + 8ビートã«åŒæœŸ Synced to Whole Note @@ -3070,27 +4473,27 @@ Reason: "%2" 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ã§ã‚µãƒãƒ¼ãƒˆã—ã¦ã‚‹ãƒ•ォーマットã«å¤‰æ›ã—ã¦ãã ã•ã„。 + インãƒãƒ¼ãƒˆä¸­ã®ãƒ•ァイル %1ã®ãƒ•ィルターãŒè¦‹ã¤ã‹ã‚Šã¾ã›ã‚“ã§ã—ãŸã€‚ +ä»–ã®ã‚½ãƒ•トウェアã§ã€ã“ã®ãƒ•ァイルをLMMSãŒã‚µãƒãƒ¼ãƒˆã—ã¦ã‚‹ãƒ•ォーマットã«å¤‰æ›ã—ã¦ãã ã•ã„。 Couldn't open file - ファイルをオープンã§ãã¾ã›ã‚“。 + ファイルを開ãã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—㟠Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! - ファイル %1 を読ã¿è¾¼ã¿ç”¨ã«ã‚ªãƒ¼ãƒ—ンã§ãã¾ã›ã‚“。 -ファイルã¨ãƒ•ァイルã®å…¥ã£ã¦ã‚‹ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãŒèª­ã¿è¾¼ã¿å¯èƒ½ã‹ãƒã‚§ãƒƒã‚¯ã—ã¦ã‚‚ã†ä¸€åº¦èª­ã¿è¾¼ã‚“ã§ãã ã•ã„。 + ファイル %1 を読ã¿è¾¼ã¿ç”¨ã«é–‹ãã“ã¨ãŒã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ +ファイルã¨ãƒ•ァイルã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãŒèª­ã¿è¾¼ã¿å¯èƒ½ã‹ãƒã‚§ãƒƒã‚¯ã—ã¦ã‹ã‚‰å†åº¦èª­ã¿è¾¼ã‚“ã§ãã ã•ã„! Loading project... - プロジェクトロード中 + プロジェクトをロードã—ã¦ã„ã¾ã™... Cancel @@ -3102,11 +4505,11 @@ Please make sure you have read-permission to the file and the directory containi Importing MIDI-file... - MIDI-ファイルをインãƒãƒ¼ãƒˆä¸­... + MIDI-ファイルをインãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã™... Importing FLP-file... - FLP-ファイルをインãƒãƒ¼ãƒˆä¸­... + FLP-ファイルをインãƒãƒ¼ãƒˆã—ã¦ã„ã¾ã™... @@ -3278,19 +4681,19 @@ Please make sure you have read-permission to the file and the directory containi VestigeInstrumentView Open other VST-plugin - ã»ã‹ã® VST-プラグインをオープン + ä»–ã® 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 - GUIã®è¡¨ç¤º/éžè¡¨ç¤º + GUIを表示/éžè¡¨ç¤º Click here to show or hide the graphical user interface (GUI) of your VST-plugin. - ã“ã“をクリックã™ã‚‹ã¨ã€€VST-プラグインã®ã‚°ãƒ©ãƒ•ィカルユーザーインターフェース(GUI)ãŒè¡¨ç¤ºã•れãŸã‚Šéžè¡¨ç¤ºã«ãªã£ãŸã‚Šã—ã¾ã™ã€‚ + ã“ã“をクリックã™ã‚‹ã¨VST-プラグインã®ã‚°ãƒ©ãƒ•ィカルユーザーインターフェース(GUI)ã®è¡¨ç¤º/éžè¡¨ç¤ºã‚’切り替ãˆã¾ã™ã€‚ Turn off all notes @@ -3426,20 +4829,6 @@ Please make sure you have read-permission to the file and the directory containi Loading plugin プラグインをロード中 - - Please wait while loading VST-plugin... - VST-プラグインをロードã™ã‚‹é–“ãŠå¾…ã¡ãã ã•ã„ - - - Failed loading VST-plugin - VST-プラグインã®ãƒ­ãƒ¼ãƒ‰å¤±æ•— - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - VST-plugin %1 ãŒã„ãã¤ã‹ã®ç†ç”±ã§ãƒ­ãƒ¼ãƒ‰ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ -ã‚‚ã—ãã®VSTãŒLinuxã®ã»ã‹ã®VST-ソフトウェアã§å‹•ããªã‚‰ LMMS ã®é–‹ç™ºè€…ã«é€£çµ¡ã—ã¦ãã ã•ã„。 - Open Preset @@ -3480,6 +4869,268 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer .fxb + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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 + + + + 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 @@ -3520,7 +5171,7 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer ZynAddSubFxView Show GUI - + GUI を表示 Click here to show or hide the graphical user interface (GUI) of ZynAddSubFX. @@ -3605,54 +5256,32 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Reverse sample サンプル逆回転 - - Loop - ループ - Stutter - - - bassBoosterControlDialog - FREQ + Loopback point - Frequency: + Loop mode + ループモード + + + Interpolation mode - GAIN + None - Gain: + Linear - RATIO - - - - Ratio: - - - - - bassBoosterControls - - Frequency - - - - Gain - - - - Ratio + Sinc @@ -3660,11 +5289,11 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer bbEditor Beat+Bassline Editor - ビート+ベースライン エディタ + Beat+Bassline-Editor Play/pause current beat/bassline (Space) - ç¾åœ¨ã® beat/bassline ã‚’ å†ç”Ÿ/ãƒãƒ¼ã‚º (Space) + ç¾åœ¨ã® beat/bassline ã‚’ å†ç”Ÿ/ä¸€æ™‚åœæ­¢ (Space) Add beat/bassline @@ -3699,7 +5328,7 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer bbTCOView Open in Beat+Bassline-Editor - ビート+ベースライン-エディタを開ã + Beat+Bassline-Editor ã‚’é–‹ã Reset name @@ -3713,6 +5342,10 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Change color 色を変更 + + Reset color to default + + bbTrack @@ -3740,19 +5373,19 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Sine wave - + サイン波 Triangle wave - + 三角波 Saw wave - + ã®ã“ãŽã‚Šæ³¢ Square wave - + 矩形波 White noise wave @@ -3796,7 +5429,7 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Click here for a square-wave. - クリックã™ã‚‹ã¨æ–¹å½¢æ³¢ + クリックã™ã‚‹ã¨çŸ©å½¢æ³¢ Click here for white-noise. @@ -3807,6 +5440,120 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer クリックã™ã‚‹ã¨ãƒ¦ãƒ¼ã‚¶ãƒ¼æ³¢å½¢ + + 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 + + + exportProjectDialog @@ -3843,40 +5590,6 @@ Please make sure you have write-permission to the file and the directory contain %1 㨠%2 ã®é–“ã®æ–°ã—ã„値を入力ã—ã¦ãã ã•ã„: - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - - - graphModel @@ -3895,15 +5608,43 @@ Please make sure you have write-permission to the file and the directory contain - Decay + Gain - Distortion - 説明 + Length + - Gain + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note @@ -3917,18 +5658,38 @@ Please make sure you have write-permission to the file and the directory contain End frequency: - - Decay: - - - - Distortion: - - Gain: + + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: + + knob @@ -4213,6 +5974,38 @@ Double clicking any of the plugins will bring up information on the ports.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 @@ -4808,11 +6601,27 @@ Double clicking any of the plugins will bring up information on the ports. - Osc %1 fine detuning left: + 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: @@ -5082,237 +6891,27 @@ Double clicking any of the plugins will bring up information on the ports. - - pattern - - Cannot freeze pattern - パターンをフリーズã§ãã¾ã›ã‚“ - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - プレイモードã«ãªã£ã¦ã‚‹ã®ã§ãƒ‘ターンã¯ç¾åœ¨ãƒ•リーズã§ãã¾ã›ã‚“ã€‚ãƒ—ãƒ¬ã‚¤ãƒ¢ãƒ¼ãƒ‰ã‚’åœæ­¢ã—ã¦å†è©¦è¡Œã—ã¦ãã ã•ã„。 - - - - patternFreezeStatusDialog - - Freezing pattern... - フリーズ中ã®ãƒ‘ターン - - - Cancel - キャンセル - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - ダプルクリックã§ã“ã®ãƒ‘ターンをピアノロールã«é–‹ãã¾ã™ã€‚ -マウスホイールã§ã‚¹ãƒ†ãƒƒãƒ—ã®ãƒœãƒªã‚¦ãƒ ã‚’セットã—ã¾ã™ã€‚ - - - Open in piano-roll - ピアノロールを開ã - - - Clear all notes - ã™ã¹ã¦ã®ãƒŽãƒ¼ãƒˆã‚’クリア - - - Reset name - åå‰ã‚’リセット - - - Change name - åå‰å¤‰æ›´ - - - Refreeze - å†ãƒ•リーズ - - - Freeze - フリーズ - - - Unfreeze - フリーズ解除 - - - Add steps - ステップ追加 - - - Remove steps - ステップ除去 - - - - PianoRoll - - Play/pause current pattern (Space) - ç¾åœ¨ã®ãƒ‘ターンã®å†ç”Ÿ/ãƒãƒ¼ã‚º (Space) - - - Stop playing of current pattern (Space) - ç¾åœ¨ã®ãƒ‘ã‚¿ãƒ¼ãƒ³ã®æ¼”å¥åœæ­¢ (Space) - - - Cut selected notes (Ctrl+X) - é¸æŠžãƒŽãƒ¼ãƒˆã®åˆ‡ã‚Šå–り (Ctrl+X) - - - Copy selected notes (Ctrl+C) - é¸æŠžãƒŽãƒ¼ãƒˆã®ã‚³ãƒ”ー (Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - クリップボードã‹ã‚‰ãƒŽãƒ¼ãƒˆã‚’ペースト (Ctrl+V) - - - Piano-Roll - no pattern - ピアノロール - パターンãªã— - - - Piano-Roll - %1 - ピアノロール - %1 - - - Please open a pattern by double-clicking on it! - â€ãƒ‘ターンâ€ï¼ã®ä¸Šã§ãƒ€ãƒ–ルクリックã—ã¦â€ãƒ‘ターンâ€ã‚’é–‹ã„ã¦ãã ã•ã„ - - - Record notes from MIDI-device/channel-piano - MIDI-デãƒã‚¤ã‚¹/ãƒãƒ£ãƒ³ãƒãƒ«-ピアノã‹ã‚‰ãƒŽãƒ¼ãƒˆã‚’録音 - - - Record notes from MIDI-device/channel-piano while playing song or BB track - 曲やBBトラックをå†ç”Ÿä¸­ã«ã€€MIDI-デãƒã‚¤ã‚¹/ãƒãƒ£ãƒ³ãƒãƒ«-ピアノã‹ã‚‰ãƒŽãƒ¼ãƒˆã‚’録音 - - - Draw mode (Shift+D) - ドローモード (shift+D) - - - Erase mode (Shift+E) - 消去 モード (shift+E) - - - Select mode (Shift+S) - é¸æŠžãƒ¢ãƒ¼ãƒ‰ (Shift+S) - - - Last note - 最後ã®ãƒŽãƒ¼ãƒˆ - - - 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デãƒã‚¤ã‚¹ã¾ãŸã¯å¯¾å¿œã™ã‚‹ãƒãƒ£ãƒ³ãƒãƒ«ã‚¦ã‚¤ãƒ³ãƒ‰ã‚¦ã®ãƒãƒ¼ãƒãƒ£ãƒ«ãƒ†ã‚¹ãƒˆãƒ”アノã‹ã‚‰ã®ãƒŽãƒ¼ãƒˆã‚’ç¾åœ¨ã®ãƒ‘ターンã«éŒ²éŸ³ã—ã¾ã™ã€‚録音ã®éš›å†ç”Ÿã—ãŸã™ã¹ã¦ã®ãƒŽãƒ¼ãƒˆã¯ç¾åœ¨ã®ãƒ‘ã‚¿ãƒ¼ãƒ³ã«æ›¸ãè¾¼ã¾ã‚Œã¾ã™ã€‚曲ã¾ãŸã¯BBトラックãŒãƒãƒƒã‚¯ã‚°ãƒ©ã‚¦ãƒ³ãƒ‰ã§æ¼”å¥ã•れã¾ã™ã€‚ - - - Click here to stop playback of current pattern. - クリックã™ã‚‹ã¨ ç¾åœ¨ã®ãƒ‘ターンã®ãƒ—レイãƒãƒƒã‚¯ã‚’åœæ­¢ã—ã¾ã™ã€‚ - - - 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. - クリックã™ã‚‹ã¨ã‚¯ãƒªãƒƒãƒ—ボードã®ä¸­ã®ãƒŽãƒ¼ãƒˆãŒæœ€åˆã®è¡¨ç¤ºã•れã¦ã‚‹å°ç¯€ã«ãƒšãƒ¼ã‚¹ãƒˆã•れã¾ã™ã€‚ - - - Note lock - ノート ロック - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser no description - 記述ãªã— + 説明ãªã— Instrument plugins - 楽器プラグイン + Instrument Plugins Incomplete monophonic imitation tb303 - tb303ã®ä¸å®Œå…¨ãªãƒ¢ãƒŽãƒ•ォニックイミテーション + ä¸å®Œå…¨ãªãƒ¢ãƒŽãƒ•ォニック イミテーション tb303 Plugin for freely manipulating stereo output - ステレオ出力を自由ã«ã„ã˜ã‚‹ãƒ—ラグイン + ã‚¹ãƒ†ãƒ¬ã‚ªå‡ºåŠ›ã‚’è‡ªç”±ã«æ“作ã™ã‚‹ãƒ—ラグイン Plugin for controlling knobs with sound peaks - サウンドã®ãƒ”ークã§ã¤ã¾ã¿ã‚’コントロールã™ã‚‹ãƒ—ラグイン + サウンドã®ãƒ”ークをã¤ã¾ã¿ã§ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ã™ã‚‹ãƒ—ラグイン Plugin for enhancing stereo separation of a stereo input file @@ -5320,77 +6919,57 @@ use mouse wheel to set volume of a step List installed LADSPA plugins - インストールã•れã¦ã‚‹ LADSPA プラグインã®ãƒªã‚¹ãƒˆ - - - three powerful oscillators you can modulate in several ways - ã„ãã¤ã‹ã®æ–¹æ³•ã§ãƒ¢ã‚¸ãƒ¥ãƒ¬ãƒ¼ãƒˆã§ãるフリーã§ãƒ‘ワフルãªã‚ªã‚·ãƒ¬ãƒ¼ã‚¿ç¾¤ + インストールã•れã¦ã„ã‚‹ LADSPA プラグインã®ãƒªã‚¹ãƒˆ Filter for importing FL Studio projects into LMMS - FL Studio ã®ãƒ—ロジェクトをLMMSã«ã‚¤ãƒ³ãƒãƒ¼ãƒˆã™ã‚‹ãƒ•ィルター - - - versatile kick- & bassdrum-synthesizer - versatile キックã¨ãƒã‚¹ãƒ‰ãƒ©ãƒ ã®ã‚·ãƒ³ã‚»ã‚µã‚¤ã‚¶ãƒ¼ + FL Studio プロジェクトを LMMS ã«ã‚¤ãƒ³ãƒãƒ¼ãƒˆã™ã‚‹ãŸã‚ã®ãƒ•ィルター GUS-compatible patch instrument - GUS互æ›ãƒ‘ッãƒã®æ¥½å™¨ - - - plugin for using arbitrary VST-effects inside LMMS. - ä»»æ„ã®VSTエフェクトをLMMSã®ä¸­ã§ä½¿ã†ãŸã‚ã®ãƒ—ラグイン + GUS互æ›ãƒ‘ッãƒã®ã‚¤ãƒ³ã‚¹ãƒˆã‚¥ãƒ«ãƒ¡ãƒ³ãƒˆ Additive Synthesizer for organ-like sounds - オルガンã¿ãŸã„ãªã‚µã‚¦ãƒ³ãƒ‰ã®ãŸã‚ã®ä»˜åŠ çš„ã‚·ãƒ³ã‚»ã‚µã‚¤ã‚¶ãƒ¼ - - - plugin for boosting bass - ãƒã‚¹ã‚’ブースã¨ã™ã‚‹ãƒ—ラグイン + オルガン風サウンドã®ã‚¢ãƒ‡ã‚£ãƒ†ã‚£ãƒ– シンセサイザー Tuneful things to bang on - ã©ã‚“ã©ã‚“ãŸãŸã音楽的ãªéŸ³ã‚’ã ã™ã‚‚ã® - - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - 楽器トラックã§ã‚µãƒ³ãƒ—ル(ドラムã¨ã‹ï¼‰ã‚’使ã†ãŸã‚ã®ã„ã‚ã„ã‚設定ã§ãã‚‹å˜ç´”ãªã‚µãƒ³ãƒ—ラ + 打楽器風ã®éŸ³è‰²ã‚’å¥ã§ã‚‹ã‚¤ãƒ³ã‚¹ãƒˆã‚¥ãƒ«ãƒ¡ãƒ³ãƒˆ VST-host for using VST(i)-plugins within LMMS - VST(i)プラグインをLMMSã§ã¤ã‹ã†ãŸã‚ã®VSTホスト + VST(i)プラグインを LMMS ã§ä½¿ç”¨ã™ã‚‹ãŸã‚ã®VSTホスト Vibrating string modeler - ãƒã‚¤ãƒ–レーティングストリングモジュレータ + ãƒã‚¤ãƒ–レーティング ストリング モジュレーター plugin for using arbitrary LADSPA-effects inside LMMS. - ä»»æ„ã®LADSPAエフェクトをLMMSã§ä½¿ã†ãŸã‚ã®ãƒ—ラグイン + ä»»æ„ã® LADSPA エフェクトを LMMS ã§ä½¿ã†ãŸã‚ã®ãƒ—ラグイン Filter for importing MIDI-files into LMMS - MIDIファイルをLMMSã«ã‚¤ãƒ³ãƒãƒ¼ãƒˆã™ã‚‹ãŸã‚ã®ãƒ•ィルタ + MIDI ファイルを LMMS ã«ã‚¤ãƒ³ãƒãƒ¼ãƒˆã™ã‚‹ãŸã‚ã®ãƒ•ィルター Instrument browser - 楽器ブラウザ + Instrument Browser Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - 楽器を ソングエディタã¾ãŸã¯ãƒ“ート+ベースラインエディタã¾ãŸã¯å­˜åœ¨ã™ã‚‹æ¥½å™¨ãƒˆãƒ©ãƒƒã‚¯ã«ãƒ‰ãƒ©ãƒƒã‚°ã§ãã¾ã™ã€‚ + インストゥルメントをSong-Editorã‚„Beat+Bassline Editorã¾ãŸã¯å­˜åœ¨ã™ã‚‹ Instrument Trackã«ãƒ‰ãƒ©ãƒƒã‚°ã—ã¦ãã ã•ã„。 Emulation of the MOS6581 and MOS8580 SID. This chip was used in the Commodore 64 computer. - MOS6581 and MOS8580 SIDã®ã‚¨ãƒŸãƒ¥ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³ã€‚ -ã“ã®ãƒãƒƒãƒ—ã¯ã‚³ãƒ¢ãƒ‰ãƒ¼ãƒ«64ã‚³ãƒ³ãƒ”ãƒ¥ãƒ¼ã‚¿ã§æŽ¡ç”¨ã•れã¦ã„ãŸã€‚ + MOS6581ã‚„MOS8580 SIDã®ã‚¨ãƒŸãƒ¥ãƒ¬ãƒ¼ã‚·ãƒ§ãƒ³ã€‚ +ã“ã®ãƒãƒƒãƒ—ã¯Commodore 64 computerã§æŽ¡ç”¨ã•れã¦ã„ã¾ã—ãŸã€‚ Player for SoundFont files - サウンドフォントファイルã®ãƒ—レイヤー + サウンドフォント ファイル用プレイヤー Emulation of GameBoy (TM) APU @@ -5398,11 +6977,11 @@ This chip was used in the Commodore 64 computer. Customizable wavetable synthesizer - カストマイズå¯èƒ½ãªã‚¦ã‚¨ãƒ¼ãƒ–テーブルシンセサイザー + カスタマイズå¯èƒ½ãªã‚¦ã‚§ãƒ¼ãƒ–テーブルシンセサイザー Embedded ZynAddSubFX - + 埋ã‚込㿠ZynAddSubFX 2-operator FM Synth @@ -5416,24 +6995,80 @@ This chip was used in the Commodore 64 computer. LMMS port of sfxr + + Monstrous 3-oscillator synth with modulation matrix + + + + Three powerful oscillators you can modulate in several ways + æ§˜ã€…ãªæ–¹æ³•ã§ãƒ¢ã‚¸ãƒ¥ãƒ¬ãƒ¼ãƒˆã§ãã‚‹3ã¤ã®ãƒ‘ワフルãªã‚ªã‚·ãƒ¬ãƒ¼ã‚¿ç¾¤ + + + 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 + + projectNotes Project notes - プロジェクトノート + Put down your project notes here. - + ã“ã“ã«ãƒ—ロジェクトã«é–¢ã™ã‚‹ãƒ¡ãƒ¢ã‚’記入ã—ã¦ãã ã•ã„。 Edit Actions - + 編集機能 &Undo - + å…ƒã«æˆ»ã™(&U) Ctrl+Z @@ -5441,7 +7076,7 @@ This chip was used in the Commodore 64 computer. &Redo - + やり直ã—(&R) Ctrl+Y @@ -5449,7 +7084,7 @@ This chip was used in the Commodore 64 computer. &Copy - + コピー(&C) Ctrl+C @@ -5457,7 +7092,7 @@ This chip was used in the Commodore 64 computer. Cu&t - + 切りå–り(&t) Ctrl+X @@ -5465,7 +7100,7 @@ This chip was used in the Commodore 64 computer. &Paste - + 貼り付ã‘(&P) Ctrl+V @@ -5473,11 +7108,11 @@ This chip was used in the Commodore 64 computer. Format Actions - + フォーマット機能 &Bold - + 太字(&B) Ctrl+B @@ -5485,7 +7120,7 @@ This chip was used in the Commodore 64 computer. &Italic - + 斜体(&I) Ctrl+I @@ -5493,7 +7128,7 @@ This chip was used in the Commodore 64 computer. &Underline - + 下線(&U) Ctrl+U @@ -5501,7 +7136,7 @@ This chip was used in the Commodore 64 computer. &Left - + å·¦æƒãˆ(&L) Ctrl+L @@ -5509,7 +7144,7 @@ This chip was used in the Commodore 64 computer. C&enter - + 中央æƒãˆ(&e) Ctrl+E @@ -5517,7 +7152,7 @@ This chip was used in the Commodore 64 computer. &Right - + 峿ƒãˆ(&R) Ctrl+R @@ -5525,7 +7160,7 @@ This chip was used in the Commodore 64 computer. &Justify - + 両端æƒãˆ(&J) Ctrl+J @@ -5533,29 +7168,29 @@ This chip was used in the Commodore 64 computer. &Color... - + 文字ã®è‰²(&C)... renameDialog Rename... - リãƒãƒ¼ãƒ  + åå‰ã®å¤‰æ›´... setupDialog Setup LMMS - LMMS設定 + LMMS 設定 General settings - è¨­å®šã‚’ç”Ÿæˆ + 一般設定 BUFFER SIZE - ãƒãƒƒãƒ•ァサイズ + ãƒãƒƒãƒ•ã‚¡ サイズ Reset to default-value @@ -5567,43 +7202,43 @@ This chip was used in the Commodore 64 computer. Enable tooltips - ツールãƒãƒƒãƒ— ON + ツールãƒãƒƒãƒ—を有効ã«ã™ã‚‹ Show restart warning after changing settings - 設定変更後 "リスタート警告" を表示 + 設定変更後ã«ã€Œå†èµ·å‹•警告ã€ã‚’表示ã™ã‚‹ Display volume as dBV - ボリウムを dBV ã§è¡¨ç¤º + 音é‡ã‚’ dBV ã§è¡¨ç¤ºã™ã‚‹ Compress project files per default - プロジェクトファイルã®åœ§ç¸®ã‚’デフォルト㫠+ プロジェクト ファイルã®åœ§ç¸®ã‚’デフォルトã«ã™ã‚‹ HQ-mode for output audio-device - 出力オーディオデãƒã‚¤ã‚¹ã‚’ HQ-モード㫠+ 出力オーディオデãƒã‚¤ã‚¹ã‚’高å“質モードã«ã™ã‚‹ LMMS working directory - LMMSã®ä½œæ¥­ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼ + LMMS作業ディレクトリー VST-plugin directory - VST-プラグインディレクトリ + VST-プラグイン ディレクトリー Artwork directory - アートワークã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒª + アートワーク ディレクトリー FL Studio installation directory - FL Studio ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒª + FL Studio ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼ STK rawwave directory - STK rawwave ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒª + STK rawwave ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼ Performance settings @@ -5611,15 +7246,15 @@ This chip was used in the Commodore 64 computer. UI effects vs. performance - UIエフェクト vs. パフォーマンス + UI エフェクト vs. パフォーマンス Audio settings - 自動セッティング + オーディオ設定 AUDIO INTERFACE - オーディオインターフェース + オーディオ インターフェース MIDI settings @@ -5635,56 +7270,57 @@ This chip was used in the Commodore 64 computer. Cancel - キャンセル + キャンセル Restart LMMS - LMMS å†èµ·å‹• + LMMS ã®å†èµ·å‹• Please note that most changes won't take effect until you restart LMMS! - LMMS ã‚’å†èµ·å‹•ã™ã‚‹ã¾ã§ã€€ãŸã„ã¦ã„ã®å¤‰æ›´ã¯æœ‰åйã«ãªã‚Šã¾ã›ã‚“ + 変更ã—ãŸè¨­å®šã®å¤§éƒ¨åˆ†ã¯ã€LMMSã®å†èµ·å‹•å¾Œã«æœ‰åйã«ãªã‚Šã¾ã™! Frames: %1 Latency: %2 ms - フレーム: %1レイテンシイ: %2 ms + フレーム: %1 +レイテンシー: %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. - ã“ã“ã§ LMMS ã§ä½¿ç”¨ã™ã‚‹å†…部ãƒãƒƒãƒ•ァサイズを指定ã—ã¾ã™ã€‚値ãŒå°ã•ã„ã¨ãƒ¬ã‚¤ãƒ†ãƒ³ã‚·ãƒ¼ãŒå°ã•ããªã‚Šã¾ã™ãŒå°ã•ã™ãŽã‚‹ã¨å¤ã„コンピュータやリアルタイムカーãƒãƒ«ã˜ã‚ƒãªã„システムã§ã¯ã²ã©ã„音やパフォーマンスã®ä½Žä¸‹ã‚’ã²ããŠã“ã—ã¾ã™ã€‚ + ã“ã“ã§ã¯LMMSã§ä½¿ç”¨ã™ã‚‹å†…部ãƒãƒƒãƒ•ァサイズを指定ã—ã¾ã™ã€‚値ãŒå°ã•ã„ã¨ãƒ¬ã‚¤ãƒ†ãƒ³ã‚·ãƒ¼ãŒå°ã•ããªã‚‹ã ã‘ã§ãªãã€ç‰¹ã«å¤ã„コンピュータやリアルタイムカーãƒãƒ«ã§ã¯ãªã„システムã§ã¯é…·ã„音やパフォーマンスã®ä½Žä¸‹ã‚’引ãèµ·ã“ã—ã¾ã™ã€‚ Choose LMMS working directory - LMMSã®ä½œæ¥­ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸ã³ã¾ã™ + LMMSã®ä½œæ¥­ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼ã‚’é¸æŠžã—ã¦ãã ã•ã„ Choose your VST-plugin directory - VSTプラグインディレクトリをé¸ã³ã¾ã™ + VSTãƒ—ãƒ©ã‚°ã‚¤ãƒ³ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼ã‚’é¸æŠžã—ã¦ãã ã•ã„ Choose artwork-theme directory - アートワークテーマディレクトリをé¸ã³ã¾ã™ + ã‚¢ãƒ¼ãƒˆãƒ¯ãƒ¼ã‚¯ãƒ†ãƒ¼ãƒžãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼ã‚’é¸æŠžã—ã¦ãã ã•ã„ Choose FL Studio installation directory - FL Studioã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸ã³ã¾ã™ + FL StudioãŒã‚¤ãƒ³ã‚¹ãƒˆãƒ¼ãƒ«ã•れã¦ã„ã‚‹ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼ã‚’é¸æŠžã—ã¦ãã ã•ã„ Choose LADSPA plugin directory - LADSPAプラグインã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸ã³ã¾ã™ + LADSPAプラグインã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼ã‚’é¸æŠžã—ã¦ãã ã•ã„ Choose STK rawwave directory - STK rawwave ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªã‚’é¸ã³ã¾ã™ + STK rawwave ã®ãƒ‡ã‚£ãƒ¬ã‚¯ãƒˆãƒªãƒ¼ã‚’é¸æŠžã—ã¦ãã ã•ã„ 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 ç­‰ãŒé¸ã¹ã¾ã™ã€‚下ã«é¸æŠžã—ãŸã‚ªãƒ¼ãƒ‡ã‚£ã‚ªã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ェースã®ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ç”¨ã®ãƒœãƒƒã‚¯ã‚¹ãŒã‚りã¾ã™ã€‚ + ã“ã“ã§ã¯å„ªå…ˆã™ã‚‹ã‚ªãƒ¼ãƒ‡ã‚£ã‚ªã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ãƒ¼ã‚¹ã‚’é¸æŠžã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚コンパイル時ã®ã‚·ã‚¹ãƒ†ãƒ è¨­å®šã«ã‚ˆã£ã¦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 インターフェースをã®ã‚³ãƒ³ãƒˆãƒ¼ãƒ«è¨­å®šã®æ¬„ãŒä¸‹ã«ã‚りã¾ã™ã€‚ + ã“ã“ã§ã¯MIDI ã‚¤ãƒ³ã‚¿ãƒ¼ãƒ•ã‚§ãƒ¼ã‚¹ã‚’é¸æŠžã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚コンパイル時ã®ã‚·ã‚¹ãƒ†ãƒ è¨­å®šã«ã‚ˆã£ã¦ã€ALSAã‚„OSSç­‰ã‚’é¸æŠžã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚é¸æŠžã—ãŸMIDIインターフェースã®ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«è¨­å®šé …ç›®ã¯ä¸‹éƒ¨ã«ã‚りã¾ã™ã€‚ Paths @@ -5692,7 +7328,7 @@ Latency: %2 ms LADSPA plugin paths - LADSAPA プラグインパス + LADSAPA プラグインã®ãƒ‘ス Default Soundfont File @@ -5704,11 +7340,11 @@ Latency: %2 ms Choose default SoundFont - デフォルトサウンドフォントをé¸ã³ã¾ã™ + デフォルトã®ã‚µã‚¦ãƒ³ãƒ‰ãƒ•ã‚©ãƒ³ãƒˆã‚’é¸æŠžã—ã¦ãã ã•ã„ Choose background artwork - 背景用アートワークをé¸ã³ã¾ã™ + èƒŒæ™¯ç”¨ã‚¢ãƒ¼ãƒˆãƒ¯ãƒ¼ã‚¯ã‚’é¸æŠžã—ã¦ãã ã•ã„ One instrument track window mode @@ -5728,15 +7364,15 @@ Latency: %2 ms Enable waveform display by default - + ãƒ‡ãƒ•ã‚©ãƒ«ãƒˆã§æ³¢å½¢è¡¨ç¤ºã‚’有効ã«ã™ã‚‹ Smooth scroll in Song Editor - + Song Editor ã§ã‚¹ãƒ ãƒ¼ã‚º スクロールã™ã‚‹ Enable auto save feature - + 自動ä¿å­˜æ©Ÿèƒ½ã‚’有効ã«ã™ã‚‹ Show playback cursor in AudioFileProcessor @@ -5747,19 +7383,19 @@ Latency: %2 ms sf2Instrument Bank - + ãƒãƒ³ã‚¯ Patch - + パッムGain - + ゲイン Reverb - + リãƒãƒ¼ãƒ– Reverb Roomsize @@ -5802,27 +7438,27 @@ Latency: %2 ms sf2InstrumentView Open other SoundFont file - + ä»–ã®ã‚µã‚¦ãƒ³ãƒ‰ãƒ•ォント ファイルを開ã Click here to open another SF2 file - + ã“ã“をクリックã™ã‚‹ã¨ä»–ã®SF2 ファイルを開ãã¾ã™ Choose the patch - + パッãƒã‚’é¸æŠž Gain - + ゲイン Apply reverb (if supported) - + (サãƒãƒ¼ãƒˆã—ã¦ã„ã‚‹ãªã‚‰ã°)リãƒãƒ¼ãƒ–ã‚’é©ç”¨ This button enables the reverb effect. This is useful for cool effects, but only works on files that support it. - ã“ã®ãƒœã‚¿ãƒ³ã§ãƒªãƒãƒ¼éƒ¨ã‚¨ãƒ•ェクトをON。 ã‹ã£ã“ã„ã„ã‚¨ãƒ•ã‚§ã‚¯ãƒˆã«æœ‰åŠ¹ã€‚ã€€ã—ã‹ã—リãƒãƒ¼ãƒ–をサãƒãƒ¼ãƒˆã—ãŸãƒ•ァイルã«ã—ã‹åйã‹ãªã„。 + ã“ã®ãƒœã‚¿ãƒ³ã§ãƒªãƒãƒ¼ãƒ– エフェクトを有効ã«ã—ã¾ã™ã€‚クールãªã‚¨ãƒ•ェクトã«ã¯æœ‰åйã§ã™ãŒã€ãƒªãƒãƒ¼ãƒ–をサãƒãƒ¼ãƒˆã—ãŸãƒ•ァイルã«ã—ã‹åŠ¹æžœãŒã‚りã¾ã›ã‚“。 Reverb Roomsize: @@ -5842,11 +7478,11 @@ Latency: %2 ms 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. - ã“ã®ã¼ãŸã‚“ã§ã‚³ãƒ¼ãƒ©ã‚¹ã‚¨ãƒ•ェクトをON。ã‹ã£ã“ã„ã„ã‚¨ã‚³ãƒ¼ã‚¨ãƒ•ã‚§ã‚¯ãƒˆã«æœ‰åŠ¹ã€‚ã—ã‹ã—コーラスをサãƒãƒ¼ãƒˆã—ãŸãƒ•ァイルã«ã—ã‹åйã‹ãªã„。 + ã“ã®ãƒœã‚¿ãƒ³ã§ã‚³ãƒ¼ãƒ©ã‚¹ エフェクトを有効ã«ã—ã¾ã™ã€‚クールãªã‚¨ã‚³ãƒ¼ エフェクトã«ã¯æœ‰åйã§ã™ãŒã€ã‚³ãƒ¼ãƒ©ã‚¹ã‚’サãƒãƒ¼ãƒˆã—ãŸãƒ•ァイルã«ã—ã‹åŠ¹æžœãŒã‚りã¾ã›ã‚“。 Chorus Lines: @@ -5866,11 +7502,11 @@ Latency: %2 ms Open SoundFont file - + サウンドフォント ファイルを開ã SoundFont2 Files (*.sf2) - + SoundFont2 ファイル (*.sf2) @@ -5884,15 +7520,15 @@ Latency: %2 ms sidInstrument Cutoff - + カットオフ Resonance - + レゾナンス Filter type - + フィルターã®ç¨®é¡ž Voice 3 off @@ -5900,38 +7536,38 @@ Latency: %2 ms Volume - ボリウム + éŸ³é‡ Chip model - + ãƒãƒƒãƒ—モデル sidInstrumentView Volume: - + 音é‡: Resonance: - + レゾナンス: Cutoff frequency: - + カットオフ周波数: High-Pass filter - + ãƒã‚¤ãƒ‘スフィルター Band-Pass filter - + ãƒãƒ³ãƒ‰ãƒ‘スフィルター Low-Pass filter - + ローパスフィルター Voice3 Off @@ -5947,43 +7583,43 @@ Latency: %2 ms Attack: - + アタック: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - アタック速度ã¯å‡ºåŠ›ãƒœã‚¤ã‚¹ %!1 ãŒã‚¼ãƒ­ã‹ã‚‰ãƒ”ーク振幅ã«ã©ã‚Œã ã‘æ—©ã大ãããªã‚‹ã‹ã‚‰ã‚’決ã‚ã¾ã™ã€‚ + アタック速度ã¯ã€ãƒœã‚¤ã‚¹ %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 ã¯ãƒŽãƒ¼ãƒˆãŒä¿æŒã•れã¦ã‚‹é–“ã€é¸ã°ã‚ŒãŸã‚µã‚¹ãƒ†ã‚£ãƒ³æŒ¯å¹…ã‚’ä¿æŒã—ã¾ã™ã€‚ + ボイス %1 ã®å‡ºåŠ›ã¯ãƒŽãƒ¼ãƒˆãŒä¿æŒã•れã¦ã‚‹é–“ã€é¸æŠžã•れãŸã‚µã‚¹ãƒ†ã‚£ãƒ³æŒ¯å¹…ã‚’ä¿æŒã—ã¾ã™ã€‚ Release: - + リリース: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. - 出力ボイス %1 ã¯ã€€é¸æŠžã•れãŸãƒªãƒªãƒ¼ã‚¹ãƒ¬ãƒ¼ãƒˆã§æŒ‡å®šã—ãŸå¤§ãã•ã§ã‚µã‚¹ãƒ†ã‚£ãƒ³ãƒ¬ãƒ™ãƒ«ã‹ã‚‰ã‚¼ãƒ­ã«å°ã•ããªã‚Šã¾ã™ã€‚ + ボイス %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 ã®ãƒ‘ルス波形ã¯èžãå–れる効果をæŒã¤ã‚ˆã†ã«é¸æŠžã•れãªã‘れã°ãªã‚Œã¾ã›ã‚“。 + パルス幅解åƒåº¦ã¯èªè­˜å¯èƒ½ãªã‚¹ãƒ†ãƒƒãƒ—を生ã˜ã‚‹ã“ã¨ãªãスムーズã«ã‚¹ã‚¤ãƒ¼ãƒ—å¯èƒ½ãªå¹…を与ãˆã¾ã™ã€‚オシレータ %1 ã®ãƒ‘ルス波形ã¯èžãå–りå¯èƒ½ãªã‚¨ãƒ•ェクトをæŒã¤ã‚ˆã†ã«é¸æŠžã—ãªã‘れã°ãªã‚Šã¾ã›ã‚“。 Coarse: @@ -5995,11 +7631,11 @@ Latency: %2 ms Pulse Wave - + パルス波形 Triangle Wave - + 三角波 SawTooth @@ -6007,15 +7643,15 @@ Latency: %2 ms Noise - + ノイズ Sync - + åŒæœŸ Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. - Sync â€Hard Sync"エフェクトを生ã˜ãªãŒã‚‰ã‚ªã‚·ãƒ¬ãƒ¼ã‚¿ %1 ã®åŸºæœ¬å‘¨æ³¢æ•°ã‚’ オシレータ %2 ã®åŸºæœ¬å‘¨æ³¢æ•°ã«åŒæœŸã—ã¾ã™ã€‚ + オシレータ %1 ã®åŸºæœ¬å‘¨æ³¢æ•°ã¨ã€"åŒæœŸã®é›£ã—ã„"エフェクトを生ã¿å‡ºã—ã¦ã„るオシレータ %2 ã®åŸºæœ¬å‘¨æ³¢æ•°ã‚’åŒæœŸã—ã¾ã™ã€‚ Ring-Mod @@ -6050,7 +7686,7 @@ Latency: %2 ms Master volume - マスターボリウム + ãƒžã‚¹ã‚¿ãƒ¼éŸ³é‡ Master pitch @@ -6062,19 +7698,19 @@ Latency: %2 ms The project %1 is now saved. - プロジェクト %1 をセーブã—ã¾ã—㟠+ プロジェクト %1 ã‚’ä¿å­˜ã—ã¾ã—㟠Project NOT saved. - プロジェクトã¯ã‚»ãƒ¼ãƒ–ã•れã¦ã¾ã›ã‚“ + プロジェクトã¯ä¿å­˜ã•れã¦ã„ã¾ã›ã‚“。 The project %1 was not saved! - プロジェクト %1 ã¯ã‚»ãƒ¼ãƒ–ã•れã¦ã¾ã›ã‚“ + プロジェクト %1 ã¯ä¿å­˜ã•れã¾ã›ã‚“ã§ã—ãŸ! Import file - インãƒãƒ¼ãƒˆãƒ•ァイル + ファイルã®ã‚¤ãƒ³ãƒãƒ¼ãƒˆ untitled @@ -6082,15 +7718,15 @@ Latency: %2 ms Select file for project-export... - プロジェクト-エクスãƒãƒ¼ãƒˆã™ã‚‹ãƒ•ァイルをé¸ã‚“ã§ãã ã•ã„ + プロジェクトをエクスãƒãƒ¼ãƒˆã™ã‚‹ãƒ•ã‚¡ã‚¤ãƒ«ã‚’é¸æŠžã—ã¦ãã ã•ã„... Empty project - 空プロジェクト + 空ã®ãƒ—ロジェクト This project is empty so exporting makes no sense. Please put some items into Song Editor first! - プロジェクトã¯ç©ºã§ã™ã‚¨ã‚­ã‚¹ãƒãƒ¼ãƒˆã¯ç„¡é§„ã§ã™ã€‚ソングエディタã«ã‚¢ã‚¤ãƒ†ãƒ ã‚’ç½®ã„ã¦ã‹ã‚‰ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã—ã¦ãã ã•ã„。 + プロジェクトãŒç©ºãªã®ã§ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã¯ç„¡åйã§ã™ã€‚Song Editor ã«ã‚¢ã‚¤ãƒ†ãƒ ã‚’ç½®ã„ã¦ã‹ã‚‰ã‚¨ã‚¯ã‚¹ãƒãƒ¼ãƒˆã—ã¦ãã ã•ã„! MIDI sequences @@ -6102,163 +7738,17 @@ Latency: %2 ms All file types - + ã™ã¹ã¦ã®ãƒ•ァイル Hydrogen projects - + Hydrogen プロジェクト Select directory for writing exported tracks... - - SongEditor - - Song-Editor - ソングエディタ - - - Play song (Space) - ソングå†ç”Ÿ (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. - クリックã™ã‚‹ã¨æ›²å…¨ä½“ã‚’æ¼”å¥ã—ã¾ã™ã€‚ソングãƒã‚¸ã‚·ãƒ§ãƒ³ãƒžãƒ¼ã‚«ãƒ¼ï¼ˆç·‘色)ã®ä½ç½®ã‹ã‚‰å†ç”Ÿé–‹å§‹ã—ã¾ã™ã€‚å†ç”Ÿä¸­ã«ãƒžãƒ¼ã‚«ãƒ¼ã‚’移動ã•ã™ã“ã¨ã‚‚ã§ãã¾ã™ã€‚ - - - Stop song (Space) - ã‚½ãƒ³ã‚°åœæ­¢ (Space) - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - クリックã™ã‚‹ã¨ã€€æ›²ã®å†ç”Ÿã‚’åœæ­¢ã—ã¾ã™ã€‚ å†ç”Ÿå¾Œã‚½ãƒ³ã‚°ãƒã‚¸ã‚·ãƒ§ãƒ³ãƒžãƒ¼ã‚«ãƒ¼ã¯æ›²ã®æœ€åˆã«ã‚»ãƒƒãƒˆã•れã¾ã™ã€‚ - - - Add beat/bassline - beat/bassline 追加 - - - Add sample-track - sample-track 追加 - - - Could not open file - ファイルをオープンã§ãã¾ã›ã‚“ - - - Could not write file - ãƒ•ã‚¡ã‚¤ãƒ«ã«æ›¸ãè¾¼ã‚ã¾ã›ã‚“ - - - Add automation-track - automation-track 追加 - - - Draw mode - ドローモード - - - Edit mode (select and move) - 編集モード (é¸æŠžç­‰ï¼‰ - - - Record samples from Audio-device - オーディオデãƒã‚¤ã‚¹ã‹ã‚‰ã‚µãƒ³ãƒ—ルを録音 - - - Record samples from Audio-device while playing song or BB track - ソングã¾ãŸã¯BBトラックをå†ç”Ÿä¸­ã«ã‚ªãƒ¼ãƒ‡ã‚£ã‚ªãƒ‡ãƒã‚¤ã‚¹ã‹ã‚‰ã‚µãƒ³ãƒ—ルを録音 - - - 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). - 曲ã®ãƒ†ãƒ³ãƒã¯åˆ†æ¯Žã®ãƒ“ート数(BPM)ã§æŒ‡å®šã—ã¾ã™ã€‚曲ã®ãƒ†ãƒ³ãƒã‚’変更ã™ã‚‹å ´åˆã¯ã“ã®å€¤ã‚’変更ã—ã¦ãã ã•ã„。å„å°ç¯€ã¯ï¼”ã¤ã®ãƒ“ートをもã¡ã¾ã™ã‹ã‚‰ã€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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - spectrumAnalyzerControls - - Linear spectrum - - - - Linear Y-axis - - - - Channel mode - - - stereoEnhancerControlDialog @@ -6319,23 +7809,23 @@ Latency: %2 ms timeLine Enable/disable auto-scrolling - オートスクロール㮠ON/OFF + オートスクロールを有効/無効 Enable/disable loop-points - ループãƒã‚¤ãƒ³ãƒˆã® ON/OFF + ループãƒã‚¤ãƒ³ãƒˆã‚’有効/無効 After stopping go back to begin - 終了後 開始ä½ç½®ã«ã‚‚ã©ã‚‹ + 終了後ã€é–‹å§‹ä½ç½®ã«æˆ»ã‚‹ After stopping go back to position at which playing was started - 終了後 å†ç”ŸãŒé–‹å§‹ã•れãŸä½ç½®ã«ã‚‚ã©ã‚‹ + 終了後ã€å†ç”ŸãŒé–‹å§‹ã•れãŸä½ç½®ã«æˆ»ã‚‹ After stopping keep position - 終了後 ãã®ä½ç½®ã®ã¾ã¾ + 終了後ã€ä½ç½®ã‚’ä¿æŒã™ã‚‹ Hint @@ -6343,7 +7833,7 @@ Latency: %2 ms Press <Ctrl> to disable magnetic loop points. - + マグãƒãƒ†ã‚£ãƒƒã‚¯ ループãƒã‚¤ãƒ³ãƒˆã‚’無効化ã™ã‚‹ã«ã¯<Ctrl>を押ã—ã¦ãã ã•ã„。 Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. @@ -6400,7 +7890,7 @@ Latency: %2 ms Cut - カット + 切りå–り Copy @@ -6408,7 +7898,7 @@ Latency: %2 ms Paste - ペースト + 貼り付㑠Mute/unmute (<Ctrl> + middle click) @@ -6419,7 +7909,7 @@ Latency: %2 ms trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. - 移動グリップをクリック中㫠<Ctl >を押ã›ã°ã€€æ–°ã—ã„ドラッグ&ドロップアクションを始ã‚られã¾ã™ã€‚ + æ–°ã—ã„ドラッグ&ドロップアクションを開始ã™ã‚‹ã«ã¯ã€ç§»å‹•グリップをクリック中㫠<Ctrl>を押ã—ã¦ãã ã•ã„。 Actions for this track @@ -6439,43 +7929,55 @@ Latency: %2 ms Clone this track - トラックを複製 + ã“ã®ãƒˆãƒ©ãƒƒã‚¯ã‚’複製 Remove this track - トラックを消去 + ã“ã®ãƒˆãƒ©ãƒƒã‚¯ã‚’削除 + + + Clear this track + ã“ã®ãƒˆãƒ©ãƒƒã‚¯ã‚’クリア + + + Turn all recording on + + + + Turn all recording off + vestigeInstrument Loading plugin - プラグインをロード中 + プラグインを読ã¿è¾¼ã‚“ã§ã„ã¾ã™ Please wait while loading VST-plugin... - VST-プラグインをロードã™ã‚‹é–“ãŠå¾…ã¡ãã ã•ã„ + VST-プラグインを読ã¿è¾¼ã‚€é–“ãŠå¾…ã¡ãã ã•ã„... Failed loading VST-plugin - VST-プラグインã®ãƒ­ãƒ¼ãƒ‰å¤±æ•— + VST-プラグインã®èª­ã¿è¾¼ã¿ã«å¤±æ•—ã—ã¾ã—㟠The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! - VST-plugin %1 ãŒã„ãã¤ã‹ã®ç†ç”±ã§ãƒ­ãƒ¼ãƒ‰ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ -ã‚‚ã—ãã®VSTãŒLinuxã®ã»ã‹ã®VST-ソフトウェアã§å‹•ããªã‚‰ LMMS ã®é–‹ç™ºè€…ã«é€£çµ¡ã—ã¦ãã ã•ã„。 + VST-plugin %1 ãŒã„ãã¤ã‹ã®ç†ç”±ã§èª­ã¿è¾¼ã¿ã§ãã¾ã›ã‚“ã§ã—ãŸã€‚ +ã‚‚ã—ãã® VST ㌠Linuxã®ä»–ã®VST-ソフトウェアã§å‹•作ã™ã‚‹ãªã‚‰ã° LMMS ã®é–‹ç™ºè€…ã«é€£çµ¡ã—ã¦ãã ã•ã„! vibed String %1 volume - + ストリング %1 ã®éŸ³é‡ String %1 stiffness - + ストリング %1 ã®ã‚¹ãƒ†ã‚£ãƒ•ãƒã‚¹ Pick %1 position @@ -6514,67 +8016,67 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer vibedView Volume: - + 音é‡: The 'V' knob sets the volume of the selected string. - V ã¤ã¾ã¿ã§é¸æŠžã—ãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã®ãƒœãƒªã‚¦ãƒ ã‚’セットã—ã¾ã™ã€‚ + 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 ã¤ã¾ã¿ã§é¸æŠžã—ãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã®ã‚¹ãƒãƒ•ãƒã‚¹ï¼ˆå …ã•)をセットã—ã¾ã™ã€‚ ストリングã®ã‚¹ãƒãƒ•ãƒã‚¹ã¯ã‚¹ãƒˆãƒªãƒ³ã‚°ãŒã©ã‚Œã ã‘é•·ããªã‚ŠéŸ¿ãã‹ã«å½±éŸ¿ã—ã¾ã™ã€‚値をã¡ã„ã•ãã™ã‚‹ã¨ã‚¹ãƒˆãƒªãƒ³ã‚°ã¯é•·ã鳴り響ãã¾ã™ã€‚ + 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 ã¤ã¾ã¿ã§ã‚¹ãƒˆãƒªãƒ³ã‚°ãŒãƒ”ッキングã•れるä½ç½®ã‚’セットã—ã¾ã™ã€‚値ãŒå°ã•ã„ã»ã©ãƒ–リッジã«è¿‘ã„ã¨ã“ã‚ãŒãƒ”ッキングã•れã¾ã™ã€‚ + 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ã¤ã¾ã¿ã§é¸æŠžã—ãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã®ã©ã®ä½ç½®ã§æŒ¯å‹•をモニターã™ã‚‹ã‹ã‚’セットã—ã¾ã™ã€‚ å°ã•ã„値ã»ã©ãƒ–リッジã¨ãƒ”ックアップã®ä½ç½®ãŒã¡ã‹ã„ã“ã¨ã«ãªã‚Šã¾ã™ã€‚ + PU ã¤ã¾ã¿ã§ã¯é¸æŠžã—ãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã®ã©ã®ä½ç½®ã§æŒ¯å‹•をモニターã™ã‚‹ã‹ã‚’設定ã—ã¾ã™ã€‚値ãŒå°ã•ããªã‚‹ã»ã©ãƒ–リッジã¨ãƒ”ックアップã®ä½ç½®ãŒè¿‘ããªã‚Šã¾ã™ã€‚ Pan: - + パン: The Pan knob determines the location of the selected string in the stereo field. - Pan ã¤ã¾ã¿ã¯ã‚¹ãƒ†ãƒ¬ã‚ªéŸ³å ´ä¸­ã®é¸æŠžã—ãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã®ä½ç½®ã‚’指定ã—ã¾ã™ã€‚ + Pan ã¤ã¾ã¿ã§ã¯ã‚¹ãƒ†ãƒ¬ã‚ªéŸ³å ´ä¸­ã®é¸æŠžã—ãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã®ä½ç½®ã‚’指定ã—ã¾ã™ã€‚ 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. - Detune ã¤ã¾ã¿ã¯é¸æŠžã—ãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã®ãƒ”ッãƒã‚’変更ã—ã¾ã™ã€‚ゼロよりå°ã•ã„値を設定ã™ã‚‹ã¨ãƒ•ラットã«ãªã‚Šã¾ã™ã€‚ゼロより大ãã„値を指定ã™ã‚‹ã¨ã‚·ãƒ£ãƒ¼ãƒ—ã«ãªã‚Šã¾ã™ã€‚ + Detune ã¤ã¾ã¿ã§ã¯é¸æŠžã—ãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã®ãƒ”ッãƒã‚’変更ã—ã¾ã™ã€‚ゼロよりå°ã•ã„値を指定ã™ã‚‹ã¨éŸ³ãŒãƒ•ラットã«ãªã‚Šã¾ã™ã€‚ゼロより大ãã„値を指定ã™ã‚‹ã¨éŸ³ãŒã‚·ãƒ£ãƒ¼ãƒ—ã«ãªã‚Šã¾ã™ã€‚ 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'. - Slapã¤ã¾ã¿ã¯é¸æŠžã•れãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã«å°‘ã—ã ã‘ファズを加ãˆã¾ã™ã€‚アタック期間ã«ã‚‚ã£ã¨ã‚‚明確ãªå½±éŸ¿ãŒã‚りã¾ã™ã€‚ストリングを金属ã½ã„音ã«ã™ã‚‹ã®ã«ã¤ã‹ãˆã¾ã™ã€‚ + Slap ã¤ã¾ã¿ã§ã¯é¸æŠžã—ãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã«å°‘ã—ã ã‘ファズを追加ã—ã¾ã™ã€‚アタックã®éš›ã«ã¨ã¦ã‚‚ã¯ã£ãりã¨ã“ã®åŠ¹æžœã‚’ç†è§£ã§ãã¾ã™ã€‚ストリングを金属風ã®éŸ³ã«ã™ã‚‹ã®ã«ä½¿ç”¨ã§ãã¾ã™ã€‚ 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. - Length ã¤ã¾ã¿ã§é¸æŠžã•れãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã®é•·ã•をセットã—ã¾ã™ã€‚より長ã„ストリングã¯ã€ã‚ˆã‚Šé•·ã„é–“é³´ã£ã¦ã€ã‚ˆã‚Šæ˜Žã‚‹ãèžã“ãˆã‚‹ã§ã—ょã†ã€ã—ã‹ã—ã€ã‚ˆã‚ŠCPUサイクルを食ã„ã¾ã™ã€‚ + Length ã¤ã¾ã¿ã§ã¯é¸æŠžã—ãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã®é•·ã•を指定ã—ã¾ã™ã€‚ストリングを長ãã™ã‚Œã°ã€é•·ã„時間鳴りã€ã‚ˆã‚Šæ˜Žã‚‹ãèžã“ãˆã¾ã™ã€‚ã—ã‹ã—ã€ã‚ˆã‚ŠCPUサイクルを消費ã—ã¾ã™ã€‚ Impulse or initial state @@ -6582,15 +8084,15 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer 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 セレクタã¯ã€€ã‚°ãƒ©ãƒ•ã®æ³¢å½¢ãŒãƒ”ッキングã«ã‚ˆã£ã¦ã‚¹ãƒˆãƒªãƒ³ã‚°ã«ä¸Žãˆã‚‰ã‚Œã‚‹ã‚¤ãƒ³ãƒ‘ルスã¨ã—ã¦æ‰±ã‚れるã‹ã‚¹ãƒˆãƒªãƒ³ã‚°ã®åˆæœŸçŠ¶æ…‹ã¨ã—ã¦æ‰±ã‚れるã‹ã‚’ãã‚ã¾ã™ã€‚ + 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'ã¯ã‚¹ãƒˆãƒªãƒ³ã‚°ãŒåŸºæœ¬ã‹ã‚‰ï¼–オクターブã®é–“ã§ãªã‚‹ã“ã¨ã‚’æ„味ã—ã¾ã™ã€‚ + オクターブセレクタã¯ã€ã‚¹ãƒˆãƒªãƒ³ã‚°ã‚’ノートã®ã©ã®å€éŸ³ã§é³´ã‚‰ã™ã‹ã‚’é¸æŠžã™ã‚‹ãŸã‚ã«ä½¿ç”¨ã—ã¾ã™ã€‚例ãˆã°ã€'-2'ã¯åŸºéŸ³ã®2オクターブ下ã¾ã§é³´ã‚‹ã“ã¨ã‚’æ„味ã—ã€'F'ã¯ã€ã‚¹ãƒˆãƒªãƒ³ã‚°ãŒåŸºéŸ³ã§é³´ã‚‹ã“ã¨ã‚’æ„味ã—ã¾ã™ã€‚ãã—ã¦'6'ã¯ã€ã‚¹ãƒˆãƒªãƒ³ã‚°ãŒåŸºæœ¬ã‹ã‚‰6オクターブ上ã§é³´ã‚‹ã“ã¨ã‚’æ„味ã—ã¾ã™ã€‚ Impulse Editor @@ -6604,14 +8106,13 @@ The waveform can also be drawn in the graph. The 'S' button will smooth the waveform. The 'N' button will normalize the waveform. - 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. -波形エディタã¯ã€ã‚¹ãƒˆãƒªãƒ³ã‚°ã®æŒ¯å‹•é–‹å§‹å­—ã«ä½¿ã‚ã‚Œã‚‹åˆæœŸçŠ¶æ…‹ã¾ãŸã¯ã‚¤ãƒ³ãƒ‘ルスã®ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ã«ä½¿ã„ã¾ã™ã€‚グラフã®å³å´ã®ãƒœã‚¿ãƒ³ã§æ³¢å½¢ã‚’ã‚’é¸æŠžã—ãŸã‚¿ã‚¤ãƒ—ã«åˆæœŸåŒ–ã—ã¾ã™ã€‚'?' ã¼ãŸã‚“ã§ãƒ•ァイルã‹ã‚‰æ³¢å½¢ã‚’ロードã—ã¾ã™--最åˆã®128個ã®ã‚µãƒ³ãƒ—ルã ã‘ãŒãƒ­ãƒ¼ãƒ‰ã•れã¾ã™ã€‚ + 波形エディターã¯ã€ã‚¹ãƒˆãƒªãƒ³ã‚°ã®æŒ¯å‹•開始時ã«ä½¿ã‚ã‚Œã‚‹åˆæœŸçŠ¶æ…‹ã¾ãŸã¯ã‚¤ãƒ³ãƒ‘ルスã®ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ«ã«ä½¿ç”¨ã—ã¾ã™ã€‚グラフã®å³å´ã®ãƒœã‚¿ãƒ³ã§æ³¢å½¢ã‚’é¸æŠžã—ãŸç¨®é¡žã«åˆæœŸåŒ–ã—ã¾ã™ã€‚'?' ボタンã§ãƒ•ァイルã‹ã‚‰æ³¢å½¢ã‚’--最åˆã®128個ã®ã‚µãƒ³ãƒ—ルã®ã¿èª­ã¿è¾¼ã¿ã¾ã™ã€‚ -波形をグラフã®ä¸­ã«ã‹ã‘ã¾ã™ +波形ã¯ã‚°ãƒ©ãƒ•å†…ã«æãã“ã¨ã‚‚ã§ãã¾ã™ã€‚ -'S'ãƒœã‚¿ãƒ³ã§æ³¢å½¢ã‚’平滑化ã—ã¾ã™ã€‚ +'S'ボタンã¯ã€æ³¢å½¢ã‚’平滑化ã—ã¾ã™ã€‚ -'N' ãƒœã‚¿ãƒ³ã§æ³¢å½¢ã‚’ノーマライズã—ã¾ã™ã€‚ +'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. @@ -6625,112 +8126,112 @@ The 'V' knob controls the volume. The 'S' knob controls the 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 ã¯ï¼—個ã¾ã§ã®ç‹¬ç«‹ã—ã¦æŒ¯å‹•ã—ã¦ã„るストリングをモデル化ã—ã¾ã™ã€‚ 'String'セレクタã§ç¾åœ¨ã‚¨ãƒ‡ã‚£ãƒƒãƒˆã—ã¦ã„るストリングをé¸ã¹ã¾ã™ã€‚'Imp' セレクタã§ã€€ã‚°ãƒ©ãƒ•ãŒã‚¤ãƒ³ãƒ‘ルスをã‚らã‚ã—ã¦ã‚‹ã®ãŒã‚¹ãƒˆãƒªãƒ³ã‚°ã®åˆæœŸçŠ¶æ…‹ã‚’è¡¨ã—ã¦ã„ã‚‹ã®ã‹é¸ã¶ã“ã¨ãŒã§ãã¾ã™ã€‚'Octavve' セレクタã§ã©ã®å€éŸ³ã§ã‚¹ãƒˆãƒªãƒ³ã‚°ãŒæŒ¯å‹•ã™ã‚‹ã®ã‹ãŒé¸ã¹ã¾ã™ã€‚ + Vibed ã¯ç‹¬ç«‹ã—ã¦æŒ¯å‹•ã—ã¦ã„るストリングを9ã¤ã¾ã§ãƒ¢ãƒ‡ãƒ«åŒ–ã—ã¾ã™ã€‚'String'セレクタã§ã¯ã€ç¾åœ¨ç·¨é›†ã—ã¦ã„るストリングをé¸ã¶ã“ã¨ãŒã§ãã¾ã™ã€‚'Imp' セレクタã§ã¯ã€ã‚¤ãƒ³ãƒ‘ルスã¨ã€ã‚¹ãƒˆãƒªãƒ³ã‚°ã®åˆæœŸçŠ¶æ…‹ã®ã©ã¡ã‚‰ã‚’グラフã§è¡¨ã™ã®ã‹ã‚’é¸æŠžã—ã¾ã™ã€‚'Octave' セレクタã§ã¯ã€ã©ã®å€éŸ³ã§ã‚¹ãƒˆãƒªãƒ³ã‚°ã‚’振動ã•ã›ã‚‹ã®ã‹ã‚’é¸æŠžã—ã¾ã™ã€‚ -グラフã§åˆæœŸçŠ¶æ…‹ã¾ãŸã¯ã‚¹ãƒˆãƒªãƒ³ã‚°ã‚’å‹•ã‹ã™ã¨ãã«ã¤ã‹ã†ã‚¤ãƒ³ãƒ‘ルスをコントールã§ãã¾ã™ã€‚ +グラフã§ã¯ã€å‹•作中ã®ã‚¹ãƒˆãƒªãƒ³ã‚°ã‚’設定ã™ã‚‹éš›ã«ä½¿ç”¨ã™ã‚‹ã€åˆæœŸçŠ¶æ…‹ã¾ãŸã¯ã‚¤ãƒ³ãƒ‘ルスをコントールã™ã‚‹ã“ã¨ãŒã§ãã¾ã™ã€‚ -’V’ã¤ã¾ã¿ã§ãƒœãƒªãƒ¥ãƒ¼ãƒ ã‚’コントロール 'S'ã¤ã¾ã¿ã§ã‚¹ãƒãƒ•ãƒã‚¹ï¼ˆå …ã•)をコントロール ’P'ã¤ã¾ã¿ã§å¼•ãä½ç½®ã€€â€™PU'ã¤ã¾ã¿ã§éŒ²éŸ³ãƒ”ックアップã®ä½ç½® +'V' ã¤ã¾ã¿ã§ã¯éŸ³é‡ã‚’ã€'S' ã¤ã¾ã¿ã§ã¯ã‚¹ãƒ†ã‚£ãƒ•ãƒã‚¹ï¼ˆå …ã•)をコントロールã—ã¾ã™ã€‚'P' ã¤ã¾ã¿ã§ã¯å¼¾ãä½ç½®ã‚’ã€'PU' ã¤ã¾ã¿ã§ã¯ãƒ”ックアップã®ä½ç½®ã‚’コントロールã—ã¾ã™ã€‚ -'Pan' ã¨ã€€'Detune' ã®èª¬æ˜Žã¯ã„らãªã„ã§ã—ょã†ã€‚ 'Slap'ã®ã¤ã¾ã¿ã¯ã€€ã‚¹ãƒˆãƒªãƒ³ã‚°ã®éŸ³ã«ãƒ•ァズを多少加ãˆã¾ã™ã€‚ +'Pan' 㨠'Detune' ã®èª¬æ˜Žã¯ä¸è¦ã§ã—ょã†ã€‚'Slap'ã®ã¤ã¾ã¿ã¯ã€ã‚¹ãƒˆãƒªãƒ³ã‚°ã®éŸ³ã«ãƒ•ァズを少ã—加ãˆã¾ã™ã€‚ -'length' ã¤ã¾ã¿ã¯ã‚¹ãƒˆãƒªãƒ³ã‚°ã®é•·ã•をコントロールã—ã¾ã™ +'Length' ã¤ã¾ã¿ã§ã¯ã€ã‚¹ãƒˆãƒªãƒ³ã‚°ã®é•·ã•をコントロールã—ã¾ã™ã€‚ -波形エディタã®å³ä¸‹ã™ã¿ã®LEDã¯ç¾åœ¨ã®æ¥½å™¨ã§ã©ã®ã‚¹ãƒˆãƒªãƒ³ã‚°ãŒã‚¢ã‚¯ãƒ†ã‚£ãƒ–ãªã®ã‹è¡¨ã—ã¦ã„ã¾ã™ã€‚ +波形エディターã®å³ä¸‹éš…ã®LEDã¯ã€ç¾åœ¨ã®ã‚¤ãƒ³ã‚¹ãƒˆã‚¥ãƒ«ãƒ¡ãƒ³ãƒˆã®ã‚¹ãƒˆãƒªãƒ³ã‚°ãŒã‚¢ã‚¯ãƒ†ã‚£ãƒ–ãªã®ã‹ã©ã†ã‹ã‚’示ã—ã¦ã„ã¾ã™ã€‚ 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 楽器㯠9本ã¾ã§ã®ç‹¬ç«‹ã—ãŸæŒ¯å‹•ã—ã¦ã‚‹ã‚¹ãƒˆãƒªãƒ³ã‚°ã‚’å«ã‚“ã§ã„ã¾ã™ã€‚波形エディタã®å³ä¸‹ã™ã¿ã®LEDã¯ã©ã®ã‚¹ãƒˆãƒªãƒ³ã‚°ãŒã‚¢ã‚¯ãƒ†ã‚£ãƒ–ã‹ã‚’示ã—ã¦ã„ã¾ã™ã€‚ + ストリングセレクタã¯ã‚³ãƒ³ãƒˆãƒ­ãƒ¼ãƒ©ãƒ¼ãŒç·¨é›†ã—ã¦ã„ã‚‹ã‚¹ãƒˆãƒªãƒ³ã‚°ã‚’é¸æŠžã™ã‚‹ã®ã«ä½¿ç”¨ã—ã¾ã™ã€‚Vibed インストゥルメント㯠最大9本ã®ç‹¬ç«‹ã—ãŸæŒ¯å‹•ã—ãŸã‚¹ãƒˆãƒªãƒ³ã‚°ã‚’å«ã‚€ã“ã¨ãŒã§ãã¾ã™ã€‚波形エディターã®å³ä¸‹éš…ã®LEDã¯ã©ã®ã‚¹ãƒˆãƒªãƒ³ã‚°ãŒã‚¢ã‚¯ãƒ†ã‚£ãƒ–ã‹ã‚’示ã—ã¦ã„ã¾ã™ã€‚ 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. - クリックã™ã‚‹ã¨æ³¢å½¢ã‚’ノーマライズ + ã“ã“をクリックã™ã‚‹ã¨æ³¢å½¢ã‚’ノーマライズ化ã—ã¾ã™ã€‚ &Help - ヘルプ(&H) + ヘルプ(&H) 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. - ユーザー定義波形をç¾åœ¨ã®ã‚ªã‚·ãƒ¬ãƒ¼ã‚¿ã§ä½¿ç”¨ + ユーザー定義波形をç¾åœ¨ã®ã‚ªã‚·ãƒ¬ãƒ¼ã‚¿ã§ä½¿ç”¨ã™ã‚‹ã€‚ visualizationWidget click to enable/disable visualization of master-output - クリックã™ã‚‹ã¨ãƒžã‚¹ã‚¿ãƒ¼ã‚¢ã‚¦ãƒˆãƒ—ットã®è¡¨/示éžè¡¨ç¤ºã€€åˆ‡æ› + ã“ã“をクリックã™ã‚‹ã¨ãƒžã‚¹ã‚¿ãƒ¼å‡ºåŠ›ã®è¡¨ç¤º/éžè¡¨ç¤ºã‚’切り替ãˆã¾ã™ Click to enable - + 有効ã«ã™ã‚‹ã«ã¯ã“ã“をクリック @@ -6780,4 +8281,74 @@ The LED in the lower right corner of the waveform editor determines whether the + + 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 + + Input gain + 入力ゲイン + + + Output gain + 出力ゲイン + + diff --git a/data/locale/ko.qm b/data/locale/ko.qm index 254815850..9f1fc76f3 100644 Binary files a/data/locale/ko.qm and b/data/locale/ko.qm differ diff --git a/data/locale/ko.ts b/data/locale/ko.ts index 423a25fe3..c98e128b6 100644 --- a/data/locale/ko.ts +++ b/data/locale/ko.ts @@ -7,10 +7,6 @@ About LMMS - - LMMS (Linux MultiMedia Studio) - - Version %1 (%2/%3, Qt %4, %5) @@ -49,6 +45,64 @@ If you're interested in translating LMMS in another language or want to imp <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + LMMS + + + + + AmplifierControlDialog + + VOL + 볼륨 + + + Volume: + 볼륨: + + + PAN + íŒ¨ë‹ + + + Panning: + 패ë‹: + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + 볼륨 + + + Panning + íŒ¨ë‹ + + + Left gain + + + + Right gain + + AudioAlsa::setupWidget @@ -79,14 +133,6 @@ If you're interested in translating LMMS in another language or want to imp If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - - Loop sample at start- and end-point - 샘플 시작과 ëì  ë°˜ë³µ - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - - Amplify: ì¦í­ @@ -99,18 +145,10 @@ If you're interested in translating LMMS in another language or want to imp Startpoint: ì‹œìž‘ì  - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Endpoint: ëì  - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Continue sample playback across notes @@ -119,6 +157,42 @@ If you're interested in translating LMMS in another language or want to imp 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. + + AudioFileProcessorWaveView @@ -365,6 +439,10 @@ If you're interested in translating LMMS in another language or want to imp Drag a control while pressing <Ctrl> <Ctrl> 누르는 ë™ì•ˆ 제어를 ëŒê¸° + + Model is already connected to this pattern. + + AutomationPatternView @@ -396,6 +474,10 @@ If you're interested in translating LMMS in another language or want to imp Disconnect "%1" ì—°ê²°í•´ì œ "%1" + + Set/clear record + ë…¹ìŒ ì„¤ì •/í•´ì œ + AutomationTrack @@ -404,6 +486,59 @@ If you're interested in translating LMMS in another language or want to imp ìžë™í™” 트랙 + + BassBoosterControlDialog + + FREQ + 주파수 + + + Frequency: + 주파수: + + + GAIN + ì´ë“ + + + Gain: + ì´ë“: + + + RATIO + 비 + + + Ratio: + 비: + + + + BassBoosterControls + + Frequency + 주파수 + + + Gain + ì´ë“ + + + Ratio + 비 + + + + CarlaInstrumentView + + Show GUI + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + Controller @@ -516,6 +651,132 @@ If you're interested in translating LMMS in another language or want to imp ë„움ë§(&H) + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + + + Effect @@ -880,6 +1141,10 @@ Right clicking will bring up a context menu where you can change the order in wh Drag a sample from somewhere and drop it in this window. + + Click here for random wave. + + ExportProjectDialog @@ -1007,14 +1272,6 @@ Right clicking will bring up a context menu where you can change the order in wh 8x - - Sample-exact controllers - - - - Alias-free oscillators - - Start @@ -1028,6 +1285,77 @@ Right clicking will bring up a context menu where you can change the order in wh + + FileBrowser + + Browser + + + + + 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... + + + + --- Factory files --- + + + + + 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 + + + + &Help + ë„움ë§(&H) + + FxMixer @@ -1053,6 +1381,9 @@ Right clicking will bring up a context menu where you can change the order in wh FX-Mixer + + + FxMixerView::FxChannelView FX Fader %1 @@ -1066,6 +1397,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + FxRoute + + Amount to send from channel %1 to channel %2 + + + InstrumentFunctionArpeggio @@ -1124,6 +1462,10 @@ Right clicking will bring up a context menu where you can change the order in wh Sync ë™ê¸° + + Down and up + + InstrumentFunctionArpeggioView @@ -1566,6 +1908,18 @@ Right clicking will bring up a context menu where you can change the order in wh Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + + InstrumentFunctionNoteStackingView @@ -1628,6 +1982,18 @@ Right clicking will bring up a context menu where you can change the order in wh NOTE + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + InstrumentSoundShaping @@ -1774,6 +2140,10 @@ Right clicking will bring up a context menu where you can change the order in wh cutoff frequency: + + Envelopes, LFOs and filters are not supported by the current instrument. + + InstrumentTrack @@ -1859,10 +2229,6 @@ Right clicking will bring up a context menu where you can change the order in wh GENERAL SETTINGS ì¼ë°˜ 설정 - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - 사전 설정 파ì¼ì„ 저장하고 싶으면 여기를 í´ë¦­. ë‚˜ì¤‘ì— ì‚¬ì „ 설정 브ë¼ìš°ì €ì—서 ì´ì¤‘ í´ë¦­ìœ¼ë¡œ 사전 ì„¤ì •ì„ ì½ì–´ì˜¬ 수 있습니다. - Instrument volume 기기 볼륨 @@ -1935,10 +2301,6 @@ Right clicking will bring up a context menu where you can change the order in wh PLUGIN í”ŒëŸ¬ê·¸ì¸ - - Save current channel settings in a preset-file - - Pitch range (semitones) @@ -1947,6 +2309,14 @@ Right clicking will bring up a context menu where you can change the order in wh 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. + + LadspaControl @@ -1992,6 +2362,13 @@ Right clicking will bring up a context menu where you can change the order in wh ìš”ì²­ëœ ë¯¸ì§€ì˜ LADSPA í”ŒëŸ¬ê·¸ì¸ %1 + + LcdSpinBox + + Please enter a new value between %1 and %2: + %1 ê³¼ %2 ì‚¬ì´ ìƒˆë¡œìš´ ê°’ì„ ìž…ë ¥í•˜ì‹œì˜¤: + + LfoController @@ -2352,10 +2729,6 @@ LMMS 문서는 http://lmms.sf.net/wiki를 방문하세요. LMMS (*.mmp *.mmpz) - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - - Version %1 @@ -2376,6 +2749,22 @@ LMMS 문서는 http://lmms.sf.net/wiki를 방문하세요. Error while parsing configuration file at line %1:%2: %3 + + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + + MeterDialog @@ -2492,6 +2881,647 @@ LMMS 문서는 http://lmms.sf.net/wiki를 방문하세요. 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 + + + + + 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. + + + + + 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 @@ -2535,6 +3565,10 @@ LMMS 문서는 http://lmms.sf.net/wiki를 방문하세요. Osc %1 waveform + + Osc %1 harmonic + + PatmanView @@ -2583,6 +3617,39 @@ LMMS 문서는 http://lmms.sf.net/wiki를 방문하세요. + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + 피아노-롤ì—서 ì´ íŒ¨í„´ì„ ì—´ê¸°ìœ„í•´ ì´ì¤‘ í´ë¦­ +한 단계 ë³¼ë¥¨ì„ ì„¤ì •í•˜ê¸°ìœ„í•˜ì—¬ 마우스 휠 사용 + + + Open in piano-roll + 피아노-롤ì—서 열기 + + + Clear all notes + ì „ì²´ ë°•ìž ì§€ìš°ê¸° + + + Reset name + ì´ë¦„ 초기화 + + + Change name + ì´ë¦„ 변경 + + + Add steps + 단계 ë”하기 + + + Remove steps + 단계 제거 + + PeakController @@ -2683,6 +3750,189 @@ LMMS 문서는 http://lmms.sf.net/wiki를 방문하세요. + + PianoRoll + + Play/pause current pattern (Space) + 현재 패턴 재ìƒ/잠시 중지 (Space) + + + Stop playing of current pattern (Space) + 현재 패턴 재ìƒì„ 중지 (Space) + + + Cut selected notes (Ctrl+X) + ì„ íƒ ë°•ìžë¥¼ 잘ë¼ë‚´ê¸° (Ctrl+X) + + + Copy selected notes (Ctrl+C) + ì„ íƒ ë°•ìžë¥¼ 복사 (Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + í´ë¦½ë³´ë“œì—서 ë°•ìž ë¶™ì—¬ë„£ê¸° (Ctrl+V) + + + Piano-Roll - no pattern + 피아노-롤 - 패턴 ì—†ìŒ + + + Piano-Roll - %1 + 피아노-롤 - %1 + + + Please open a pattern by double-clicking on it! + ì´ê²ƒì„ ì´ì¤‘ í´ë¦­ì„ 함으로서 íŒ¨í„´ì„ ì—´ì–´ì£¼ì„¸ìš”. + + + Record notes from MIDI-device/channel-piano + 미디 기기/ì±„ë„ í”¼ì•„ë…¸ì—서 ë°•ìž ê¸°ë¡ + + + Record notes from MIDI-device/channel-piano while playing song or BB track + 노래 ë˜ëŠ” BB 트랙 재ìƒì‹œ 미디 기기/채ë„ì—서 ë°•ìž ê¸°ë¡ + + + Draw mode (Shift+D) + 그리기 모드 (Shift+D) + + + Erase mode (Shift+E) + 지우기 모드 (Shift+E) + + + Select mode (Shift+S) + ì„ íƒ ëª¨ë“œ (Shift+S) + + + Last note + 마지막 ë°•ìž + + + 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. + + + + 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. + + + + Note lock + ë°•ìž ìž ê¸ˆ + + + Note Volume + + + + Note Panning + + + + 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 Ctrl 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 Ctrl 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. + + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + + + + No scale + + + + No chord + + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + %1 ê³¼ %2 ì‚¬ì´ ìƒˆë¡œìš´ ê°’ì„ ìž…ë ¥í•˜ì‹œì˜¤: + + PianoView @@ -2710,6 +3960,10 @@ Reason: "%2" Failed to load plugin "%1"! í”ŒëŸ¬ê·¸ì¸ "%1"ì„ ì½ëŠ” 중 실패! + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2856,6 +4110,10 @@ Reason: "%2" File: 파ì¼: + + File: %1 + + SampleBuffer @@ -2863,10 +4121,6 @@ Reason: "%2" Open audio file 오디오 íŒŒì¼ ì—´ê¸° - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - ì „ì²´ 오디오 íŒŒì¼ (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Wave-Files (*.wav) Wave íŒŒì¼ (*.wav) @@ -2887,10 +4141,6 @@ Reason: "%2" SPEEX-Files (*.spx) SPEEX íŒŒì¼ (*.spx) - - MP3-Files (*.mp3) - MP3 íŒŒì¼ (*.mp3) - VOC-Files (*.voc) VOC íŒŒì¼ (*.voc) @@ -2907,6 +4157,10 @@ Reason: "%2" RAW-Files (*.raw) RAW íŒŒì¼ (*.raw) + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + SampleTCOView @@ -2916,7 +4170,7 @@ Reason: "%2" Delete (middle mousebutton) - + ì‚­ì œ (중간 마우스버튼) Cut @@ -2965,6 +4219,152 @@ Reason: "%2" 볼륨 + + SongEditor + + Song-Editor + 노래-편집기 + + + Play song (Space) + 노래 ìž¬ìƒ (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. + + + + Stop song (Space) + 노래 ì •ì§€ (Space) + + + Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. + + + + Add sample-track + 샘플 트랙 ë”하기 + + + Could not open file + 파ì¼ì„ ì—´ 수 ì—†ìŒ + + + Could not write file + 파ì¼ì„ 쓸 수 ì—†ìŒ + + + Add automation-track + ìžë™í™” 트랙 ë”하기 + + + Draw mode + 그리기 모드 + + + Edit mode (select and move) + 편집 모드(ì„ íƒ ë° ì´ë™) + + + Record samples from Audio-device + 오디오 기기ì—서 샘플 ë…¹ìŒ + + + Record samples from Audio-device while playing song or BB track + 노래 ìž¬ìƒ ë˜ëŠ” BB트랙 ë™ì•ˆ 오디오 기기ì—서 샘플 ë…¹ìŒ + + + 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. + + + + Add beat/bassline + beat/bassline ë”하기 + + + 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% + ê°’: %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. + + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + 선형 스펙트럼 + + + Linear Y axis + 선형 Y ì¶• + + + + SpectrumAnalyzerControls + + Linear spectrum + 선형 스펙트럼 + + + Linear Y axis + 선형 Y ì¶• + + + Channel mode + ì±„ë„ ëª¨ë“œ + + TempoSyncKnob @@ -3409,19 +4809,6 @@ Please make sure you have read-permission to the file and the directory containi Loading plugin í”ŒëŸ¬ê·¸ì¸ ì½ëŠ” 중 - - Please wait while loading VST-plugin... - VST í”ŒëŸ¬ê·¸ì¸ ì½ì€ ë™ì•ˆ 잠시 대기... - - - Failed loading VST-plugin - VST í”ŒëŸ¬ê·¸ì¸ ì½ëŠ” 중 오류 - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - - Open Preset @@ -3462,6 +4849,268 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer .fxb + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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 + + + + 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 @@ -3587,55 +5236,33 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Reverse sample 샘플 역으로 - - Loop - 반복 - Stutter - - - bassBoosterControlDialog - FREQ - 주파수 + Loopback point + - Frequency: - 주파수: + Loop mode + - GAIN - ì´ë“ + Interpolation mode + - Gain: - ì´ë“: + None + - RATIO - 비 + Linear + - Ratio: - 비: - - - - bassBoosterControls - - Frequency - 주파수 - - - Gain - ì´ë“ - - - Ratio - 비 + Sinc + @@ -3695,6 +5322,10 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Change color ìƒ‰ìƒ ë³€ê²½ + + Reset color to default + + bbTrack @@ -3789,6 +5420,120 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer ì‚¬ìš©ìž ì •ì˜ë¥¼ 위해 여기를 í´ë¦­ + + 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 + + + exportProjectDialog @@ -3824,40 +5569,6 @@ Please make sure you have write-permission to the file and the directory contain %1 ê³¼ %2 ì‚¬ì´ ìƒˆë¡œìš´ ê°’ì„ ìž…ë ¥í•˜ì‹œì˜¤: - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - - - graphModel @@ -3875,18 +5586,46 @@ Please make sure you have write-permission to the file and the directory contain End frequency ë 주파수 - - Decay - ê°ì‡„ - - - Distortion - 왜곡 - Gain ì´ë“ + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + ìž¡ìŒ + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + kickerInstrumentView @@ -3898,18 +5637,38 @@ Please make sure you have write-permission to the file and the directory contain End frequency: ë 주파수: - - Decay: - ê°ì‡„: - - - Distortion: - 왜곡: - Gain: ì´ë“: + + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: + + knob @@ -4184,6 +5943,38 @@ Double clicking any of the plugins will bring up information on the ports.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 @@ -4779,12 +6570,28 @@ Double clicking any of the plugins will bring up information on the ports. - Osc %1 fine detuning left: + 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: + @@ -5053,216 +6860,6 @@ Double clicking any of the plugins will bring up information on the ports. - - pattern - - Cannot freeze pattern - - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - - - - - patternFreezeStatusDialog - - Freezing pattern... - - - - Cancel - - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - 피아노-롤ì—서 ì´ íŒ¨í„´ì„ ì—´ê¸°ìœ„í•´ ì´ì¤‘ í´ë¦­ -한 단계 ë³¼ë¥¨ì„ ì„¤ì •í•˜ê¸°ìœ„í•˜ì—¬ 마우스 휠 사용 - - - Open in piano-roll - 피아노-롤ì—서 열기 - - - Clear all notes - ì „ì²´ ë°•ìž ì§€ìš°ê¸° - - - Reset name - ì´ë¦„ 초기화 - - - Change name - ì´ë¦„ 변경 - - - Refreeze - - - - Freeze - - - - Unfreeze - - - - Add steps - 단계 ë”하기 - - - Remove steps - 단계 제거 - - - - PianoRoll - - Play/pause current pattern (Space) - 현재 패턴 재ìƒ/잠시 중지 (Space) - - - Stop playing of current pattern (Space) - 현재 패턴 재ìƒì„ 중지 (Space) - - - Cut selected notes (Ctrl+X) - ì„ íƒ ë°•ìžë¥¼ 잘ë¼ë‚´ê¸° (Ctrl+X) - - - Copy selected notes (Ctrl+C) - ì„ íƒ ë°•ìžë¥¼ 복사 (Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - í´ë¦½ë³´ë“œì—서 ë°•ìž ë¶™ì—¬ë„£ê¸° (Ctrl+V) - - - Piano-Roll - no pattern - 피아노-롤 - 패턴 ì—†ìŒ - - - Piano-Roll - %1 - 피아노-롤 - %1 - - - Please open a pattern by double-clicking on it! - ì´ê²ƒì„ ì´ì¤‘ í´ë¦­ì„ 함으로서 íŒ¨í„´ì„ ì—´ì–´ì£¼ì„¸ìš”. - - - Record notes from MIDI-device/channel-piano - 미디 기기/ì±„ë„ í”¼ì•„ë…¸ì—서 ë°•ìž ê¸°ë¡ - - - Record notes from MIDI-device/channel-piano while playing song or BB track - 노래 ë˜ëŠ” BB 트랙 재ìƒì‹œ 미디 기기/채ë„ì—서 ë°•ìž ê¸°ë¡ - - - Draw mode (Shift+D) - 그리기 모드 (Shift+D) - - - Erase mode (Shift+E) - 지우기 모드 (Shift+E) - - - Select mode (Shift+S) - ì„ íƒ ëª¨ë“œ (Shift+S) - - - Last note - 마지막 ë°•ìž - - - 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. - - - - 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. - - - - Note lock - ë°•ìž ìž ê¸ˆ - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser @@ -5293,42 +6890,22 @@ use mouse wheel to set volume of a step List installed LADSPA plugins ì„¤ì¹˜ëœ LADSPA í”ŒëŸ¬ê·¸ì¸ ëª©ë¡ - - three powerful oscillators you can modulate in several ways - - Filter for importing FL Studio projects into LMMS - - versatile kick- & bassdrum-synthesizer - - GUS-compatible patch instrument - - plugin for using arbitrary VST-effects inside LMMS. - - Additive Synthesizer for organ-like sounds - - plugin for boosting bass - - Tuneful things to bang on - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - VST-host for using VST(i)-plugins within LMMS @@ -5386,6 +6963,62 @@ This chip was used in the Commodore 64 computer. 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 + + projectNotes @@ -6085,152 +7718,6 @@ Latency: %2 ms - - SongEditor - - Song-Editor - 노래-편집기 - - - Play song (Space) - 노래 ìž¬ìƒ (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. - - - - Stop song (Space) - 노래 ì •ì§€ (Space) - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - - - - Add sample-track - 샘플 트랙 ë”하기 - - - Could not open file - 파ì¼ì„ ì—´ 수 ì—†ìŒ - - - Could not write file - 파ì¼ì„ 쓸 수 ì—†ìŒ - - - Add automation-track - ìžë™í™” 트랙 ë”하기 - - - Draw mode - 그리기 모드 - - - Edit mode (select and move) - 편집 모드(ì„ íƒ ë° ì´ë™) - - - Record samples from Audio-device - 오디오 기기ì—서 샘플 ë…¹ìŒ - - - Record samples from Audio-device while playing song or BB track - 노래 ìž¬ìƒ ë˜ëŠ” BB트랙 ë™ì•ˆ 오디오 기기ì—서 샘플 ë…¹ìŒ - - - 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. - - - - Add beat/bassline - beat/bassline ë”하기 - - - 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% - ê°’: %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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - 선형 스펙트럼 - - - Linear Y axis - 선형 Y ì¶• - - - - spectrumAnalyzerControls - - Linear spectrum - 선형 스펙트럼 - - - Linear Y-axis - 선형 Y ì¶• - - - Channel mode - ì±„ë„ ëª¨ë“œ - - stereoEnhancerControlDialog @@ -6417,6 +7904,18 @@ Latency: %2 ms Remove this track ì´ íŠ¸ëž™ì„ ì œê±° + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + vestigeInstrument @@ -6734,4 +8233,74 @@ The LED in the lower right corner of the waveform editor determines whether the 소리 %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 + + + + + waveShaperControls + + Input gain + + + + Output gain + + + diff --git a/data/locale/nl.qm b/data/locale/nl.qm index 024d468b4..1331a3581 100644 Binary files a/data/locale/nl.qm and b/data/locale/nl.qm differ diff --git a/data/locale/nl.ts b/data/locale/nl.ts index b9605d9cd..e850fcaef 100644 --- a/data/locale/nl.ts +++ b/data/locale/nl.ts @@ -7,10 +7,6 @@ About LMMS - - LMMS (Linux MultiMedia Studio) - - Version %1 (%2/%3, Qt %4, %5) @@ -49,6 +45,64 @@ If you're interested in translating LMMS in another language or want to imp <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + LMMS + + + + + AmplifierControlDialog + + VOL + + + + Volume: + Volume: + + + PAN + + + + Panning: + + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + Volume + + + Panning + + + + Left gain + + + + Right gain + + AudioAlsa::setupWidget @@ -79,14 +133,6 @@ If you're interested in translating LMMS in another language or want to imp If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. Met deze knop word de sample achterste voren gespeeld. Dit is goed bruikbaar voor leuke effecten, zoals een 'reversed crash'. - - Loop sample at start- and end-point - Sample herhalen tussen start- en eindpunt - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - - Amplify: Versterking: @@ -99,18 +145,10 @@ If you're interested in translating LMMS in another language or want to imp Startpoint: Startpunt: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Endpoint: Eindpunt: - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Continue sample playback across notes @@ -119,6 +157,42 @@ If you're interested in translating LMMS in another language or want to imp 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. + + AudioFileProcessorWaveView @@ -365,6 +439,10 @@ If you're interested in translating LMMS in another language or want to imp Drag a control while pressing <Ctrl> + + Model is already connected to this pattern. + + AutomationPatternView @@ -396,6 +474,10 @@ If you're interested in translating LMMS in another language or want to imp Disconnect "%1" + + Set/clear record + + AutomationTrack @@ -404,6 +486,59 @@ If you're interested in translating LMMS in another language or want to imp + + BassBoosterControlDialog + + FREQ + + + + Frequency: + + + + GAIN + + + + Gain: + + + + RATIO + + + + Ratio: + + + + + BassBoosterControls + + Frequency + + + + Gain + + + + Ratio + + + + + CarlaInstrumentView + + Show GUI + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + Controller @@ -459,7 +594,7 @@ If you're interested in translating LMMS in another language or want to imp Cancel - + Annuleren LMMS @@ -516,6 +651,132 @@ If you're interested in translating LMMS in another language or want to imp &Help + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + 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 BandPass 12dB + + + + RC HighPass 12dB + + + + RC LowPass 24dB + + + + RC BandPass 24dB + + + + RC HighPass 24dB + + + + Vocal Formant Filter + + + Effect @@ -880,6 +1141,10 @@ Right clicking will bring up a context menu where you can change the order in wh Drag a sample from somewhere and drop it in this window. Sleep een willekeurige sample en plaats hem in dit venster. + + Click here for random wave. + + ExportProjectDialog @@ -1007,27 +1272,90 @@ Right clicking will bring up a context menu where you can change the order in wh 8x - - Sample-exact controllers - - - - Alias-free oscillators - - Start Cancel - + Annuleren Export as loop (remove end silence) + + FileBrowser + + Browser + + + + + 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... + + + + --- Factory files --- + + + + + 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 + + + + &Help + &Help + + FxMixer @@ -1053,6 +1381,9 @@ Right clicking will bring up a context menu where you can change the order in wh FX-Mixer + + + FxMixerView::FxChannelView FX Fader %1 @@ -1066,6 +1397,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + FxRoute + + Amount to send from channel %1 to channel %2 + + + InstrumentFunctionArpeggio @@ -1124,6 +1462,10 @@ Right clicking will bring up a context menu where you can change the order in wh Sync Synchroon + + Down and up + + InstrumentFunctionArpeggioView @@ -1566,6 +1908,18 @@ Right clicking will bring up a context menu where you can change the order in wh Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + + InstrumentFunctionNoteStackingView @@ -1628,6 +1982,18 @@ Right clicking will bring up a context menu where you can change the order in wh NOTE + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + InstrumentSoundShaping @@ -1774,6 +2140,10 @@ Right clicking will bring up a context menu where you can change the order in wh cutoff frequency: + + Envelopes, LFOs and filters are not supported by the current instrument. + + InstrumentTrack @@ -1859,10 +2229,6 @@ Right clicking will bring up a context menu where you can change the order in wh GENERAL SETTINGS - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - - Instrument volume @@ -1935,10 +2301,6 @@ Right clicking will bring up a context menu where you can change the order in wh PLUGIN PLUGIN - - Save current channel settings in a preset-file - - Pitch range (semitones) @@ -1947,6 +2309,14 @@ Right clicking will bring up a context menu where you can change the order in wh RANGE BEREIK + + 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. + + LadspaControl @@ -1992,6 +2362,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + LcdSpinBox + + Please enter a new value between %1 and %2: + Voer aub. een waarde in tussen %1 en %2 in: + + LfoController @@ -2351,10 +2728,6 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. LMMS (*.mmp *.mmpz) - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - - Version %1 @@ -2375,6 +2748,22 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Error while parsing configuration file at line %1:%2: %3 + + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + + MeterDialog @@ -2491,6 +2880,647 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 + + + + + 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. + + + + + 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 + Master volume + + + Vibrato + + OscillatorObject @@ -2534,6 +3564,10 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Osc %1 waveform Oscillator %1 Golfvorm + + Osc %1 harmonic + + PatmanView @@ -2582,6 +3616,39 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + dubbel-klik om deze pattern in Piano-Roll te openen +volume van de steps is met het muiswiel te veranderen + + + Open in piano-roll + In Piano-Roll openen + + + Clear all notes + Alle noten verwijderen + + + Reset name + Naam herstellen + + + Change name + + + + Add steps + Steps toevoegen + + + Remove steps + Steps verwijderen + + PeakController @@ -2682,6 +3749,189 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PianoRoll + + Cut selected notes (Ctrl+X) + Knip geselecteerde noten (Ctrl+X) + + + Copy selected notes (Ctrl+C) + Kopieer geselecteerde noten (Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + Plak noten van klembord (Ctrl+V) + + + Play/pause current pattern (Space) + Huidige pattern afspelen/pauseren (Spatie) + + + Stop playing of current pattern (Space) + Afspelen huidige pattern stoppen (Spatie) + + + Piano-Roll - %1 + Piano-Roll - %1 + + + Piano-Roll - no pattern + Piano-Roll -geen pattern + + + Please open a pattern by double-clicking on it! + Open aub. een pattern door er op te dubbel-klikken! + + + Record notes from MIDI-device/channel-piano + Noten van MIDI-apparaat/kanaal-piano opnemen + + + Last note + Laatste noot + + + Draw mode (Shift+D) + Teken modus (Shift+D) + + + Erase mode (Shift+E) + Wis modus (Shift+E) + + + Select mode (Shift+S) + Selecteer modus (Shift+S) + + + Record notes from MIDI-device/channel-piano while playing song or BB track + + + + 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. + + + + 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. + + + + Note lock + + + + Note Volume + + + + Note Panning + + + + 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 Ctrl 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 Ctrl 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. + + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + + + + No scale + + + + No chord + + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + Voer aub. een waarde in tussen %1 en %2 in: + + PianoView @@ -2708,6 +3958,10 @@ Reason: "%2" Failed to load plugin "%1"! + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2854,6 +4108,10 @@ Reason: "%2" File: + + File: %1 + + SampleBuffer @@ -2861,10 +4119,6 @@ Reason: "%2" Open audio file Audio-bestand openen - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - - Wave-Files (*.wav) Wave-Bestanden (*.wav) @@ -2885,10 +4139,6 @@ Reason: "%2" SPEEX-Files (*.spx) - - MP3-Files (*.mp3) - - VOC-Files (*.voc) VOC-Bestanden (*.voc) @@ -2905,6 +4155,10 @@ Reason: "%2" RAW-Files (*.raw) RAW-Bestanden (*.raw) + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + SampleTCOView @@ -2963,6 +4217,152 @@ Reason: "%2" + + SongEditor + + 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, wanneer je het afspelen van de song wilt stoppen. De song-position-marker zal weer naar het begin van je song worden gezet. + + + Could not open file + Kan bestand niet openen + + + Could not write file + Kan bestand niet schrijven + + + Song-Editor + Song-Editor + + + 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 je de gehele song wil afspelen. Het afspelen start bij de song-positie-marker (groen). Je kunt ook verplaatsen tijdens het afspelen. + + + Play song (Space) + Song afspelen (Spatie) + + + Stop song (Space) + Stop afspelen song (Spatie) + + + Add beat/bassline + Beat/Bassline toevoegen + + + Add sample-track + Sample spoor toevoegen + + + Draw mode + Teken modus + + + Edit mode (select and move) + Bewerk modus (selecteren en verplaatsen) + + + Add automation-track + + + + Record samples from Audio-device + + + + Record samples from Audio-device while playing song or BB track + + + + 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/BPM + + + tempo of song + afspeelsnelheid + + + 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 + High quality modus + + + 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. + + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + + + + Linear Y axis + + + + + SpectrumAnalyzerControls + + Linear spectrum + + + + Linear Y axis + + + + Channel mode + + + TempoSyncKnob @@ -3077,7 +4477,7 @@ Zorg ervoor dat je schrijf-bevoegdheid hebt voor deze bestanden en mapen en prob Cancel - + Annuleren Please wait... @@ -3409,20 +4809,6 @@ Zorg ervoor dat je schrijf-bevoegdheid hebt voor deze bestanden en mapen en prob Loading plugin Plugin laden - - Please wait while loading VST-plugin... - Wacht aub, de VST-plugin word geladen... - - - Failed loading VST-plugin - VST-plugin laden mislukt - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - De VST-plugin %1 kan om onbekende reden niet worden geladen. -Als het wel werkt met andere VST-software onder Linux, neem dan contact op met een LMMS-ontwikkelaar! - Open Preset @@ -3463,6 +4849,268 @@ Als het wel werkt met andere VST-software onder Linux, neem dan contact op met e .fxb + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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 + Normaliseren + + + Click to normalize + + + + Invert + + + + Click to invert + + + + Smooth + Uitstrijker + + + Click to smooth + + + + Sine wave + Sinus golf + + + Click for sine wave + + + + Triangle wave + Driehoeks golf + + + Click for triangle wave + + + + Click for saw wave + + + + Square wave + Vierkants golf + + + Click for square wave + + ZynAddSubFxInstrument @@ -3588,54 +5236,32 @@ Als het wel werkt met andere VST-software onder Linux, neem dan contact op met e Reverse sample Sample omdraaien - - Loop - - Stutter - - - bassBoosterControlDialog - FREQ + Loopback point - Frequency: + Loop mode - GAIN + Interpolation mode - Gain: + None - RATIO + Linear - Ratio: - - - - - bassBoosterControls - - Frequency - - - - Gain - - - - Ratio + Sinc @@ -3696,6 +5322,10 @@ Als het wel werkt met andere VST-software onder Linux, neem dan contact op met e Change color Kleur veranderen + + Reset color to default + + bbTrack @@ -3790,6 +5420,120 @@ Als het wel werkt met andere VST-software onder Linux, neem dan contact op met e + + 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 + + + exportProjectDialog @@ -3825,40 +5569,6 @@ Please make sure you have write-permission to the file and the directory contain Voer aub. een waarde in tussen %1 en %2 in: - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - - - graphModel @@ -3876,18 +5586,46 @@ Please make sure you have write-permission to the file and the directory contain End frequency - - Decay - - - - Distortion - - Gain + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + kickerInstrumentView @@ -3900,15 +5638,35 @@ Please make sure you have write-permission to the file and the directory contain - Decay: - Decay: - - - Distortion: + Gain: - Gain: + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: @@ -4185,6 +5943,38 @@ Double clicking any of the plugins will bring up information on the ports.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 @@ -4780,11 +6570,27 @@ Double clicking any of the plugins will bring up information on the ports.Oscillator %1 Balans: - Osc %1 fine detuning left: - Oscillator %1 Fijn ontstemming links: + 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: @@ -5054,226 +6860,12 @@ Double clicking any of the plugins will bring up information on the ports. - - pattern - - Cannot freeze pattern - Kan pattern niet bevriezen - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - De pattern kan nu niet bevroren worden, omdat deze in de afspeel-modus is. Stop aub. en probeer opnieuw! - - - - patternFreezeStatusDialog - - Freezing pattern... - Pattern bevriezen... - - - Cancel - Annuleren - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - dubbel-klik om deze pattern in Piano-Roll te openen -volume van de steps is met het muiswiel te veranderen - - - Open in piano-roll - In Piano-Roll openen - - - Clear all notes - Alle noten verwijderen - - - Reset name - Naam herstellen - - - Change name - - - - Refreeze - Opnieuw bevriezen - - - Freeze - Bevriezen - - - Unfreeze - Bevriezen ongedaan maken - - - Add steps - Steps toevoegen - - - Remove steps - Steps verwijderen - - - - PianoRoll - - Cut selected notes (Ctrl+X) - Knip geselecteerde noten (Ctrl+X) - - - Copy selected notes (Ctrl+C) - Kopieer geselecteerde noten (Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - Plak noten van klembord (Ctrl+V) - - - Play/pause current pattern (Space) - Huidige pattern afspelen/pauseren (Spatie) - - - Stop playing of current pattern (Space) - Afspelen huidige pattern stoppen (Spatie) - - - Piano-Roll - %1 - Piano-Roll - %1 - - - Piano-Roll - no pattern - Piano-Roll -geen pattern - - - Please open a pattern by double-clicking on it! - Open aub. een pattern door er op te dubbel-klikken! - - - Record notes from MIDI-device/channel-piano - Noten van MIDI-apparaat/kanaal-piano opnemen - - - Last note - Laatste noot - - - Draw mode (Shift+D) - Teken modus (Shift+D) - - - Erase mode (Shift+E) - Wis modus (Shift+E) - - - Select mode (Shift+S) - Selecteer modus (Shift+S) - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - 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. - - - - 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. - - - - Note lock - - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser Instrument plugins Instrument Plugins - - three powerful oscillators you can modulate in several ways - Drie krachtige Oscillatoren, welke je op verschillende manieren kan moduleren - VST-host for using VST(i)-plugins within LMMS VST-Host voor bebruik van VST(i)-Plugins binnen LMMS @@ -5294,10 +6886,6 @@ volume van de steps is met het muiswiel te veranderen Filter for importing MIDI-files into LMMS Filter, om MIDI-bestanden in LMMS te importeren - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - Eenvoudige Sampler met verschillende instellingen voor gebruik van samples (z.B. Drums) in in een instrument-spoor - Filter for importing FL Studio projects into LMMS Filter voor importeren van FL Studio Projecten in LMMS @@ -5322,22 +6910,10 @@ volume van de steps is met het muiswiel te veranderen List installed LADSPA plugins - - versatile kick- & bassdrum-synthesizer - - GUS-compatible patch instrument - - plugin for using arbitrary VST-effects inside LMMS. - - - - plugin for boosting bass - - Tuneful things to bang on @@ -5387,6 +6963,62 @@ This chip was used in the Commodore 64 computer. 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 + + projectNotes @@ -6085,152 +7717,6 @@ Vertraging: %2 ms - - SongEditor - - 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, wanneer je het afspelen van de song wilt stoppen. De song-position-marker zal weer naar het begin van je song worden gezet. - - - Could not open file - Kan bestand niet openen - - - Could not write file - Kan bestand niet schrijven - - - Song-Editor - Song-Editor - - - 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 je de gehele song wil afspelen. Het afspelen start bij de song-positie-marker (groen). Je kunt ook verplaatsen tijdens het afspelen. - - - Play song (Space) - Song afspelen (Spatie) - - - Stop song (Space) - Stop afspelen song (Spatie) - - - Add beat/bassline - Beat/Bassline toevoegen - - - Add sample-track - Sample spoor toevoegen - - - Draw mode - Teken modus - - - Edit mode (select and move) - Bewerk modus (selecteren en verplaatsen) - - - Add automation-track - - - - Record samples from Audio-device - - - - Record samples from Audio-device while playing song or BB track - - - - 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/BPM - - - tempo of song - afspeelsnelheid - - - 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 - High quality modus - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - spectrumAnalyzerControls - - Linear spectrum - - - - Linear Y-axis - - - - Channel mode - - - stereoEnhancerControlDialog @@ -6417,6 +7903,18 @@ Vertraging: %2 ms Solo + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + vestigeInstrument @@ -6754,4 +8252,74 @@ De LED in de rechter benedenhoek van de golfvorm bewerker geeft aan of de snaar + + 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 + + Input gain + + + + Output gain + + + diff --git a/data/locale/pl.qm b/data/locale/pl.qm index d4d7dac19..1738f343c 100644 Binary files a/data/locale/pl.qm and b/data/locale/pl.qm differ diff --git a/data/locale/pl.ts b/data/locale/pl.ts index fee00bae0..a1689c846 100644 --- a/data/locale/pl.ts +++ b/data/locale/pl.ts @@ -7,10 +7,6 @@ About LMMS O programie LMMS - - LMMS (Linux MultiMedia Studio) - LMMS (Linux MultiMedia Studio) - Version %1 (%2/%3, Qt %4, %5) Wersja %1 (%2/%3, Qt %4, %5) @@ -55,6 +51,64 @@ Zauważone błędy i propozycje zmian tÅ‚umaczenia proszÄ™ zgÅ‚aszać na e-mail: <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + LMMS + LMMS + + + + AmplifierControlDialog + + VOL + VOL + + + Volume: + GÅ‚oÅ›ność: + + + PAN + PAN + + + Panning: + Panoramowanie: + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + GÅ‚oÅ›ność + + + Panning + Panoramowanie + + + Left gain + + + + Right gain + + AudioAlsa::setupWidget @@ -85,14 +139,6 @@ Zauważone błędy i propozycje zmian tÅ‚umaczenia proszÄ™ zgÅ‚aszać na e-mail: 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. - - Loop sample at start- and end-point - ZapÄ™tl próbkÄ™ od znacznika poczÄ…tkowego do koÅ„cowego - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - JeÅ›li uaktywnisz tÄ™ kontrolkÄ™ próbka bÄ™dzie odtwarzana w zakresie od znacznika poczÄ…tkowego do koÅ„cowego podczas gdy klawisz instrumentu jest naciÅ›niÄ™ty. Może być to przydatne w przypadku sampli instrumentów strunowych czy chórków. - Amplify: Wzmocnienie: @@ -105,18 +151,10 @@ Zauważone błędy i propozycje zmian tÅ‚umaczenia proszÄ™ zgÅ‚aszać na e-mail: Startpoint: Znacznik-poczÄ…tkowy: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Za pomocÄ… tego pokrÄ™tÅ‚a możesz ustawić poÅ‚ożenie znacznika poczÄ…tku odtwarzania, czyli miejsca, od którego próbka ma być odtwarzana. Gdy uaktywnisz tryb zapÄ™tlenia bÄ™dzie to punkt do którego Sampler bÄ™dzie powracaÅ‚ jeÅ›li nuta jest dÅ‚uższa niż wycinek próbki pomiÄ™dzy znacznikami poczÄ…tku i koÅ„ca. - Endpoint: Znacznik koÅ„cowy: - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Za pomocÄ… tego pokrÄ™tÅ‚a możesz ustawić poÅ‚ożenie znacznika koÅ„ca odtwarzania, czyli miejsca gdzie koÅ„czy siÄ™ odtwarzanie próbki. Gdy uaktywnisz tryb zapÄ™tlenia bÄ™dzie to punkt z którego Sampler bÄ™dzie przeskakiwaÅ‚ do znacznika poczÄ…tkowego jeÅ›li nuta jest dÅ‚uższa niż wycinek próbki pomiÄ™dzy znacznikami poczÄ…tku i koÅ„ca. - Continue sample playback across notes @@ -125,6 +163,42 @@ Zauważone błędy i propozycje zmian tÅ‚umaczenia proszÄ™ zgÅ‚aszać na e-mail: 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. + + AudioFileProcessorWaveView @@ -371,6 +445,10 @@ Zauważone błędy i propozycje zmian tÅ‚umaczenia proszÄ™ zgÅ‚aszać na e-mail: Drag a control while pressing <Ctrl> PrzeciÄ…gnij trzymajÄ…c wciÅ›niÄ™ty klawisz <Ctrl> + + Model is already connected to this pattern. + + AutomationPatternView @@ -402,6 +480,10 @@ Zauważone błędy i propozycje zmian tÅ‚umaczenia proszÄ™ zgÅ‚aszać na e-mail: Disconnect "%1" Rozłącz "%1" + + Set/clear record + Ustaw/wyczyść nagranie + AutomationTrack @@ -410,6 +492,59 @@ Zauważone błędy i propozycje zmian tÅ‚umaczenia proszÄ™ zgÅ‚aszać na e-mail: Åšcieżka automatyki + + BassBoosterControlDialog + + FREQ + FREQ + + + Frequency: + CzÄ™stotliwość: + + + GAIN + GAIN + + + Gain: + Wzmocnienie: + + + RATIO + RATIO + + + Ratio: + Współczynnik: + + + + BassBoosterControls + + Frequency + CzÄ™stotliwość + + + Gain + Wzmocnienie + + + Ratio + Współczynnik + + + + CarlaInstrumentView + + Show GUI + Pokaż GUI + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + Controller @@ -522,6 +657,132 @@ Zauważone błędy i propozycje zmian tÅ‚umaczenia proszÄ™ zgÅ‚aszać na e-mail: &Pomoc + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + 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 BandPass 12dB + + + + RC HighPass 12dB + + + + RC LowPass 24dB + + + + RC BandPass 24dB + + + + RC HighPass 24dB + + + + Vocal Formant Filter + + + Effect @@ -898,6 +1159,10 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek 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. + + ExportProjectDialog @@ -1025,15 +1290,6 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek 8x 8x - - Sample-exact controllers - Nie mam pojÄ™cia co oznacza i jak dziaÅ‚a opcja 'sample-exact' - Kontrolery 'Sample-exact' - - - Alias-free oscillators - Oscylatory bez aliasów - Start Rozpocznij @@ -1047,6 +1303,77 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek + + FileBrowser + + Browser + PrzeglÄ…darka + + + + FileBrowserTreeWidget + + Send to active instrument-track + WyÅ›lij na aktywnÄ… Å›cieżkÄ™ instrumentu + + + Open in new instrument-track/Song-Editor + Otwórz na nowej Å›cieżce Edytora Piosenki + + + Open in new instrument-track/B+B Editor + Otwórz na nowej Å›cieżce Edytora Perkusji i Basu + + + Loading sample + Åadowanie próbki + + + Please wait, loading sample for preview... + Åadowanie podglÄ…du próbki, proszÄ™ czekać... + + + --- Factory files --- + --- Pliki preinstalowane --- + + + + 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 + + + + &Help + + + FxMixer @@ -1072,17 +1399,27 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek FX-Mixer FX-Mixer + + + FxMixerView::FxChannelView FX Fader %1 - FX Fader %1 + FX Fader %1 Mute - Wyciszenie + Wyciszenie Mute this FX channel - Wycisz ten kanaÅ‚ efektowy + Wycisz ten kanaÅ‚ efektowy + + + + FxRoute + + Amount to send from channel %1 to channel %2 + @@ -1141,6 +1478,10 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek Sync + Synchronizacja + + + Down and up @@ -1188,7 +1529,7 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek GATE - + BRAM. Arpeggio gate: @@ -1585,6 +1926,18 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + 8x {5?} + InstrumentFunctionNoteStackingView @@ -1647,6 +2000,18 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek NOTE + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + InstrumentSoundShaping @@ -1793,6 +2158,10 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek cutoff frequency: + + Envelopes, LFOs and filters are not supported by the current instrument. + + InstrumentTrack @@ -1878,10 +2247,6 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek GENERAL SETTINGS GÅÓWNE USTAWIENIA - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - Kliknij tutaj jeÅ›li chcesz zachować ustawienia obecnego kanaÅ‚u w formie pliku presetu. Później możesz go wczytać poprzez dwuklik w przeglÄ…darce presetów. - Instrument volume GÅ‚oÅ›ność instrumentu @@ -1954,10 +2319,6 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek PLUGIN WTYCZKA - - Save current channel settings in a preset-file - Zachowaj ustawienia bieżącego kanaÅ‚u w formie pliku presetu - Pitch range (semitones) @@ -1966,6 +2327,14 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek RANGE ZAKRES + + 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. + + LadspaControl @@ -2011,6 +2380,13 @@ Prawoklik otwiera menu kontekstowe z pomocÄ… którego można zmienić porzÄ…dek Nieznana wtyczka LADSPA %1 żądanie. + + LcdSpinBox + + Please enter a new value between %1 and %2: + Wprowadź nowÄ… wartość pomiÄ™dzy %1 a %2: + + LfoController @@ -2389,11 +2765,23 @@ Odwiedź witrynÄ™ http://lmms.sf.net/wiki for documentation on LMMS. - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) + Version %1 - Version %1 + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) @@ -2512,6 +2900,647 @@ Odwiedź witrynÄ™ http://lmms.sf.net/wiki for documentation on LMMS.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 + + + + + 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. + + + + + 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 + Vibrato + OscillatorObject @@ -2555,6 +3584,10 @@ Odwiedź witrynÄ™ http://lmms.sf.net/wiki for documentation on LMMS.Osc %1 waveform Osc %1 przebieg + + Osc %1 harmonic + + PatmanView @@ -2603,6 +3636,39 @@ Odwiedź witrynÄ™ http://lmms.sf.net/wiki for documentation on LMMS.Pliki Patch (*.pat) + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + Podwójne klikniÄ™cie otwiera pattern w Edytorze Pianolowym +użyj kółka myszy aby ustawić gÅ‚oÅ›ność poszczególnych kroków + + + Open in piano-roll + Otwórz w Edytorze Pianolowym + + + Clear all notes + Wyczyść wszystkie nuty + + + Reset name + Zresetuj nazwÄ™ + + + Change name + ZmieÅ„ nazwÄ™ + + + Add steps + Dodaj kroki + + + Remove steps + UsuÅ„ kroki + + PeakController @@ -2703,6 +3769,189 @@ Odwiedź witrynÄ™ http://lmms.sf.net/wiki for documentation on LMMS. + + PianoRoll + + Play/pause current pattern (Space) + Odtwórz/zatrzymaj aktualny pattern (Spacja) + + + Stop playing of current pattern (Space) + Zatrzymaj odtwarzanie bieżącego patternu (Spacja) + + + Cut selected notes (Ctrl+X) + Wytnij zaznaczone nuty (Ctrl+X) + + + Copy selected notes (Ctrl+C) + Skopiuj zaznaczone nuty (Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + Wklej nuty ze schowka (Ctrl+V) + + + Piano-Roll - no pattern + Edytor Pianolowy - brak patternu + + + Piano-Roll - %1 + Edytor Pianolowy - %1 + + + Please open a pattern by double-clicking on it! + Otwórz pattern podwójnym klikniÄ™ciem! + + + Record notes from MIDI-device/channel-piano + Nagraj nuty za pomocÄ… zewnÄ™trznego kontrolera MIDI + + + Record notes from MIDI-device/channel-piano while playing song or BB track + Nagraj nuty za pomocÄ… zewnÄ™trznego kontrolera MIDI w trakcie odtwarzania podkÅ‚adu dźwiÄ™kowego + + + Draw mode (Shift+D) + Tryb rysowania (Shift+D) + + + Erase mode (Shift+E) + Tryb wymazywania (Shift+E) + + + Select mode (Shift+S) + Tryb zaznaczania (Shift+S) + + + Last note + Ostatnia nuta + + + 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 pattern. Pattern zostanie automatycznie zapÄ™tlony. + + + 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 pattern 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 pattern. + + + Click here to stop playback of current pattern. + Kliknij tutaj jeÅ›li chcesz zatrzymać odtwarzanie bieżącego patternu. + + + 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 patternie 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 patternie 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. + + + Note lock + Blokada nuty + + + Note Volume + GÅ‚oÅ›ność Nuty + + + Note Panning + Panoramowanie Nuty + + + 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 Ctrl 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 'Ctrl' 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 Ctrl 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 'Ctrl' 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 nich. Ten tryb możesz aktywować z poziomu klawiatury przez wciÅ›niÄ™cie kombinacji 'Shift+T'. + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + + + + No scale + + + + No chord + + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + Wprowadź nowÄ… wartość pomiÄ™dzy %1 a %2: + + PianoView @@ -2730,6 +3979,10 @@ Powód: "%2" Failed to load plugin "%1"! Nie można zaÅ‚adować wtyczki "%1"! + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2876,6 +4129,10 @@ Powód: "%2" File: Plik: + + File: %1 + + SampleBuffer @@ -2883,10 +4140,6 @@ Powód: "%2" Open audio file Otwórz plik audio - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Wszystkie pliki Audio (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Wave-Files (*.wav) Pliki WAV (*.wav) @@ -2907,10 +4160,6 @@ Powód: "%2" SPEEX-Files (*.spx) Pliki SPEEX (*.spx) - - MP3-Files (*.mp3) - Pliki MP3 (*.mp3) - VOC-Files (*.voc) Pliki VOC (*.voc) @@ -2927,6 +4176,10 @@ Powód: "%2" RAW-Files (*.raw) Pliki RAW (*.raw) + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + SampleTCOView @@ -2936,7 +4189,7 @@ Powód: "%2" Delete (middle mousebutton) - + Kasuj (naciÅ›nij rolkÄ™ myszy) Cut @@ -2952,7 +4205,7 @@ Powód: "%2" Mute/unmute (<Ctrl> + middle click) - + Wycisz/anuluj wyciszenie (<Ctrl> + klikniÄ™cie rolkÄ… myszy) Set/clear record @@ -2985,6 +4238,153 @@ Powód: "%2" VOL + + SongEditor + + Song-Editor + Edytor Kompozycji + + + Play song (Space) + Odtwórz piosenkÄ™ (Spacja) + + + 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łą piosenkÄ™. Odtwarzanie rozpocznie siÄ™ od zielonego znacznika pozycji. Możesz go przemieszczać w trakcie odtwarzania. + + + Stop song (Space) + Zatrzymaj odtwarzanie piosenki (Spacja) + + + 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 piosenki. Znacznik pozycji zostanie ustawiony na poczÄ…tek utworu. + + + Add beat/bassline + Dodaj liniÄ™ basowÄ…/perkusyjnÄ… + + + Add sample-track + Dodaj Å›cieżkÄ™ z samplami + + + Could not open file + Nie można otworzyć pliku + + + Could not write file + Nie można zapisać pliku + + + Add automation-track + Dodaj Å›cieżkÄ™ automatyki + + + Draw mode + Tryb rysowania + + + Edit mode (select and move) + Tryb edycji (zaznaczanie i przemieszczanie) + + + Record samples from Audio-device + Nagraj sample z urzÄ…dzenia audio + + + Record samples from Audio-device while playing song or BB track + Nagrywa sample z urzÄ…dzenia audio podczas odtwarzania piosenki lub Å›cieżki perkusji/basu + + + 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. + + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + Spektrum skalowane liniowo + + + Linear Y axis + OÅ› Y skalowana liniowo + + + + SpectrumAnalyzerControls + + Linear spectrum + Spektrum skalowane liniowo + + + Linear Y axis + OÅ› Y skalowana liniowo + + + Channel mode + Tryb kanaÅ‚u + + TempoSyncKnob @@ -3431,20 +4831,6 @@ Upewnij siÄ™, że masz uprawnienia do odczytu tego pliku i katalogu zawierajÄ…ce Loading plugin Åadowanie wtyczki - - Please wait while loading VST-plugin... - Åadowanie wtyczki VST. ProszÄ™ czekać... - - - Failed loading VST-plugin - Åadowanie wtyczki VST nie powiodÅ‚o siÄ™ - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - Wtyczka VST %1 nie może zostać zaÅ‚adowana z jakiegoÅ› powodu. -JeÅ›li pracuje normalnie z innym oprogramowaniem VST pod Linuksem proszÄ™ koniecznie skontaktować siÄ™ z developerami LMMS! - Open Preset Otwórz Preset @@ -3485,6 +4871,268 @@ JeÅ›li pracuje normalnie z innym oprogramowaniem VST pod Linuksem proszÄ™ koniec ' + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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. + Narysuj swój wÅ‚asny przebieg przeciÄ…gajÄ…c kursorem po tym wykresie. + + + 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 + Normalizacja + + + Click to normalize + + + + Invert + + + + Click to invert + + + + Smooth + WygÅ‚adzanie + + + 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 @@ -3610,55 +5258,33 @@ JeÅ›li pracuje normalnie z innym oprogramowaniem VST pod Linuksem proszÄ™ koniec Reverse sample Odwróć próbkÄ™ - - Loop - PÄ™tla - Stutter - - - bassBoosterControlDialog - FREQ - FREQ + Loopback point + - Frequency: - CzÄ™stotliwość: + Loop mode + Tryb zapÄ™tlenia - GAIN - GAIN + Interpolation mode + - Gain: - Wzmocnienie: + None + - RATIO - RATIO + Linear + - Ratio: - Współczynnik: - - - - bassBoosterControls - - Frequency - CzÄ™stotliwość - - - Gain - Wzmocnienie - - - Ratio - Współczynnik + Sinc + @@ -3718,6 +5344,10 @@ JeÅ›li pracuje normalnie z innym oprogramowaniem VST pod Linuksem proszÄ™ koniec Change color ZmieÅ„ kolor + + Reset color to default + + bbTrack @@ -3812,6 +5442,120 @@ JeÅ›li pracuje normalnie z innym oprogramowaniem VST pod Linuksem proszÄ™ koniec Kliknij aby przełączyć na przebieg zdefiniowany przez użytkownika. + + 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 + + + exportProjectDialog @@ -3848,40 +5592,6 @@ Upewnij siÄ™, że masz uprawnienia zapisu do tego pliku i katalogu w którym si Wprowadź nowÄ… wartość pomiÄ™dzy %1 a %2: - - fileBrowser - - Browser - PrzeglÄ…darka - - - - fileBrowserTreeWidget - - Send to active instrument-track - WyÅ›lij na aktywnÄ… Å›cieżkÄ™ instrumentu - - - Open in new instrument-track/Song-Editor - Otwórz na nowej Å›cieżce Edytora Piosenki - - - Open in new instrument-track/B+B Editor - Otwórz na nowej Å›cieżce Edytora Perkusji i Basu - - - Loading sample - Åadowanie próbki - - - Please wait, loading sample for preview... - Åadowanie podglÄ…du próbki, proszÄ™ czekać... - - - --- Factory files --- - --- Pliki preinstalowane --- - - graphModel @@ -3899,18 +5609,46 @@ Upewnij siÄ™, że masz uprawnienia zapisu do tego pliku i katalogu w którym si End frequency CzÄ™stotliwość koÅ„cowa - - Decay - Zanikanie - - - Distortion - ZnieksztaÅ‚cenie - Gain Wzmocnienie + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + Szum + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + kickerInstrumentView @@ -3922,18 +5660,38 @@ Upewnij siÄ™, że masz uprawnienia zapisu do tego pliku i katalogu w którym si End frequency: CzÄ™stotliwość koÅ„cowa: - - Decay: - Zanikanie: - - - Distortion: - ZnieksztaÅ‚cenie: - Gain: Wzmocnienie: + + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: + + knob @@ -4220,6 +5978,38 @@ Podwójne klikniÄ™cie na którejkolwiek wtyczce otworzy okienko z informacjami o Click here for white-noise. Kliknij tutaj, aby przełączyć na przebieg stochastyczny. + + 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 @@ -4814,14 +6604,30 @@ Podwójne klikniÄ™cie na którejkolwiek wtyczce otworzy okienko z informacjami o Osc %1 panning: Osc %1 panoramowanie: - - Osc %1 fine detuning left: - Osc %1 dokÅ‚adne strojenie lewo: - cents cent(y) + + 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: + + papuInstrument @@ -5089,216 +6895,6 @@ Podwójne klikniÄ™cie na którejkolwiek wtyczce otworzy okienko z informacjami o Narysuj przebieg - - pattern - - Cannot freeze pattern - Nie można zamrozić patternu - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - W tej chwili pattern nie może zostać zamrożony ponieważ znajdujesz siÄ™ w trybie odtwarzania. Zatrzymaj i spróbuj ponownie! - - - - patternFreezeStatusDialog - - Freezing pattern... - Zamrażanie patternu... - - - Cancel - Anuluj - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - Podwójne klikniÄ™cie otwiera pattern w Edytorze Pianolowym -użyj kółka myszy aby ustawić gÅ‚oÅ›ność poszczególnych kroków - - - Open in piano-roll - Otwórz w Edytorze Pianolowym - - - Clear all notes - Wyczyść wszystkie nuty - - - Reset name - Zresetuj nazwÄ™ - - - Change name - ZmieÅ„ nazwÄ™ - - - Refreeze - Zamróź ponownie - - - Freeze - Zamróź - - - Unfreeze - Rozmróź - - - Add steps - Dodaj kroki - - - Remove steps - UsuÅ„ kroki - - - - PianoRoll - - Play/pause current pattern (Space) - Odtwórz/zatrzymaj aktualny pattern (Spacja) - - - Stop playing of current pattern (Space) - Zatrzymaj odtwarzanie bieżącego patternu (Spacja) - - - Cut selected notes (Ctrl+X) - Wytnij zaznaczone nuty (Ctrl+X) - - - Copy selected notes (Ctrl+C) - Skopiuj zaznaczone nuty (Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - Wklej nuty ze schowka (Ctrl+V) - - - Piano-Roll - no pattern - Edytor Pianolowy - brak patternu - - - Piano-Roll - %1 - Edytor Pianolowy - %1 - - - Please open a pattern by double-clicking on it! - Otwórz pattern podwójnym klikniÄ™ciem! - - - Record notes from MIDI-device/channel-piano - Nagraj nuty za pomocÄ… zewnÄ™trznego kontrolera MIDI - - - Record notes from MIDI-device/channel-piano while playing song or BB track - Nagraj nuty za pomocÄ… zewnÄ™trznego kontrolera MIDI w trakcie odtwarzania podkÅ‚adu dźwiÄ™kowego - - - Draw mode (Shift+D) - Tryb rysowania (Shift+D) - - - Erase mode (Shift+E) - Tryb wymazywania (Shift+E) - - - Select mode (Shift+S) - Tryb zaznaczania (Shift+S) - - - Last note - Ostatnia nuta - - - 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 pattern. Pattern zostanie automatycznie zapÄ™tlony. - - - 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 pattern 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 pattern. - - - Click here to stop playback of current pattern. - Kliknij tutaj jeÅ›li chcesz zatrzymać odtwarzanie bieżącego patternu. - - - 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 patternie 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 patternie 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. - - - Note lock - Blokada nuty - - - Note Volume - GÅ‚oÅ›ność Nuty - - - Note Panning - Panoramowanie Nuty - - - 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 Ctrl 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 'Ctrl' 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 Ctrl 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 'Ctrl' 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 nich. Ten tryb możesz aktywować z poziomu klawiatury przez wciÅ›niÄ™cie kombinacji 'Shift+T'. - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser @@ -5329,42 +6925,22 @@ użyj kółka myszy aby ustawić gÅ‚oÅ›ność poszczególnych krokówList installed LADSPA plugins Pokaż zainstalowane wtyczki LADSPA - - three powerful oscillators you can modulate in several ways - Trzy potężne oscylatory, które możesz modulować na kilka różnych sposobów. - Filter for importing FL Studio projects into LMMS Filtr do importowania projektów FL Studio w LMMS. - - versatile kick- & bassdrum-synthesizer - Wszechstronny syntezator do kick'u i stopy perkusyjnej. - GUS-compatible patch instrument Instrument kompatybilny z standardem sampli GUS. - - plugin for using arbitrary VST-effects inside LMMS. - Wtyczka umożliwiajÄ…ca zaÅ‚adowanie dowolnego efektu VST wewnÄ…trz LMMS. - Additive Synthesizer for organ-like sounds Syntezator Addytywny umożliwiajÄ…cy stworzenie dźwiÄ™ków zbliżonych brzmieniem do organów. - - plugin for boosting bass - Wtyczka polepszajÄ…ca brzmienie basu. - Tuneful things to bang on Melodyjny instrument paÅ‚eczkowy. - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - Prosty sampler z różnymi ustawieniami pozwalajÄ…cy na wstawienie sampli bezpoÅ›rednio na Å›cieżki. - VST-host for using VST(i)-plugins within LMMS Host VST pozwalajÄ…cy na użycie wtyczek VST(i) w LMMS. @@ -5423,6 +6999,62 @@ Te ukÅ‚ady scalone byÅ‚y stosowane w komputerach Commodore 64. 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 + + projectNotes @@ -6121,153 +7753,6 @@ Latencja: %2 ms - - SongEditor - - Song-Editor - Edytor Kompozycji - - - Play song (Space) - Odtwórz piosenkÄ™ (Spacja) - - - 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łą piosenkÄ™. Odtwarzanie rozpocznie siÄ™ od zielonego znacznika pozycji. Możesz go przemieszczać w trakcie odtwarzania. - - - Stop song (Space) - Zatrzymaj odtwarzanie piosenki (Spacja) - - - 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 piosenki. Znacznik pozycji zostanie ustawiony na poczÄ…tek utworu. - - - Add beat/bassline - Dodaj liniÄ™ basowÄ…/perkusyjnÄ… - - - Add sample-track - Dodaj Å›cieżkÄ™ z samplami - - - Could not open file - Nie można otworzyć pliku - - - Could not write file - Nie można zapisać pliku - - - Add automation-track - Dodaj Å›cieżkÄ™ automatyki - - - Draw mode - Tryb rysowania - - - Edit mode (select and move) - Tryb edycji (zaznaczanie i przemieszczanie) - - - Record samples from Audio-device - Nagraj sample z urzÄ…dzenia audio - - - Record samples from Audio-device while playing song or BB track - Nagrywa sample z urzÄ…dzenia audio podczas odtwarzania piosenki lub Å›cieżki perkusji/basu - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - Spektrum skalowane liniowo - - - Linear Y axis - OÅ› Y skalowana liniowo - - - - spectrumAnalyzerControls - - Linear spectrum - Spektrum skalowane liniowo - - - Linear Y-axis - OÅ› Y skalowana liniowo - - - Channel mode - Tryb kanaÅ‚u - - stereoEnhancerControlDialog @@ -6454,6 +7939,18 @@ Upewnij siÄ™, że masz przynajmniej uprawnienia odczytu tego pliku a nastÄ™pnie Remove this track UsuÅ„ tÄ™ Å›cieżkÄ™ + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + vestigeInstrument @@ -6788,4 +8285,74 @@ Kontrolka LED w prawym dolnym rogu edytora ksztaÅ‚tu fali pokazuje, czy wybrana Test gÅ‚osu %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 + + + + + waveShaperControls + + Input gain + + + + Output gain + + + diff --git a/data/locale/pt.qm b/data/locale/pt.qm new file mode 100644 index 000000000..44388c433 Binary files /dev/null and b/data/locale/pt.qm differ diff --git a/data/locale/pt.ts b/data/locale/pt.ts new file mode 100644 index 000000000..ea1b7886c --- /dev/null +++ b/data/locale/pt.ts @@ -0,0 +1,8356 @@ + + + + + AboutDialog + + About + Sobre + + + License + Licença + + + Authors + Autores + + + Translation + Tradução + + + About LMMS + Sobre LMMS + + + LMMS - easy music production for everyone + LMMS - produção musical fácil para todos + + + Copyright (c) 2004-2014, LMMS developers + Copyright (c) 2004-2014, LMMS developers + + + Version %1 (%2/%3, Qt %4, %5) + Versão %1 (%2/%3, Qt %4, %5) + + + <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</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! + 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 + + + LMMS + LMMS + + + + AmplifierControlDialog + + VOL + VOL + + + Volume: + Volume: + + + PAN + PAN + + + Panning: + Panorâmico: + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + Volume + + + Panning + Panorâmico + + + Left gain + + + + Right gain + + + + + AudioAlsa::setupWidget + + DEVICE + DISPOSITIVO + + + CHANNELS + CANAIS + + + + AudioFileProcessorView + + Open other sample + Abrir outra 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. + + + Continue sample playback across notes + Continua a tocar a amostra entre as notas + + + Amplify: + Amplificar: + + + 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) + + + Startpoint: + Ponto de início: + + + Reverse sample + Inverter amostra + + + Endpoint: + Ponto final: + + + 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. + + + 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!) + + + 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: + Tamanho da amostra: + + + + AudioJack + + JACK server down + O servidor JACK caiu + + + 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. + + + 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. + + + + AudioJack::setupWidget + + CLIENT-NAME + NOME-DO-CLIENTE + + + CHANNELS + CANAIS + + + + AudioOss::setupWidget + + DEVICE + DISPOSITIVO + + + CHANNELS + CANAIS + + + + AudioPortAudio::setupWidget + + DEVICE + DISPOSITIVO + + + BACKEND + BACKEND + + + + AudioPulseAudio::setupWidget + + DEVICE + DISPOSITIVO + + + CHANNELS + CANAIS + + + + AudioSdl::setupWidget + + DEVICE + DISPOSITIVO + + + + AutomatableModel + + Connected to %1 + Conectado a %1 + + + Remove song-global automation + Apagar automação global da música + + + Edit connection... + Editar conexão... + + + &Copy value (%1%2) + &Copiar valor (%1%2) + + + Remove connection + Apagar conexão + + + &Reset (%1%2) + &Resetar (%1%2) + + + Connected to controller + Conectado ao controlador + + + Edit song-global automation + Editar automação global da música + + + Connect to controller... + Conectado ao controlador... + + + Remove all linked controls + Apagar todos os controles linkados + + + &Paste value (%1%2) + C&olar valor (%1%2) + + + + AutomationEditor + + Automation Editor - %1 + Editor de Automação - %1 + + + All selected values were copied to the clipboard. + Todos os valores selecionados foram copiados para a área de transferência. + + + 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! + + + Draw mode (Shift+D) + Lápis (Shift+D) + + + 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 selecionar progressão cúbica hermite-progressions para este sequenciador de automação. O valor do objeto conectado irá mudar em curva e suavemente entre picos e vales. + + + 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 lápis será ativado. O lápis serve para adicionar ou mover valores simples. Ele estará ativado previamente e será utilizado a maior parte do tempo. Você pode usar 'Shift+D' no teclado para ativar o lápis. + + + 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 a borracha será ativada. A borracha serve para apagar valores simples. Você pode usar 'Shif+E' no teclado para utilizar a borracha. + + + 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 para cortar valores para a área de transferência. Você pode colar os valores em qualquer sequência utilizando o botão de colar. + + + Erase mode (Shift+E) + Borracha (Shift+E) + + + Automation Editor - no pattern + Editor de Automação - sem sequência + + + Cut selected values (Ctrl+X) + Cortar (Ctrl+X) + + + Copy selected values (Ctrl+C) + Copiar (Ctrl+C) + + + Tension: + Tensã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. + + + Play/pause current pattern (Space) + Tocar/pausar a sequência atual (Espaço) + + + 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 selecionar progressões discretas para este sequenciador de automação. O valor do objeto conectado permanecerá constante entre os pontos de controle e será substituido por um novo valor assim que um novo ponto de controle for assinalado. + + + Click here and the values from the clipboard will be pasted at the first visible measure. + Clique aqui e os valores na área de transferência serão colados no primeiro limite visível. + + + Linear progression + Progressão linear + + + Click here if you want to stop playing of the current pattern. + Clique aqui se você que parar a reprodução da sequência atual. + + + Values copied + Valores copiados + + + 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 para copiar valores para a área de transferência. Você pode copiar os valores de qualquer sequência utilizando o botão de colar. + + + Cubic Hermite progression + Cúbica - Hermite progression + + + Tension value for spline + Valor de tensão para os estriados + + + 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 selecionar progressões lineares para este sequenciador de automação. O valor do objeto conectado variará de forma constante entre os pontos de controle assinalados. + + + Stop playing of current pattern (Space) + Parar de tocar a sequência atual (Espaço) + + + 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 alto irá fazer suave a curva mas também extrapolará alguns valores. Um valor de tensão baixa irá causar um declive na curva de volume para cada ponto de controle. + + + Paste values from clipboard (Ctrl+V) + Colar (Ctrl+V) + + + Discrete progression + Progressão discreta + + + + AutomationPattern + + Drag a control while pressing <Ctrl> + Arraste o controle enquanto pressiona a tecla <Ctrl> + + + Model is already connected to this pattern. + + + + + AutomationPatternView + + Clear + Limpar + + + Open in Automation editor + Abra dentro do Editor de Automação + + + Disconnect "%1" + Desconectar "%1" + + + double-click to open this pattern in automation editor + dois cliques para abrir esta sequência no editor de automação + + + %1 Connections + %1 Conexões + + + Reset name + Restaurar nome + + + Change name + Mudar nome + + + Set/clear record + Armar/desarmar gravação + + + + AutomationTrack + + Automation track + Pista de Automação + + + + BassBoosterControlDialog + + FREQ + FREQ + + + Frequency: + Frequência: + + + GAIN + GANHO + + + Gain: + Ganho: + + + RATIO + RAZÃO + + + Ratio: + Razão: + + + + BassBoosterControls + + Frequency + Frequência + + + Gain + Ganho + + + Ratio + Razão + + + + CarlaInstrumentView + + Show GUI + Mostrar GUI + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + + + Controller + + Controller %1 + Controlador %1 + + + + ControllerConnectionDialog + + OK + OK + + + LMMS + LMMS + + + Cycle Detected. + Ciclo Detectado. + + + MIDI CONTROLLER + CONTROLADOR MIDI + + + USER CONTROLLER + CONTROLADOR DO USUÃRIO + + + Cancel + Cancelar + + + Auto Detect + Auto detectar + + + CHANNEL + CANAL + + + Input controller + Entrada do controlador + + + CONTROLLER + CONTROLADOR + + + Input channel + Canal de entrada + + + Connection Settings + Configuração das Conexões + + + MIDI-devices to receive MIDI-events from + Dispositivos MIDI para receber eventos MIDI de + + + MAPPING FUNCTION + MAPEAR FUNÇÃO + + + + ControllerRackView + + Add + Adicionar + + + Confirm Delete + Confirmação para Apagar + + + Confirm delete? There are existing connection(s) associted with this controller. There is no way to undo. + Posso mesmo apagar? Há uma ou mais conexões associadas a este controlador. Não há como voltar depois. + + + Controller Rack + Estante de Controladores + + + + ControllerView + + &Help + Aj&uda + + + Controls + Controles + + + Enter the new name for this controller + Adicione um novo nome para este controlador + + + Rename controller + Renomear controlador + + + 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. + + + &Remove this plugin + &Remova este plugin + + + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + 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 + + + + Effect + + Gate + Portal + + + Decay + Decaimento + + + Effect enabled + Efeito ativado + + + Wet/Dry mix + Mix Processada/Limpa + + + + EffectChain + + Effects enabled + Efeitos ativados + + + + EffectRackView + + Add effect + Adicionar Efeito + + + EFFECTS CHAIN + CADEIA DE EFEITOS + + + + EffectSelectDialog + + Add effect + Adicionar Efeito + + + Plugin description + Descrição do plugin + + + + EffectView + + W/D + P/L + + + GATE + PORTAL + + + &Help + Aj&uda + + + DECAY + DEC + + + Gate: + Portal: + + + Time: + Tempo: + + + 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. + + + Wet Level: + Nível de Processamento: + + + 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). + + + On/Off + Liga/Desliga + + + Controls + Controles + + + Move &up + Para &Cima + + + Move &down + Para &Baixo + + + Toggles the effect on or off. + Mantém o efeito ligado ou desligado. + + + 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. + + + 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. + + + &Remove this plugin + &Remover este plugin + + + + EnvelopeAndLfoParameters + + Hold + Espera + + + Decay + Decaimento + + + LFO Modulation + LFO - Modulação + + + LFO speed + LFO - Velocidade + + + Freq x 100 + Freq x 100 + + + Attack + Ataque + + + LFO Attack + LFO - Ataque + + + Predelay + Pré-atraso + + + Release + Relaxamento + + + Sustain + Sustentação + + + Modulation + Modulação + + + LFO Wave Shape + LFO - Forma de Onda + + + LFO Predelay + LFO - Pré-atraso + + + Modulate Env-Amount + Modular Tanto-de-Envelope + + + + EnvelopeAndLfoView + + AMT + QNT + + + ATT + ATQ + + + DEC + DEC + + + DEL + ATRASO + + + REL + REL + + + SPD + VEL + + + HOLD + DURAR + + + Hint + Sugestão + + + SUST + SUST + + + Hold: + Duração: + + + 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 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. + + + multiply LFO-frequency by 100 + Multiplica a frequência do LFO por 100 + + + 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. + + + 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. + + + ms/LFO: + ms/LFO: + + + 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. + + + 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. + + + 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. + + + Click here to make the envelope-amount controlled by this LFO. + Clique aqui para que a quantidade do envelope seja controlada por este LFO. + + + 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. + + + Click here for a sine-wave. + Clique aqui para usar uma onda senoidal. + + + LFO speed: + Velocidade do LFO: + + + Attack: + Ataque: + + + LFO predelay: + Pré-atraso do LFO: + + + MODULATE ENV-AMOUNT + MODULAR QNT-ENV + + + Predelay: + Pré-atraso: + + + Modulation amount: + Quantidade de modulação: + + + 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. + + + Click here for a square-wave. + Clique aqui para usar uma onda quadrada. + + + Release: + Relaxamento: + + + Sustain: + Sustentaçã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- attack: + Ataque do LFO: + + + Click here for a triangle-wave. + Clique aqui para usar uma onda triangular. + + + Drag a sample from somewhere and drop it in this window. + Arraste uma amostra de qualquer lugar para esta janela. + + + Click here for a saw-wave for current. + Clique aqui para usar uma onda dente-de-serra. + + + 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. + + + 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. + + + control envelope-amount by this LFO + Controla a quantidade do envelope por este 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. + + + Click here for random wave. + + + + + ExportProjectDialog + + 2x + 2x + + + 4x + 4x + + + 8x + 8x + + + Sinc Best (very slow!) + Sincronização Melhor (muito lenta) + + + Start + Começar + + + Bitrate: + Velocidade em bits: + + + Samplerate: + Taxa de Amostragem: + + + 1x (None) + 1x (Nada) + + + Oversampling (use with care!): + Sobreamostragem (use com cuidado): + + + Cancel + Cancelar + + + Depth: + Precisão: + + + 64 KBit/s + 64 KBit/s + + + 128 KBit/s + 128 KBit/s + + + 192 KBit/s + 192 KBit/s + + + 160 KBit/s + 160 KBit/s + + + 256 KBit/s + 256 KBit/s + + + 320 KBit/s + 320 KBit/s + + + 32 Bit Float + 32 Bits Decimal + + + 192000 Hz + 192000 Hz + + + Zero Order Hold + Retentor de Ordem Zero + + + Output + Saída + + + Please note that not all of the parameters above apply for all file formats. + Por favor, note que os parâmetros acima se aplicam para todos os tipos de arquivos. + + + Interpolation: + Interpolação: + + + 44100 Hz + 44100 Hz + + + 16 Bit Integer + 16 Bits Inteiro + + + Export project + Renderizar projeto + + + Sinc Fastest + Sincronização Rápida + + + 96000 Hz + 96000 Hz + + + File format: + Formato do arquivo: + + + 48000 Hz + 48000 Hz + + + 88200 Hz + 88200 Hz + + + Sinc Medium (recommended) + Sincronização Média (recomendada) + + + Export as loop (remove end silence) + Renderizar como loop (remove silêncio no final) + + + Quality settings + Configurações de qualidade + + + + FileBrowser + + Browser + Pastas + + + + FileBrowserTreeWidget + + Send to active instrument-track + Envio para ativar pista de instrumento + + + Open in new instrument-track/Song-Editor + Abrir nova pista de instrumento / Editor de Arranjo + + + Open in new instrument-track/B+B Editor + Abrir nova pista de instrumento / Editor de Bases + + + Loading sample + Carregando amostra + + + Please wait, loading sample for preview... + Por favor espere, carregando a pré visualização da amostra... + + + --- Factory files --- + --- Arquivos de fábrica --- + + + + 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 + + + + &Help + Aj&uda + + + + FxMixer + + FX %1 + FX %1 + + + Master + Mestre + + + + FxMixerView + + Enter the new name for this FX channel + Insira o novo nome para este Canal de Efeitos + + + Rename FX channel + Renomear Canal de Efeitos + + + FX-Mixer + Mixer de Efeitos + + + + FxMixerView::FxChannelView + + FX Fader %1 + Fader de Efeito %1 + + + Mute + Mudo + + + Mute this FX channel + Deixar mudo este Canal de Efeitos + + + + FxRoute + + Amount to send from channel %1 to channel %2 + + + + + InstrumentFunctionArpeggio + + Up + Para Cima + + + Down + Para Baixo + + + Free + Livre + + + Sort + Tipo + + + Sync + Sincronização + + + Arpeggio direction + Direção do Arpejo + + + Up and down + Para cima e para baixo + + + Random + Aleatório + + + Arpeggio range + Escala de Arpejo + + + Arpeggio gate + Portal de Arpejo + + + Arpeggio time + Tempo de Arpejo + + + Arpeggio type + Tipo de Arpegio + + + Arpeggio mode + Modo do Arpejo + + + Arpeggio + Arpegio + + + Down and up + + + + + InstrumentFunctionArpeggioView + + % + % + + + ms + ms + + + GATE + PORTAL + + + TIME + TEMPO + + + Mode: + Modo: + + + RANGE + EXTENSÃO + + + Arpeggio range: + Extensão do 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. + + + 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. + + + Chord: + Acorde: + + + ARPEGGIO + ARPEGIO + + + Arpeggio gate: + Portal de arpejo: + + + Arpeggio time: + Tempo de arpejo: + + + 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. + + + 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. + + + octave(s) + oitava(s) + + + Direction: + Direção: + + + + InstrumentFunctionNoteStacking + + 6 + + + + 7 + 7 + + + 9 + 9 + + + 11 + 11 + + + 13 + 13 + + + m6 + m6 + + + m7 + m7 + + + m9 + m9 + + + 7#5 + 7(#5) + + + 7#9 + 7(#9) + + + 9#5 + (9, #5) + + + 7b5 + 7(b5) + + + 7b9 + 7(b9) + + + 9b5 + (9, b5) + + + aug + aum + + + m11 + m(11) + + + m13 + m(13) + + + tri + tríade + + + 13#9 + 13(#9) + + + 11b9 + 11(b9) + + + 13b9 + 13(b9) + + + 7#11 + 7(#11) + + + 9#11 + (9, #11) + + + 9b13 + (b9, 13) + + + Maj7 + 7M + + + Maj9 + 9M + + + add9 + (9) + + + m7b5 + m7(b5) + + + m7b9 + m7(b9) + + + m9b5 + m(9, b5) + + + sus2 + sus2 + + + sus4 + sus4 + + + m-Maj11 + m (11M) + + + m-Maj13 + m (13M) + + + Dominant bebop + Bebop dominante + + + 7#5#9 + 7(#5, #9) + + + 7#5b9 + 7(#5, b9) + + + 6add9 + 6(9) + + + 7b5b9 + 7(b5, b9) + + + 6sus4 + + + + 7sus4 + 7 sus4 + + + 9sus4 + 9 sus4 + + + Blues + Blues + + + Maj11 + Acorde de 11 + + + Maj13 + 13M + + + Majb5 + Maior b5 + + + Major + Maior + + + Minor + Menor + + + Diminished + Diminuta + + + madd9 + m(9) + + + minb5 + menor b5 + + + minor + menor + + + m9-Maj7 + m(9,7M) + + + m7add11 + m7(11) + + + m7add13 + m7(13) + + + Phrygolydian + Frígio + + + Whole tone + Tons inteiros + + + 13b5b9 + 13(b5, b9) + + + Locrian + Lócrio + + + Maj7#11 + 7M(#11) + + + Maj9#11 + 9M(#11) + + + 7add11 + 7(11) + + + 7add13 + 7(13) + + + Major bebop + Bebop maior + + + Arabic + Ãrabe + + + Chords + Acordes + + + Dorian + Dório + + + Hungarian minor + Húngara menor + + + Maj7#5 + 7M(#5) + + + Maj9#5 + 9M(#5) + + + Maj7b5 + 7M(b5) + + + Lydian + Lídio + + + Chord range + Extensão do acorde + + + Mixolydian + Mixolídio + + + Melodic minor + Menor Melódica + + + m-Maj7 + m-7M + + + Jap in sen + Insen Japonesa + + + m6add9 + m6(9) + + + Neopolitan minor + Neopolitana menor + + + octave + oitava + + + Neopolitan + Napolitana + + + Aeolian + Eólio + + + Maj9sus4 + 9M sus4 + + + Chord type + Tipo de acorde + + + augsus4 + aum sus4 + + + Major pentatonic + Pentatônica maior + + + Minor pentatonic + Pentatônica menor + + + m-Maj7add11 + m-7M(11) + + + m-Maj7add13 + m-7M(13) + + + Maj7add13 + 7M(13) + + + Harmonic minor + Menor Harmônica + + + Enigmatic + Enigmática + + + Chromatic + + + + Half-Whole Diminished + + + + 5 + 8x {5?} + + + + InstrumentFunctionNoteStackingView + + RANGE + EXTENSÃO + + + Chord range: + Extensão do acorde: + + + Chord: + Acorde: + + + 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 + + + octave(s) + oitava(s) + + + + InstrumentMidiIOView + + NOTE + NOTA + + + PROGRAM + PROGRAMA + + + MIDI devices to send MIDI events to + Dispositivos MIDI para mandar eventos MIDI para + + + CHANNEL + CANAL + + + ENABLE MIDI OUTPUT + HABILITAR SAÃDA MIDI + + + MIDI devices to receive MIDI events from + Dispositivos MIDI para receber eventos MIDI de + + + VELOCITY + INTENSIDADE + + + ENABLE MIDI INPUT + HABILITAR ENTRADA MIDI + + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + + + + InstrumentSoundShaping + + Moog + Moog + + + RESO + RESS + + + Notch + Vale + + + BandPass czpg + Passa Banda czpg + + + RC BandPass 24dB + RC PassaBanda 24dB + + + RC BandPass 12dB + RC PassaBanda 12dB + + + LowPass + Passa Baixa + + + 2x LowPass + 2x Passa Baixa + + + CUTOFF + CORTE + + + RC HighPass 24dB + RC PassaAlta 24dB + + + RC HighPass 12dB + RC PassaAlta 12dB + + + HiPass + Passa Alta + + + VOLUME + VOLUME + + + Volume + Volume + + + Vocal Formant Filter + Filtro de Formante Vocal + + + Allpass + Passa todas + + + Cutoff frequency + Frequência de corte + + + Envelopes/LFOs + Envelopes/LFOs + + + Q/Resonance + Q/Ressonância + + + Resonance + Ressonância + + + Filter type + Tipo de filtro + + + BandPass csg + Passa Banda csg + + + RC LowPass 24dB + RC PassaBaixa 24dB + + + RC LowPass 12dB + RC PassaBaixa 12dB + + + + InstrumentSoundShapingView + + Hz + Hz + + + FREQ + FREQ + + + RESO + RESS + + + 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...! + + + cutoff frequency: + frequência de corte: + + + FILTER + FILTRO + + + TARGET + OBJETO + + + 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. + + + 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... + + + 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. + + + Envelopes, LFOs and filters are not supported by the current instrument. + + + + + InstrumentTrack + + Pitch + Altura + + + Volume + Volume + + + unnamed_track + pista_sem_nome + + + With this knob you can set the volume of the opened channel. + Com este botão você pode ajustar o volume do canal aberto. + + + Panning + Panorâmico + + + Base note + Nota base + + + FX channel + Canal de Efeitos + + + Pitch range + Extensão + + + Default preset + Pré configuração padrão + + + + InstrumentTrackView + + PAN + PAN + + + VOL + VOL + + + MIDI + MIDI + + + Input + Entradas + + + Output + Saídas + + + Volume + Volume + + + Panning + Panorâmico + + + Panning: + Panorâmico: + + + Volume: + Volume: + + + + InstrumentTrackWindow + + FX + EFEITOS + + + PAN + PAN + + + VOL + VOL + + + FUNC + RECURSOS + + + MIDI + MIDI + + + PITCH + ALTURA + + + RANGE + EXTENSÃO + + + Pitch + Altura + + + cents + centésimos + + + GENERAL SETTINGS + AJUSTES GERAIS + + + PLUGIN + PLUGIN + + + Pitch: + Altura: + + + Panning + Panorâmico + + + Save preset + Salvar pré definição + + + Panning: + Panorâmico: + + + FX channel + Canal de Efeitos + + + ENV/LFO + ENV/LFO + + + XML preset file (*.xpf) + Arquivo de pré definições XML (*.xpf) + + + Volume: + Volume: + + + Pitch range (semitones) + Extensão (semitons) + + + Instrument volume + Volume do instrumento + + + 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. + + + + + LadspaControl + + Link channels + Conectar canais + + + + LadspaControlDialog + + Link Channels + Conectar Canais + + + Channel + Canal + + + + LadspaControlView + + Sorry, no help available. + Desculpe, ajuda indisponível... :(. + + + Value: + Valor: + + + Link channels + Conectar canais + + + + LadspaEffect + + Effect + Efeito + + + Unknown LADSPA plugin %1 requested. + Plugin LADSPA %1 desconhecido requisitado. + + + + LcdSpinBox + + Please enter a new value between %1 and %2: + Por favor entre com um novo valor entre %1 e %2: + + + + LfoController + + LFO Controller + Controlador de LFO + + + Oscillator phase + Fase do oscilador + + + Oscillator speed + Velocidade do oscilador + + + Oscillator amount + Quantidade do oscilador + + + Oscillator waveform + Forma de onda do oscilador + + + Base value + Valor base + + + Frequency Multiplier + Multiplicador de frequência + + + + LfoControllerDialog + + AMT + QNT + + + LFO + LFO + + + PHS + DFS + + + SPD + VEL + + + BASE + CENTRO + + + 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). + + + LFO Controller + Controlador de LFO + + + Click here for an exponential wave. + Clique aqui para usar uma onda exponencial. + + + Phase offset: + Defasamento: + + + Click here for a saw-wave. + Clique aqui para usar uma onda dente-de-serra. + + + Click here for white-noise. + Clique aqui para usar um ruído branco. + + + LFO-speed: + LFO - Velocidade: + + + Base amount: + Ponto de Referência: + + + Click here for a sine-wave. + Clique aqui para usar uma onda senoidal. + + + 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. + + + degrees + graus + + + 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. + + + 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. + + + Modulation amount: + Quantidade de modulação: + + + Click here for a square-wave. + Clique aqui para usar uma onda quadrada. + + + 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 a moog saw-wave. + Clique aqui para usar uma onda dente-de-serra moog. + + + Click here for a triangle-wave. + Clique aqui para usar uma onda triangular. + + + + MainWindow + + &New + &Novo + + + Help + Ajuda + + + &Edit + &Editar + + + &Help + Aj&uda + + + &Quit + Sai&r + + + &Save + &Salvar + + + About + Sobre + + + Show/hide Song-Editor + Mostrar/esconder Editor de Arranjo + + + Configuration file + Arquivo de configuração + + + What's this? + O que é isso? + + + Error while parsing configuration file at line %1:%2: %3 + Erro ao analisar arquivo de configuração na linha %1:%2: %3 + + + LMMS %1 + LMMS %1 + + + Show/hide FX Mixer + Mostrar/esconder Mixer de Efeitos + + + Open existing project + Abrir projeto existente + + + E&xport tracks... + Re&nderizar pistas... + + + Show/hide Piano-Roll + Mostrar/esconder Editor de Notas MIDI + + + Save project + Salvar projeto + + + &Tools + &Ferramentas + + + Save &As... + Salvar &como... + + + Open project + Abrir projeto + + + LMMS (*.mmp *.mmpz) + LMMS (*.mmp *.mmpz) + + + Save as new &version + Salvar como nova &versão + + + 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. + + + Online help + Ajuda Online + + + Show/hide project notes + Mostrar/esconder comentários do projeto + + + Create new project from template + Criar novo projeto a partir de um modelo + + + The current project was modified since last saving. Do you want to save it now? + O projeto atual foi modificado. Quer salvá-lo agora? + + + Create new project + Criar novo 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. + + + My home + Minha pasta + + + 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. + + + 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. + + + Untitled + Sem_nome + + + Recently opened projects + Arquivos usados recentemente + + + My computer + Meu computador + + + &Open... + &Abrir... + + + Help not available + Ajuda não disponível + + + Save current project + Salvar projeto atual + + + Show/hide Automation Editor + Mostrar/esconder Editor de Automação + + + Recently opened project + Projetos usados recentemente + + + 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. + + + Import... + Importar... + + + E&xport... + &Renderizar... + + + My presets + Minhas pré definições + + + &Project + &Projeto + + + Could not save config-file + O arquivo de configuração não pode ser salvo + + + Working directory + Pasta de trabalho + + + Export current project + Exportar projeto atual + + + My projects + Meus projetos + + + My samples + Minhas amostras + + + 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. + + + Version %1 + Versão %1 + + + 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. + O arquivo de configuração %1 não pode ser salvo. Provavelmente voc6e não tem permissão de escrita para este arquivo. +Por favor certifique-se que você tem permissão de escrita para este arquivo e tente novamente. + + + Project recovery + Recuperação de projeto + + + Settings + Opções + + + Project not saved + Projeto não salvo + + + The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. + A pasta de trabalho do LMMS %1 não existe. Posso criá-la? Você pode mudá-la depois indo em Editar -> Opções. + + + Show/hide Beat+Bassline Editor + Mostrar/esconder Editor de Bases + + + Root directory + Diretório raiz + + + It looks like the last session did not end properly. Do you want to recover the project of this session? + Parece que a última sessão não foi encerrada corretamente. Você quer recuperar o projeto da última sessão? + + + 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. + + + Show/hide controller rack + Mostrar/esconder a Estante de Controladorer + + + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + + + + + MeterDialog + + Meter Denominator + Denominador Métrico + + + Meter Numerator + Numerador Métrico + + + TIME SIG + COMPASSO + + + + MeterModel + + Numerator + Numerador + + + Denominator + Denominador + + + + MidiAlsaRaw::setupWidget + + DEVICE + DISPOSITIVO + + + + MidiAlsaSeq::setupWidget + + DEVICE + DISPOSITIVO + + + + MidiController + + unnamed_midi_controller + controlador-midi-sem-nome + + + MIDI Controller + Controlador MIDI + + + + MidiImport + + 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. + + + Setup incomplete + Configuração incompleta + + + + MidiOss::setupWidget + + DEVICE + DISPOSITIVO + + + + MidiPort + + Receive MIDI-events + Receber eventos MIDI + + + Output MIDI program + Saída do programa MIDI + + + Output channel + Canal de saída + + + Send MIDI-events + Enviar eventos MIDI + + + Output controller + Saída do controlador + + + Input controller + Entrada do controlador + + + Input channel + Canal de entrada + + + Fixed output note + Nota fixa na saída + + + Fixed input velocity + Intensidade fixa de entrada + + + Fixed output velocity + Intensidade fixa de saída + + + 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 + + + + + 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. + + + + + 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 + Volume Final + + + Vibrato + + + + + OscillatorObject + + Osc %1 fine detuning right + Ajuste fino direito %1 + + + Osc %1 volume + Volume Osc %1 + + + Osc %1 phase-offset + Defasamento Osc %1 + + + Osc %1 coarse detuning + Ajuste bruto Osc %1 + + + Modulation type %1 + Tipo de modulação %1 + + + Osc %1 stereo phase-detuning + Ajuste de fase estéreo Osc %1 + + + Osc %1 waveform + Forma de Onda Osc %1 + + + Osc %1 fine detuning left + Ajuste fino esquerdo Osc %1 + + + Osc %1 wave shape + Formato de onda Osc %1 + + + Osc %1 panning + Panorâmico Osc %1 + + + Osc %1 harmonic + + + + + PatmanView + + Loop + Loop + + + Tune + Afinar + + + Patch-Files (*.pat) + Arquivos de Patch (*.pat) + + + Open other patch + Abrir outro patch + + + Tune mode + Modo de afinação + + + Open patch file + Abrir arquivo de patch + + + Loop mode + Modo de loop + + + No file selected + Nenhum arquivo selecionado + + + 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. + + + 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. + + + 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. + + + + PatternView + + Open in piano-roll + Abrir no Editor de Notas MIDI + + + Remove steps + Remover passo + + + Clear all notes + Limpar todas as notas + + + Add steps + Adicionar passo + + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + duplo clique para abrir esta sequência no Editor de notas MDll +use a roda do mouse para midificar o volume de cada passo + + + Reset name + Restaurar nome + + + Change name + Mudar nome + + + + PeakController + + Peak Controller Bug + Problema no Controlador de Picos + + + Peak Controller + 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 + + AMNT + QNTD + + + BASE + BASE + + + ATCK + ATQU + + + DCAY + DCAI + + + MULT + MULT + + + Amount Multiplicator: + Multiplicador de quantidade: + + + Base amount: + Quantidade de base: + + + Attack: + Ataque: + + + Modulation amount: + Quantidade de modulação: + + + Release: + Relaxamento: + + + + PeakControllerEffectControls + + Amount Multiplicator + Multiplicador de quantidade + + + Attack + Ataque + + + Modulation amount + Quantidade de modulação + + + Abs Value + Valor Abs + + + Mute output + Deixar saída muda + + + Base value + Valor base + + + Release + Relaxamento + + + + PianoRoll + + Detune mode (Shift+T) + Automação para Afinação (Shift+T) + + + Cut selected notes (Ctrl+X) + Recortar notas selecionadas (Ctrl+X) + + + Draw mode (Shift+D) + Lápis (Shift+D) + + + No chord + Sem acorde + + + No scale + Sem escala + + + 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. + Clique aqui e a automação para afinação será ativada. Nela você pode clicar na nota para abrir sua automação de afinação. Você pode utilizar esta ferramenta para fazer glissandos de uma altura para outra. + + + 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. + Clique aqui para gravar notas a partir de um dispositivo MIDI ou de um piano virtual de teste de acordo com o canal (janela) do programa correspondente. Quando estiver gravando, todas as notas que você tocar serão escritas nesta sequência e você ainda pode ouvir a música feita no editor de arranjo ou no editor de batida tocando atrás. + + + Click here to play the current pattern. This is useful while editing it. The pattern is automatically looped when its end is reached. + Clique aqui para tocar a sequência atual. Isto é útil enquanto se edita. A sequência irá entrar em loop automaticamente quando chegar ao fim. + + + 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 Ctrl to temporarily go into select mode. + Clique aqui e o lápis será ativado. O lápis serve para adicionar ou mover valores simples. Ele estará ativado previamente e será utilizado a maior parte do tempo. Você pode usar 'Shift+D' no teclado para ativar o lápis. + + + Note Panning + Panorâmico da nota + + + Erase mode (Shift+E) + Borracha (Shift+E) + + + 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 as notas selecionadas serão cortadas para dentro da área de transferência. Você pode colá-las em qualquer lugar de qualquer sequência usando o botão de colar. + + + Click here and the notes from the clipboard will be pasted at the first visible measure. + Clique aqui e as notas na área de transferência serão coladas no primeira grade visível. + + + Note Volume + Volume da nota + + + 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. + Clique aqui e a borracha será ativada. A borracha serve para apagar valores simples. Você pode usar 'Shif+E' no teclado para utilizar a borracha. + + + Piano-Roll - no pattern + Editor de Notas MIDI - nenhuma sequência + + + Mark/unmark current semitone + Marcar/desmarcar o semitom atual + + + Click here to stop playback of current pattern. + Clique aqui para parar a reprodução da sequência atual. + + + 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. + Clique aqui para gravar notas a partir de um dispositivo MIDI ou de um piano virtual de teste de acordo com o canal (janela) do programa correspondente. Quando estiver gravando, todas as notas que você tocar serão escritas nesta sequência e você ainda pode editá-las depois. + + + Play/pause current pattern (Space) + Tocar/pausar sequência atual (Espaço) + + + Unmark all + Desmarcar tudo + + + Mark current scale + Marcar a escala atual + + + Mark current chord + Marcar o acorde atual + + + Select mode (Shift+S) + Modo de Seleção (Shift+S) + + + Last note + Última nota + + + Note lock + Travar nota + + + Piano-Roll - %1 + Editor de Notas MIDI - %1 + + + Paste notes from clipboard (Ctrl+V) + Colar notas da área de transferência (Ctrl+V) + + + Record notes from MIDI-device/channel-piano + Gravar notas do dispositivo MIDI ou Editor de Notas MIDI + + + Copy selected notes (Ctrl+C) + Copiar notas selecionadas (Ctrl+C) + + + Stop playing of current pattern (Space) + Parar de tocar a sequência atual (Espaço) + + + Click here and select mode will be activated. In this mode you can select notes. Alternatively, you can hold Ctrl in draw mode to temporarily use select mode. + Clique aqui e modo de seleção será ativado. A borracha serve para apagar valores simples. Você pode usar 'Shif+E' no teclado para utilizar a borracha.A borracha serve para apagar valores simples. Você pode usar 'Shif+E' no teclado para utilizar a borracha. Este modo torna possível a seleção de notas. Alternativamente você pode pressionar Crtl enquanto estiver usando o lápis para utilizar o modo de seleção temporariamente. + + + Please open a pattern by double-clicking on it! + Por favor abra um a sequência com um duplo clique sobre ela! + + + 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 as notas selecionadas serão copiadas para a área de transferência. Você pode colá-las em qualquer lugar de qualquer sequência clicando no botão de colar. + + + Record notes from MIDI-device/channel-piano while playing song or BB track + Gravar notas a partir do dispositivo MIDI ou do Editor de Notas MIDI enquanto toca o Arranjo ou uma Base + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + Por favor entre com um novo valor entre %1 e %2: + + + + PianoView + + Base note + Nota base + + + + Plugin + + Error while loading plugin + Erro ao carregar plugin + + + Failed to load plugin "%1"! + Falha ao carregar o plugin "%1"! + + + 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" + + + LMMS plugin %1 does not have a plugin descriptor named %2! + + + + + ProjectRenderer + + Compressed OGG-File (*.ogg) + Arquivo OGG compactado (*.ogg) + + + WAV-File (*.wav) + Arquivo WAV (*.wav) + + + + 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 + + No + Não + + + Yes + Sim + + + Maker: + Marcador: + + + File: + Arquivo: + + + Name: + Nome: + + + Copyright: + + + + Channels In: + Canais de Entrada: + + + In Place Broken: + Com Local Quebrado: + + + Channels Out: + Canais de Saída: + + + Requires Real Time: + Requer Processamento em Tempo Real: + + + Real Time Capable: + Capacitado para Processamento em Tempo Real: + + + File: %1 + + + + + SampleBuffer + + DrumSynth-Files (*.ds) + Arquivos DrumSynth (*.ds) + + + AU-Files (*.au) + Arquivos AU (*.au) + + + Wave-Files (*.wav) + Arquivos Wave (*.wav) + + + Open audio file + Abrir arquivo de áudio + + + AIFF-Files (*.aif *.aiff) + Arquivos AIFF (*.aif *.aiff) + + + RAW-Files (*.raw) + Arquivos RAW (*.raw) + + + OGG-Files (*.ogg) + Arquivos OGG (*.ogg) + + + VOC-Files (*.voc) + Arquivos VOC (*.voc) + + + FLAC-Files (*.flac) + Arquivos FLAC (*.flac) + + + SPEEX-Files (*.spx) + Arquivos SPEEX (*.spx) + + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + + + + SampleTCOView + + Cut + Recortar + + + Copy + Copiar + + + Paste + Colar + + + Delete (middle mousebutton) + Excluir (botão do meio do mouse) + + + Set/clear record + Armar/desarmar gravação + + + double-click to select sample + Duplo clique para selecionar amostra + + + Mute/unmute (<Ctrl> + middle click) + Mudo/Não Mudo (<Ctrl> + middle click) + + + + SampleTrack + + Sample track + Ãudio Amostras + + + Volume + Volume + + + + SampleTrackView + + VOL + VOL + + + Track volume + Volume da pista + + + Channel volume: + Volume do canal: + + + + SongEditor + + Add beat/bassline + Adicionar Base + + + Tempo + Andamento + + + Record samples from Audio-device + Gravar amostras do Dispositivo de Ãudio + + + Add automation-track + Adicionar pista de automação + + + Master pitch + Altura Final + + + Add sample-track + Adicionar pista de amostra + + + Song-Editor + Editor de Arranjo + + + TEMPO/BPM + ANDAMENTO/BPM + + + master pitch + altura final + + + Record samples from Audio-device while playing song or BB track + Gravar amostras a partir do dispositivo de Ãudio enquanto reproduz o arranjo ou base + + + master volume + volume final + + + Master volume + Volume Final + + + Error in file + Erro no arquivo + + + Could not open file + Não é possível abrir o arquivo + + + Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. + Clique aqui se você quer parar de tocar a música. O marcador de posição (verde), será ajustado para o início 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. + + + Draw mode + Lápis + + + Stop song (Space) + Parar música (Espaço) + + + Play song (Space) + Tocar música (Espaço) + + + Edit mode (select and move) + Modo de Edição (seleciona e move) + + + Could not write file + Não é possivel salvar o arquivo + + + Value: %1% + Valor: %1% + + + High quality mode + Modo de alta qualidade + + + 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. + + + 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. + + + Value: %1 semitones + Valor: %1 semitons + + + 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. + Clique aqui se você quer tocar toda a música. A música iniciará no posição do marcador (verde). Você pode move-lo enquanto estiver tocando. + + + 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 of song + andamento da música + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + Espectro linear + + + Linear Y axis + Linear no eixo Y + + + + SpectrumAnalyzerControls + + Linear spectrum + Espectro linear + + + Linear Y axis + Linear no eixo Y + + + Channel mode + Modo de Canal + + + + TempoSyncKnob + + &Help + Aj&uda + + + Synced to Quarter Note + Sincronizado com 1/4 de Nota + + + Whole note + Nota inteira + + + Half note + Meia nota + + + Synced to Eight Beats + Sincronizado com Oito Batidas + + + 32nd note + 32ª nota + + + No Sync + Sem Sincronia + + + Synced to 16th Note + Sincronizado com a 16ª Nota + + + Eight beats + Oito batidas + + + Tempo Sync + Sincronia + + + Synced to 32nd Note + Sincronizado com a 32ª Nota + + + Synced to Whole Note + Sincronizado com a Nota Inteira + + + Synced to 8th Note + Sincronizado com a 8ª Nota + + + Quarter note + 1/4 de nota + + + 8th note + 8ª nota + + + 16th note + 16ª nota + + + Custom... + Personalizado... + + + Custom + Personalizado + + + Synced to Half Note + Sincronizado com Meia Nota + + + + TimeDisplayWidget + + click to change time units + clique para mudar as unidades de tempo + + + + TrackContainer + + Couldn't open file + Não é possível abrir o arquivo + + + Loading project... + Carregando projeto... + + + Importing FLP-file... + Importando arquivo FLP... + + + Cancel + Cancelar + + + 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 %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! + + + Couldn't import file + não foi possivel importar arquivo + + + Importing MIDI-file... + Importando arquivo MIDI... + + + Please wait... + Por favor aguarde... + + + + TripleOscillatorView + + Mix output of oscillator 1 & 2 + Misture as saídas do oscilador 1 e 2 + + + Mix output of oscillator 2 & 3 + Misture as saídas do oscilador 2 e 3 + + + cents + centésimos + + + Osc %1 fine detuning left: + Ajuste fino esquerdo Osc %1: + + + With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) 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 12 semitons (1 oitava) para cima e para baixo. Isto é útil para criar sons com um acorde. + + + Use phase modulation for modulating oscillator 3 with oscillator 2 + Use o modulador de fase para modular o oscilador 3 com o oscilador 2 + + + Use an exponential wave for current oscillator. + Use uma onda exponencial no oscilador atual. + + + Osc %1 panning: + Panorâmico Osc %1: + + + Use a square-wave for current oscillator. + Use uma onda quadrada no oscilador atual. + + + Osc %1 stereo phase-detuning: + Defasamento estéreo Osc %1: + + + semitones + semitons + + + 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 frequency modulation for modulating oscillator 2 with oscillator 1 + Use o modulador de frequência para modular o oscilador 2 com o oscilador 1 + + + Use phase modulation for modulating oscillator 2 with oscillator 1 + Use o modulador de fase para modular o oscilador 2 com o oscilador 1 + + + Osc %1 volume: + Volume 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. + + + 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: + + + Use amplitude modulation for modulating oscillator 2 with oscillator 1 + Use o modulador de amplitude para modular o oscilador 2 com o oscilador 1 + + + Synchronize oscillator 2 with oscillator 3 + Sincronize o oscilador 2 com o oscilador 3 + + + Use a saw-wave for current oscillator. + Use uma onda dente de serra no oscilador atual. + + + Use white-noise for current oscillator. + Use ruído branco no oscilador atual. + + + Use frequency modulation for modulating oscillator 3 with oscillator 2 + Use o modulador de frequência para modular o oscilador 3 com o oscilador 2 + + + 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. + + + Use a moog-like saw-wave for current oscillator. + Use uma onda dente de serra moog no oscilador atual. + + + Osc %1 coarse detuning: + Ajuste bruto Osc %1: + + + 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 phase-offset: + Defasamento Osc %1: + + + degrees + graus + + + 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'. + + + Use amplitude modulation for modulating oscillator 3 with oscillator 2 + Use o modulador de amplitude para modular o oscilador 3 com o oscilador 2 + + + Use a sine-wave for current oscillator. + Use uma onda senoidal no oscilador atual. + + + Synchronize oscillator 1 with oscillator 2 + Sincronize o oscilador 1 com o oscilador 2 + + + Use a user-defined waveform for current oscillator. + Use uma forma de onda definida pelo usuário no oscilador atual. + + + Use a triangle-wave for current oscillator. + Use uma onda triangular no oscilador atual. + + + + Ui + + Contributors ordered by number of commits: + Colaboradores ordenados por ordem de contribuição: + + + Involved + Envolvidos + + + + VersionedSaveDialog + + Increment version number + Incrementar número da versão + + + Decrement version number + Decrementar número da versão + + + + VestigeInstrumentView + + by + por + + + Open VST-plugin preset + Abrir pré definição de plugin VST + + + - VST plugin control + - Controle de plugins VST + + + 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. + + + 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. + + + Previous (-) + Anterior (-) + + + Open other VST-plugin + Abrir outro plugin VST + + + Preset + Pré definição + + + Click here, if you want to control VST-plugin from host. + Clique aqui se você precisa controlar o plugin VST por outro host. + + + EXE-files (*.exe) + Arquivos EXE (*.exe) + + + DLL-files (*.dll) + Arquivos DLL (*.dll) + + + 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. + + + Show/hide GUI + Mostrar/esconder GUI + + + Save preset + Salvar pré definição + + + Open VST-plugin + Abrir plugin VST + + + Control VST-plugin from LMMS host + Controlar plugin VST a partir do host LMMS + + + Next (+) + Próximo (+) + + + 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. + + + Turn off all notes + Desligar todas as notas + + + 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. + + + 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. + + + No VST-plugin loaded + Nenhum plugin VST carregado + + + + VstEffectControlDialog + + Open VST-plugin preset + Abrir pré definição de plugin VST + + + 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. + + + 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. + + + Previous (-) + Anterior (-) + + + Click here, if you want to control VST-plugin from host. + Clique aqui se você deseja controlar o plugin VST por outro host. + + + Show/hide + Mostrar/esconder + + + Save preset + Salvar pré definição + + + Effect by: + Efeito por: + + + Control VST-plugin from LMMS host + Controlar plugin VST a partir do host LMMS + + + Next (+) + Próximo (+) + + + &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<br /> + + + + 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. + + + 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. + + + + VstPlugin + + " + + + + ' + + + + .FXB + + + + .FXP + + + + .fxb + + + + .fxp + + + + Loading plugin + Carregando plugin + + + Save Preset + Salvar pré definição + + + Open Preset + Abrir pré definição + + + Vst Plugin Preset (*.fxp *.fxb) + Pré definição de Plugin VST (*.fxp *.fxb) + + + : default + : padrão + + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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. + 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 + + + + 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 + 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 + + + + + ZynAddSubFxInstrument + + Resonance Center Frequency + Frequência Central de Ressonância + + + Filter Resonance + Ressonância do Filtro + + + Bandwidth + Largura da Banda + + + Filter Frequency + Frequência do Filtro + + + Resonance Bandwidth + Banda de Ressonância + + + Forward MIDI Control Change Events + Próximo evento de mudança de controle MIDI + + + Portamento + + + + FM Gain + Ganho da FM + + + + ZynAddSubFxView + + BW + LBnd + + + RES + + + + FREQ + + + + PORT + + + + 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. + + + Filter Frequency: + Frequência do Filtro: + + + RES CF + RES FC + + + RES BW + RES Bnd + + + Portamento: + + + + Resonance center frequency: + Frequência Central de Ressonância: + + + Filter Resonance: + Ressonância do Filtro: + + + FM GAIN + GANHO FM + + + Bandwidth: + Largura da Banda: + + + Forward MIDI Control Changes + Próximo evento de mudança de controle MIDI + + + Resonance bandwidth: + Banda de Ressonância: + + + FM Gain: + Ganho da FM: + + + Show GUI + Mostrar GUI + + + + audioFileProcessor + + Amplify + Amplificar + + + Stutter + Gaguejar + + + Reverse sample + Amostra reversa + + + End of sample + Fim da amostra + + + Start of sample + Início da amostra + + + Loopback point + + + + Loop mode + Modo de loop + + + Interpolation mode + + + + None + + + + Linear + + + + Sinc + + + + + bbEditor + + Add beat/bassline + Adicionar base + + + Click here to stop playing of current beat/bassline. + Clique aqui para parar a base atual. + + + Add automation-track + Adicionar pista de automação + + + Stop playback of current beat/bassline (Space) + Parar reprodução da base atual (Espaço) + + + Remove steps + Remover passos + + + Beat+Bassline Editor + Editor de Bases + + + Add steps + Adicionar passos + + + Click here to play the current beat/bassline. The beat/bassline is automatically looped when its end is reached. + Clique aqui se você quiser tocar a base atual. A base entra em loop automaticamente quando chega ao fim. + + + Play/pause current beat/bassline (Space) + Tocar/pausar a base atual (Espaço) + + + + bbTCOView + + Open in Beat+Bassline-Editor + Abrir no editor de Bases + + + Change color + Mudar cor + + + Reset name + Restaurar nome + + + Change name + Mudar nome + + + Reset color to default + + + + + bbTrack + + Beat/Bassline %1 + Base %1 + + + Clone of %1 + Clone de %1 + + + + bitInvader + + Samplelength + Tamanho de amostra + + + + bitInvaderView + + 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. + + + White noise wave + Ruído branco + + + Click here to smooth waveform. + Clique aqui para suavizar a forma de onda. + + + Click here for a saw-wave. + Clique aqui para usar uma onda dente de serra. + + + Sine wave + Onda senoidal + + + Click here for white-noise. + Clique aqui para usar um ruído branco. + + + Smooth + Suave + + + Interpolation + Interpolação + + + Square wave + Onda quadrada + + + Saw wave + Onda dente de serra + + + Normalize + Normalização + + + Click for a sine-wave. + Clique aqui para usar uma onda senoidal. + + + Triangle wave + Onda triangular + + + Click here for a square-wave. + Clique aqui para usar uma onda quadrada. + + + User defined wave + Onda definida pelo usuário + + + Click here for a triangle-wave. + Clique aqui para usar uma onda triangular. + + + Sample Length + Tamanho da Amostra + + + Click here for a user-defined shape. + Clique aqui para usar uma onda definida pelo usuário. + + + + 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 + + + + + exportProjectDialog + + Error + Erro + + + 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! + Não é possível abrir o arquivo %1 para gravação. +Por favor certifique-se que você tem permissão para gravação no arquivo e se o arquivo se encontra no diretório e tente novamente! + + + Error while determining file-encoder device. Please try to choose a different output format. + Erro ao determinar o dispositivo codificador de arquivo. Por favor tente um formato de saída diferente. + + + Rendering: %1% + Renderizando: %1% + + + Export project to %1 + Exportar projeto para %1 + + + + fader + + Please enter a new value between %1 and %2: + Por favor entre com um novo valor entre %1 e %2: + + + + graphModel + + Graph + Gráfico + + + + kickerInstrument + + Gain + Ganho + + + End frequency + Frequência final + + + Start frequency + Frequência de partida + + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + Ruído + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + + + + kickerInstrumentView + + Gain: + Ganho: + + + Start frequency: + Frequência de partida: + + + End frequency: + Frequência final: + + + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: + + + + + knob + + &Help + Aj&uda + + + Please enter a new value between -96.0 dBV and 6.0 dBV: + Por favor entre um novo valor entre -96.0 dBV e 6.0 dBV: + + + Please enter a new value between %1 and %2: + Por favor entre com um novo valor entre %1 e %2: + + + + ladspaBrowserView + + Type: + Tipo: + + + 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. + + + Analysis Tools + Ferramentas de Análise + + + Unavailable Effects + Efeitos Indisponíveis + + + Instruments + Instrumentos + + + Available Effects + Efeitos Disponíveis + + + Don't know + Sei lá.. + + + + ladspaDescription + + Plugins + Plugins + + + Description + Descrição + + + + ladspaPortDialog + + Yes + Sim + + + Name + Nome + + + Rate + Taxa + + + Type + Tipo + + + Audio + Ãudio + + + Float + Decimal + + + Input + Entradas + + + Ports + Portas + + + Integer + Inteiro + + + SR Dependent + Dependente de SR + + + Output + Saídas + + + Min < Default < Max + Min < Padrão < Máx + + + Direction + Direção + + + Logarithmic + Logarítmico + + + Control + Controle + + + Toggled + Alternado + + + + lb302Synth + + Dead + Morto + + + Slide + Gradual + + + VCF Envelope Mod + VCF - Modulação do Envelope + + + VCF Resonance + VCF - Ressonância + + + Accent + Realce + + + Slide Decay + Decaimento gradual + + + VCF Envelope Decay + VCF - Decaimento do Envelope + + + Waveform + Forma de onda + + + Distortion + Distorção + + + 24dB/oct Filter + Filtro 24dB/oct + + + VCF Cutoff Frequency + VCF - Frequência de corte + + + + lb302SynthView + + DIST: + + + + Click here for a square-wave with a rounded end. + Clique aqui para usar uma onda quadrada arredondada. + + + Slide Decay: + Decaimento gradual: + + + Click here for an exponential wave. + Clique aqui para usar uma onda exponencial. + + + White noise wave + Ruído branco + + + Click here for a saw-wave. + Clique aqui para usar uma onda dente de serra. + + + Sine wave + Onda senoidal + + + Click here for white-noise. + Clique aqui para usar um ruído branco. + + + Decay: + Decaimento: + + + Env Mod: + Mod Env: + + + Moog wave + Onda Moog + + + Resonance: + Ressonância: + + + Rounded square wave + Onda quadrada arredondada + + + Square wave + Onda quadrada + + + 303-es-que, 24dB/octave, 3 pole filter + 303-es-que, 24dB/octave, filtro 3 pole + + + Saw wave + Onda dente de serra + + + Click here for a moog-like wave. + Clique aqui para usar uma onda tipo moog. + + + Click for a sine-wave. + Clique aqui para usar uma onda senoidal. + + + Triangle wave + Onda triangular + + + Click here for a square-wave. + Clique aqui para usar uma onda quadrada. + + + Cutoff Freq: + Freq Corte: + + + Click here for a triangle-wave. + Clique aqui para usar uma onda triangular. + + + 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 + + Dead + Morto + + + Slide + Gradual + + + VCF Envelope Mod + VCF - Modulação do Envelope + + + VCF Resonance + VCF - Ressonância + + + Accent + Realce + + + Slide Decay + Decaimento gradual + + + VCF Envelope Decay + VCF - Decaimento do Envelope + + + Waveform + Forma de onda + + + Distortion + Distorção + + + 24dB/oct Filter + Filtro 24dB/oct + + + VCF Cutoff Frequency + VCF - Frequência de corte + + + + lb303SynthView + + DEC + DEC + + + CUT + CORTE + + + RES + RESS + + + DIST + DIST + + + WAVE + ONDA + + + DIST: + DISTORÇÃO: + + + SLIDE + GRADUAL + + + WAVE: + ONDA: + + + Slide Decay: + Decaimento gradual: + + + Decay: + Decaimento: + + + Env Mod: + Mod Env: + + + Resonance: + Ressonância: + + + 303-es-que, 24dB/octave, 3 pole filter + 303-es-que, 24dB/octave, filtro 3 pole + + + ENV MOD + MOD ENV + + + Cutoff Freq: + Freq Corte: + + + + malletsInstrument + + ADSR + ADSR + + + Reso + Resso + + + Agogo + + + + Beats + Batidas + + + Bowed + De Arco + + + Clump + + + + Glass + Taça + + + Speed + Velocidade + + + Wood1 + Madeira-1 + + + Wood2 + Madeira-2 + + + Vibrato Freq + Frequência do Vibrato + + + Vibrato Gain + Ganho do Vibrato + + + LFO Depth + LFO - Profundidade + + + Two Fixed + Duas Fixas + + + LFO Speed + LFO - Velocidade + + + Marimba + + + + Tibetan Bowl + Tigelas Tibetanas + + + Tuned Bar + Barra Afinada + + + Motion + Movimento + + + Spread + Propagação + + + Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! + Sua instalação Stk parece estar incompleta. Por favor certifique-se que o pacote Stk (Stk-package) esteja completamente instalado! + + + Position + Posição + + + Crossfade + Transição + + + Uniform Bar + Barra Uniforme + + + Vibraphone + Vibrafone + + + Hardness + Dificuldade + + + Pressure + Pressão + + + Modulator + Modulador + + + Missing files + Arquivos perdidos + + + Stick Mix + Percussa Mix + + + Tubular Bells + Sinos Tubulares + + + + malletsInstrumentView + + ADSR + + + + ADSR: + + + + Bowed + De Arco + + + Speed + Velocidade + + + LFO Depth + Prondudade do LFO + + + LFO Speed + LFO - Velocidade + + + Vib Gain: + Ganho Vibracional: + + + Vib Freq: + Frequência de Vibração: + + + Motion: + Movimento: + + + LFO Depth: + Profundidade do LFO: + + + Motion + Movimento + + + LFO Speed: + Velocidade do LFO: + + + Speed: + Velocidade: + + + Spread + Propagação + + + Position + Posição + + + Crossfade + Transição + + + Hardness + Dificuldade + + + Hardness: + Dificuldade: + + + Pressure + Pressão + + + Stick Mix: + Mistura da Percussão: + + + Position: + Posição: + + + Spread: + Propagação: + + + Crossfade: + Transição: + + + Instrument + Instrumento + + + Modulator + Modulador + + + Modulator: + Modulador: + + + Pressure: + Pressão: + + + Vibrato + + + + Vib Gain + Ganho Vibr + + + Vib Freq + Freq Vibr + + + Vibrato: + + + + Stick Mix + Percussa Mix + + + + manageVSTEffectView + + Close + Fechar + + + 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 VST effect knob-controller window. + Fechar janela de botões de controle do efeito VST. + + + - VST parameter control + - Controle de parâmetros de VST's + + + + manageVestigeInstrumentView + + - VST plugin control + - Controle de plugins VST + + + Close + Fechar + + + Close VST plugin knob-controller window. + Fechar janela de botões de controle do efeito 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. + + + + nineButtonSelector + + &Help + Aj&uda + + + + opl2instrument + + FM + + + + Patch + Programação + + + Op 1 Key Scaling Rate + Op 1 Mudança de Tom da Escala + + + Op 2 Key Scaling Rate + Op 2 Mudança de Tom da Escala + + + Op 1 Decay + Op 1 Decaimento + + + Op 1 Level + Op 1 Nível + + + Op 2 Decay + Op 2 Decaimento + + + Op 2 Level + Op 2 Nível + + + Op 1 Attack + Op 1 Ataque + + + Op 2 Attack + Op 2 Ataque + + + Op 1 Vibrato + + + + Op 2 Vibrato + + + + Tremolo Depth + Profundidade do Tremolo + + + Op 2 Frequency Multiple + Op 2 Múltiplo da frequência + + + Op 1 Frequency Multiple + Op 1 Múltiplo da frequência + + + Op 1 Feedback + Op 1 Resposta + + + Vibrato Depth + Profundidade do Vibrato + + + Op 1 Release + Op 1 Relaxamento + + + Op 2 Release + Op 2 Relaxamento + + + Op 1 Level Scaling + Op 1 Nível Escalar + + + Op 2 Level Scaling + Op 2 Nível Escalar + + + Op 2 Percussive Envelope + Op 2 Envelope Percussivo + + + Op 1 Percussive Envelope + Op 1 Envelope Percussivo + + + Op 2 Waveform + Op 2 Forma de Onda + + + Op 1 Waveform + Op 1 Forma de Onda + + + Op 2 Tremolo + Op 2 Relaxamento + + + Op 1 Tremolo + + + + Op 2 Sustain + Op 2 Sustentação + + + Op 1 Sustain + Op 1 Sustentação + + + + organicInstrument + + Volume + + + + Distortion + Distorção + + + + organicInstrumentView + + cents + centésimos + + + Osc %1 panning: + Panorâmico Osc %1: + + + Randomise + Aleatorizar + + + Osc %1 volume: + Volume Osc %1: + + + Distortion: + Distorção: + + + Volume: + + + + Osc %1 waveform: + Forma de Onda Osc %1: + + + 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: + + + + + papuInstrument + + Bass + Grave + + + Shift Register width + Desconsiderar Tamanho do registro + + + Sweep RtShift amount + Quantidade da varredura RtShift + + + Channel 1 volume + Canal 1 volume + + + Channel 4 volume + Canal 4 volume + + + Channel 3 volume + Canal 3 volume + + + Channel 2 volume + Canal 2 volume + + + Length of each step in sweep + Tamanho de cada passo na varredura + + + Left Output level + Nível de Saída Esquerdo + + + Sweep direction + Direção da varredura + + + Channel 4 to SO1 (Right) + Canal 4 para SO1 (Direita) + + + Channel 3 to SO1 (Right) + Canal 3 para SO1 (Direita) + + + Channel 2 to SO1 (Right) + Canal 2 para SO1 (Direita) + + + Channel 1 to SO1 (Right) + Canal 1 para SO1 (Direita) + + + Right Output level + Nível de Saída Direito + + + Treble + Agudo + + + Sweep time + Varredura temporal + + + Channel 4 to SO2 (Left) + Canal 4 para SO2 (Esquerda) + + + Channel 3 to SO2 (Left) + Canal 3 para SO2 (Esquerda) + + + Channel 2 to SO2 (Left) + Canal 2 para SO2 (Esquerda) + + + Channel 1 to SO2 (Left) + Canal 1 para SO2 (Esquerda) + + + Wave Pattern Duty + Trabalho da Frente de Onda + + + Volume sweep direction + Direção da varredura de volume + + + + papuInstrumentView + + Bass + Grave + + + Wave pattern duty + Trabalho da frente de onda + + + Bass: + Grave: + + + Shift Register Width + Desconsiderar Tamanho do registro + + + Wave Channel Volume + Canal da Onda - Volume + + + Sweep Time: + Varredura temporal: + + + Draw the wave here + Desenhe a onda aqui + + + Sweep RtShift amount + Quantidade da varredura RtShift + + + Channel1 to SO2 (Left) + Canal 1 para SO2 (Esquerda) + + + Channel3 to SO2 (Left) + Canal 3 para SO2 (Esquerda) + + + Channel2 to SO2 (Left) + Canal 2 para SO2 (Esquerda) + + + Channel4 to SO2 (Left) + Canal 4 para SO2 (Esquerda) + + + Length of each step in sweep + Tamanho de cada passo na varredura + + + Wave pattern duty: + Trabalho da Frente de Onda: + + + Wave Pattern + Frente de onda + + + SO1 Volume (Right): + SO1 Volume (Esquerdo): + + + Sweep Direction + Direção da varredura + + + The amount of increase or decrease in frequency + A quantidade de acréscimo e decréscimo em frequência + + + The delay between step change + O atraso entre cada passo de mudança + + + Treble + Agudo + + + Noise Channel Volume: + Canal de Ruído - Volume: + + + 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. + + + Sweep RtShift amount: + Quantidade da varredura RtShift: + + + Channel1 to SO1 (Right) + Canal 1 para SO1 (Direita) + + + Channel3 to SO1 (Right) + Canal 3 para SO1 (Direita) + + + Channel2 to SO1 (Right) + Canal 2 para SO1 (Direita) + + + Channel4 to SO1 (Right) + Canal 4 para SO1 (Direita) + + + Square Channel 1 Volume + Canal 1 Volume + + + Square Channel 2 Volume + Canal 2 Volume + + + Square Channel 1 Volume: + Canal 1 Volume: + + + Square Channel 2 Volume: + Canal 2 Volume: + + + Treble: + Agudo: + + + Sweep Time + Varredura temporal + + + SO1 Volume (Right) + SO1 Volume (Esquerdo) + + + Length of each step in sweep: + Tamanho de cada passo na varredura: + + + Noise Channel Volume + Canal de Ruído - Volume + + + Wave Channel Volume: + Canal da Onda - Volume: + + + Wave Pattern Duty + Trabalho da Frente de Onda + + + SO2 Volume (Left): + SO2 Volume (Direito): + + + Volume Sweep Direction + Direção da varredura de volume + + + The rate at which increase or decrease in frequency occurs + A taxa na qual cresce ou decresce a frequência + + + SO2 Volume (Left) + SO2 Volume (Direito) + + + + pluginBrowser + + Additive Synthesizer for organ-like sounds + Síntetizador de Síntese Aditiva para sons tipo de órgão + + + Customizable wavetable synthesizer + Sintetizador de formas de onda customizáveis + + + 2-operator FM Synth + Dois Operadores de Síntese FM + + + LMMS port of sfxr + sfxr para LMMS + + + Filter for importing Hydrogen files into LMMS + Filtro para importação de arquivos do Hydrogen para o LMMS + + + Tuneful things to bang on + Instrumentos percussivos com afinação para você usar + + + Player for SoundFont files + Tocador de arquivos de SounFont + + + Instrument browser + Navegador de instrumentos + + + Filter for importing FL Studio projects into LMMS + Filtro para importação de projetos do FL Studio para o LMMS + + + List installed LADSPA plugins + Lista dos plugins LADSPA instalados + + + Plugin for controlling knobs with sound peaks + Plugin para controlar botões com os picos sonoros + + + Filter for importing MIDI-files into LMMS + Filtro para importação de arquivos MIDI para o LMMS + + + GUS-compatible patch instrument + Pré definição de instrumento compatível com GUS (Gravis Ultrasound) + + + Vibrating string modeler + Modelador de Cordas vibrantes + + + Instrument plugins + Plugins de Instrumentos + + + VST-host for using VST(i)-plugins within LMMS + Servidor (host) VST para usar plugins VST(i) com o LMMS + + + Plugin for freely manipulating stereo output + Plugin para livre manipulação das saídas estéreo + + + no description + sem descrição + + + 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. + + + Emulation of GameBoy (TM) APU + Emulação do GameBoy (TM) APU + + + Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. + Arraste um instrumento para uma pista existente no Editor de Arranjo ou no Editor de Bases. + + + Incomplete monophonic imitation tb303 + Imitação monofônica incompleta de tb303 + + + plugin for using arbitrary LADSPA-effects inside LMMS. + plugin para uso de efeitos LADSPA arbitrários dentro do LMMS. + + + 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 + + + Embedded ZynAddSubFX + Poderoso sintetizador ZynAddSubFx embutido no LMMS + + + 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 + + + + + projectNotes + + Cu&t + Recor&tar + + + &Bold + &Negrito + + + &Copy + &Copiar + + + &Left + &Esquerda + + + &Redo + &Refazer + + + &Undo + Des&fazer + + + Format Actions + Ações de formatação + + + &Justify + &Justificar + + + Project notes + Notas do projeto + + + &Paste + C&olar + + + &Right + Di&reita + + + Edit Actions + Ações de edição + + + Ctrl+B + Ctrl+B + + + Ctrl+C + Ctrl+C + + + Ctrl+E + Ctrl+E + + + Ctrl+I + Ctrl+I + + + Ctrl+J + Ctrl+J + + + Ctrl+L + Ctrl+L + + + Ctrl+R + Ctrl+R + + + Ctrl+U + Ctrl+U + + + Ctrl+V + Ctrl+V + + + Ctrl+X + Ctrl+X + + + Ctrl+Y + Ctrl+Y + + + Ctrl+Z + Ctrl+Z + + + Put down your project notes here. + Faça suas anotações aqui. + + + C&enter + C&entro + + + &Color... + &Cor... + + + &Underline + S&ublinhado + + + &Italic + &Itálico + + + + renameDialog + + Rename... + Renomear... + + + + setupDialog + + OK + OK + + + MISC + VÃRIOS + + + General settings + Opções gerais + + + AUDIO INTERFACE + INTERFACE DE ÃUDIO + + + Paths + Locais + + + Performance settings + Opções de desempenho + + + Choose background artwork + Escolher Papel de Parede do LMMS + + + FL Studio installation directory + Pasta de instalação do FL Studio + + + Enable waveform display by default + Habilitar visualizador de forma de onda por padrão + + + Reset to default-value + Restaurar o valor padrão + + + One instrument track window mode + Modo janela com uma pista de instrumento + + + Choose LADSPA plugin directory + Escolher a pasta com os plugins LADSPA + + + LMMS working directory + Pasta de trabalho do LMMS + + + Choose default SoundFont + Escolher SoundFont padrão + + + Please note that most changes won't take effect until you restart LMMS! + Por favor note que a maioria das mudanças não terão efeito antes de reiniciar o LMMS! + + + Enable tooltips + Habilitar dicas + + + Show restart warning after changing settings + Mostrar aviso de reinicialização depois de mudança de configuração + + + Cancel + Cancelar + + + Smooth scroll in Song Editor + Rolagem suave no Editor de Arranjo + + + Frames: %1 +Latency: %2 ms + Amostras: %1 +Latência: %2 ms + + + MIDI INTERFACE + INTERFACE DO MIDI + + + 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. + Aqui você pode ajustar o tamanho do buffer interno usado pelo LMMS. Valores menores resultam em menor latência (atraso ao usar as teclas ou um controlador midi) mas podem provocar sons não desejados como plocs e bips ou má performance, esses problemas acontecem especialmente em computadores antigos ou sistema com kernel não compilado para trabalhar com processamento em tempo real. + + + Background artwork + Papel de parede + + + Compact track buttons + Botões de pista compactos + + + Choose FL Studio installation directory + Escolher a pasta de instalação do FL Studio + + + Audio settings + Configurações de Ãudio + + + UI effects vs. performance + Efeitos Visuais X Desempenho + + + LADSPA plugin paths + Locais de plugins LADSPA + + + Choose artwork-theme directory + Escolher a pasta com Temas para LMMS + + + Show playback cursor in AudioFileProcessor + Mostrar o cursor de reprodução dentro do AudioFileProcessor + + + Enable auto save feature + Habilitar a função de salvamento automático + + + 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. + Aqui você pode selecionar sua interface de áudio preferida. Dependendo das configurações do sistema durante a compilação, você poderá escolher entre ALSA, JACK, OSS e outros. Abaixo você verá uma caixa que oferece controles para ajustar a interface de áudio selecionada. + + + Compress project files per default + Sempre compactar arquivos de projeto + + + HQ-mode for output audio-device + Modo de Alta Qualidade para a Saída do dispositivo de áudio + + + BUFFER SIZE + TAMANHO DO BUFFER + + + 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. + Aqui você pode selecionar sua interface de MIDI preferida. Dependendo das configurações do sistema durante a compilação, você poderá escolher entre ALSA, OSS entre outros. Abaixo você verá uma caixa que oferece controles para ajustar a interface de MIDI selecionada. + + + Display volume as dBV + Mostrar volume em dBV + + + Choose STK rawwave directory + Escolher a pasta de STK rawwave + + + Default Soundfont File + Arquivo padrão de Soundfont + + + Sync VST plugins to host playback + Sincronizar plugins VST no hospedeiro (host) de reprodução + + + Setup LMMS + Configurar LMMS + + + Choose your VST-plugin directory + Escolher a pasta com plugins VST + + + Choose LMMS working directory + Escolher a pasta de trabalho do LMMS + + + Restart LMMS + Reiniciar LMMS + + + STK rawwave directory + Pasta de STK rawwave + + + VST-plugin directory + Pasta com plugins VST + + + MIDI settings + Configurações do MIDI + + + Artwork directory + Pasta com Temas para LMMS + + + Enable note labels in piano roll + Habilitar camadas de notas no editor de notas MIDI + + + + sf2Instrument + + Bank + Banco + + + Gain + Ganho + + + Patch + Programação + + + Chorus Speed + Velocidade do Chorus + + + Reverb Width + Tamanho da Reverberação + + + Chorus Depth + Profundidade do Chorus + + + Reverb Level + Nível de Reverberação + + + Chorus Level + Nível de Chorus + + + Chorus Lines + Linhas de Chorus + + + Chorus + Chorus + + + Reverb + Reverberação + + + Reverb Damping + Absorção da Reverberação + + + Reverb Roomsize + Tamanho da sala em Reverberação + + + + sf2InstrumentView + + Gain + Ganho + + + 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. + + + 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. + + + Click here to open another SF2 file + Clique aqui para abrir outro arquivo SF2 + + + Choose the patch + Escolher o patch + + + SoundFont2 Files (*.sf2) + Arquivos SoundFont2 (*sf2) + + + Apply reverb (if supported) + Aplicar reverberação (se suportado) + + + Open SoundFont file + Abrir o arquivo SoundFont + + + Apply chorus (if supported) + Aplicar chorus (se suportado) + + + Reverb Roomsize: + Tamanho da sala em Reverbaração: + + + Chorus Speed: + Velocidade do Chorus: + + + Reverb Damping: + Absorção da Reverberação: + + + Reverb Width: + Tamanho da Reverberação: + + + Chorus Depth: + Profundidade do Chorus: + + + Reverb Level: + Nível de Reverberação: + + + Chorus Level: + Nível de Chorus: + + + Chorus Lines: + Linhas de Chorus: + + + Open other SoundFont file + Abrir outro arquivo SoundFont + + + + sfxrInstrument + + Wave Form + Forma de Onda + + + + sidInstrument + + Chip model + Modelo do chip + + + Cutoff + Corte + + + Volume + + + + Voice 3 off + Voz 3 desligada + + + Resonance + Ressonância + + + Filter type + Tipo de filtro + + + + sidInstrumentView + + Test + Teste + + + Sync + Sincronização + + + Filtered + Filtrado + + + Ring-Mod + Modulação em Anel + + + Noise + Ruído + + + Pulse Width: + Tamanho do Pulso: + + + 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. + + + Cutoff frequency: + Frequência de corte: + + + Decay: + Decaimento: + + + 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. + + + Resonance: + Ressonância: + + + 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. + + + 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. + + + 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". + + + Voice3 Off + Voz3 Desligada + + + 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. + + + Attack: + Ataque: + + + SawTooth + Dente de Serra + + + Pulse Wave + Onda de Pulso + + + 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. + + + Triangle Wave + Onda Triangular + + + Coarse: + Ajuste Bruto: + + + Release: + Relaxamento: + + + Sustain: + Sustentação: + + + 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. + + + 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. + + + Volume: + + + + 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. + + + MOS8580 SID + + + + MOS6581 SID + + + + Low-Pass filter + Filtro Passa Baixa + + + Band-Pass filter + Filtro Passa Banda + + + High-Pass filter + Filtro Passa Alta + + + + song + + Tempo + Andamento + + + Master pitch + Altura Final + + + Project saved + Projeto salvo + + + Master volume + Volume Final + + + This project is empty so exporting makes no sense. Please put some items into Song Editor first! + Este projeto está vazio, então exportá-lo não faz sentido. Por favor, coloque alguns itens dentro do Editor de Arranjo primeiro! + + + MIDI sequences + Sequências MIDI + + + All file types + Todos os tipos de arquivo + + + untitled + sem nome + + + Select file for project-export... + Selecione o arquivo para exportar o projeto... + + + FL Studio projects + Projetos do FL Studio + + + Project NOT saved. + Projeto NÃO salvo. + + + Import file + Importar arquivo + + + The project %1 is now saved. + O projeto %1 está salvo agora. + + + Select directory for writing exported tracks... + Selecionar pasta para escrita de pistas renderizadas... + + + Empty project + Projeto vazio + + + The project %1 was not saved! + O projeto %1 não foi salvo! + + + Hydrogen projects + Projetos do Hydrogen + + + + stereoEnhancerControlDialog + + WIDE + ABRIR + + + Width: + Largura: + + + + stereoEnhancerControls + + Width + Largura + + + + stereoMatrixControlDialog + + Left to Left Vol: + Esq para Esq Vol: + + + Right to Right Vol: + Dir para Dir Vol: + + + Right to Left Vol: + Dir para Esq Vol: + + + Left to Right Vol: + Esq para Dir Vol: + + + + stereoMatrixControls + + Left to Left + Esq para Esq + + + Left to Right + Esq para Dir + + + Right to Left + Dir para Esq + + + Right to Right + Dir para Dir + + + + timeLine + + Hint + Sugestão + + + After stopping go back to begin + Quando parar volta para o começo + + + Press <Ctrl> to disable magnetic loop points. + Pressione <Ctrl> para desabilitar os pontos de loop magnéticos. + + + Enable/disable auto-scrolling + Ativa/desativa auto-rolagem + + + After stopping go back to position at which playing was started + Quando parar volta para a posição que estava quando começou a tocar + + + Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. + Pressione <Shift> para mover o começo do ponto de loop; Pressione <Ctrl> para desabilitar os pontos de loop magnéticos. + + + After stopping keep position + Quando parar mantém a posição + + + Enable/disable loop-points + Ativa/desativa pontos de loop + + + + track + + Solo + + + + Muted + Mudo + + + + trackContentObject + + Muted + Mudo + + + + trackContentObjectView + + Cut + Recortar + + + Copy + Copiar + + + Hint + Sugestão + + + Paste + Colar + + + Press <Ctrl> for free resizing. + Pressione <Ctrl> para redimensionar livremente. + + + Delete (middle mousebutton) + Apagar (botão do meio do mouse) + + + Press <Ctrl> and drag to make a copy. + Pressione <Ctrl> e arraste para fazer uma cópia. + + + %1:%2 (%3:%4 to %5:%6) + %1:%2 (%3:%4 até %5:%6) + + + Current length + Tamanho atual + + + Mute/unmute (<Ctrl> + middle click) + Mudo/não mudo (<Ctrl> + botão do meio) + + + Current position + Posição atual + + + + trackOperationsWidget + + Mute + Mudo + + + Solo + + + + Clone this track + Clonar esta pista + + + Actions for this track + Ações para esta pista + + + Remove this track + Remover esta pista + + + Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. + Pressione <Ctrl> enquanto clica em mover-grip para o começo, uma ação de arrastar. + + + Mute this track + Deixar esta pista muda + + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + + + + vestigeInstrument + + Loading plugin + Carregando plugin + + + Please wait while loading VST-plugin... + Por favor, espere enquanto carrego o plugin VST... + + + The VST-plugin %1 could not be loaded for some reason. +If it runs with other VST-software under Linux, please contact an LMMS-developer! + O plugin VST %1 não pode ser carregado por alguma razão. +Se ele rodar com outro programa VST no Linux, por favor entre em contato com um desenvolvedor do LMMS! + + + Failed loading VST-plugin + Falha ao carregar plugin VST + + + + vibed + + Fuzziness %1 + Encrespar %1 + + + Pickup %1 position + Super Pegada %1 posição + + + Length %1 + Tamanho %1 + + + Pan %1 + + + + String %1 volume + Cordas %1 volume + + + String %1 stiffness + Cordas %1 dureza + + + Octave %1 + Oitava %1 + + + Detune %1 + Desafinar %1 + + + Pick %1 position + Pegada %1 posição + + + Impulse %1 + Impulso %1 + + + + vibedView + + Pan: + + + + &Help + Aj&uda + + + The Octave selector is used to choose which harmonic of the note the string will ring at. For example, '-2' means the string will ring two octaves below the fundamental, 'F' means the string will ring at the fundamental, and '6' means the string will ring six octaves above the fundamental. + O seletor "Octave" é usado para escolher que harmônico da nota na corda irá soar mais. Por exemplo, "-2" significa que a corda vibrará duas oitavas abaixo da Fundamental, "F" significa que a corda vibrará na frequência Fundamental e "6" significa que a corda vai vibrar 6 oitavas acima da fundamental. + + + Impulse Editor + Editor de Impulso + + + Fuzziness: + Encrespando: + + + 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. + + + 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. + + + Length: + Tamanho: + + + 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. + + + White noise wave + Ruído branco + + + Click here to smooth waveform. + Clique aqui para suavizar a forma de onda. + + + Use a square-wave for current oscillator. + Use uma onda quadrada no oscilador atual. + + + The 'V' knob sets the volume of the selected string. + O botão "V" modifica o volume da corda selecionada. + + + Sine wave + Onda senoidal + + + Click here to enable/disable waveform. + Clique aqui para habilitar/desabilitar forma de onda. + + + Octave + Oitava + + + 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. + + + Smooth + Suavizar + + + String + Corda + + + 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". + + + 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. + + + 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. + + + Pick position: + Escolher pinçada: + + + The Pan knob determines the location of the selected string in the stereo field. + O botão de Pan determina a localização da corda selecionada o campo estereofônico. + + + String stiffness: + Dureza da corda: + + + Square wave + Onda quadrada + + + Saw wave + Onda dente de serra + + + Normalize + Normalizar + + + Click here to normalize waveform. + Clique aqui para normalizar a forma de onda. + + + Use a saw-wave for current oscillator. + Use uma onda dente de serra no oscilador atual. + + + Use white-noise for current oscillator. + Use ruído branco no oscilador atual. + + + Triangle wave + Onda triangular + + + Impulse or initial state + Impulso ou estado inicial + + + Detune: + Desafinar: + + + Use a sine-wave for current oscillator. + Use uma onda senoidal no oscilador atual. + + + Pickup position: + Posição do captador: + + + Volume: + + + + User defined wave + Onda definida pelo usuário + + + Use a user-defined waveform for current oscillator. + Use uma forma de onda definida pelo usuário no oscilador atual. + + + Use a triangle-wave for current oscillator. + Use uma onda triangular no oscilador atual. + + + 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. + + + 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. + + + 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. + + + Enable waveform + Habilitar forma de onda + + + + visualizationWidget + + click to enable/disable visualization of master-output + Clique para habilitar/desabilitar a visualização da saída final + + + Click to enable + Clique para habilitar + + + + voiceObject + + Voice %1 release + Voz %1 relaxamento + + + Voice %1 pulse width + Voz %1 tamanho do pulso + + + Voice %1 wave shape + Voz %1 forma da onda + + + Voice %1 coarse detuning + Voz %1 ajuste bruto + + + Voice %1 sustain + Voz %1 sustentação + + + Voice %1 ring modulate + Voz %1 modulada em anel + + + Voice %1 sync + Voz %1 sincronizada + + + Voice %1 test + Voz %1 teste + + + Voice %1 decay + Voz %1 decaimento + + + Voice %1 attack + Voz %1 ataque + + + Voice %1 filtered + Voz %1 filtrada + + + + 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 + + Input gain + + + + Output gain + + + + diff --git a/data/locale/pt_br.qm b/data/locale/pt_br.qm deleted file mode 100644 index ca8761412..000000000 Binary files a/data/locale/pt_br.qm and /dev/null differ diff --git a/data/locale/ru.qm b/data/locale/ru.qm index 46b6b3aa4..31e56c321 100644 Binary files a/data/locale/ru.qm and b/data/locale/ru.qm differ diff --git a/data/locale/ru.ts b/data/locale/ru.ts index 811d01749..3ea31a994 100644 --- a/data/locale/ru.ts +++ b/data/locale/ru.ts @@ -5,48 +5,105 @@ AboutDialog About LMMS - - - - LMMS (Linux MultiMedia Studio) - + Об LMMS + О программе LMMS Version %1 (%2/%3, Qt %4, %5) - + ВерÑÐ¸Ñ %1 (%2/%3, Qt %4, %5) About - О программе + Подробнее LMMS - easy music production for everyone - + LMMS - лёгкое Ñоздание музыки Ð´Ð»Ñ Ð²Ñех Authors - + Ðвторы Translation - + Перевод Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! - + Ðа Ñтом Ñзыке не переведено (или уÑтановлен ÐнглийÑкий). + +ЕÑли Ð’Ñ‹ заинтереÑованы в переводе LMMS на другой Ñзык или хотите улучшить ÑущеÑтвующий перевод, мы приветÑтвуем любую помощь! ПроÑто ÑвÑжитеÑÑŒ Ñ Ñ€Ð°Ð·Ñ€Ð°Ð±Ð¾Ñ‚Ñ‡Ð¸ÐºÐ°Ð¼Ð¸! License - + Ð›Ð¸Ñ†ÐµÐ½Ð·Ð¸Ñ Copyright (c) 2004-2014, LMMS developers - + Правообладатели (c) 2004-2014, LMMS-разработчики <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + <html><head/><body><p><a href="http://lmms.sf.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sf.net</span></a></p></body></html> + + + LMMS + ЛММС + + + + AmplifierControlDialog + + VOL + ГРОМ + + + Volume: + ГромкоÑть: + + + PAN + БÐЛ + + + Panning: + + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + ГромкоÑть + + + Panning + + + + Left gain + + + + Right gain @@ -54,69 +111,90 @@ If you're interested in translating LMMS in another language or want to imp AudioAlsa::setupWidget 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. - Перевернуть образец. Можно получать забавные Ñффекты - например, перевёрнутый взрыв. - - - Loop sample at start- and end-point - ПоÑтоÑнно воÑпроизводить учаÑток образца между начальной и конечной точками - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - ЗдеÑÑŒ вы можете указать, Ñледует ли повторÑть звук при доÑтижении конца файла. ЕÑли включено, то AudioFileProcessor будет повторÑть чаÑть звука между начальной и конечной точками. Это может быть полезным Ð´Ð»Ñ Ñ‡ÐµÐ³Ð¾-нибудь вроде Ñтрунных или образцов аккордов. + Прежний перевод : Перевернуть образец. Можно получать забавные Ñффекты - например, перевёрнутый взрыв. + ЕÑли включить Ñту кнопку, вÑÑ Ð·Ð°Ð¿Ð¸ÑÑŒ пойдёт в обратную Ñторону, Ñто удобно Ð´Ð»Ñ ÐºÑ€ÑƒÑ‚Ñ‹Ñ… Ñффектов, типа обратного грохота. 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% иÑходный звук не менÑетÑÑ, еÑли же нет ― он будет оÑлаблен или уÑилен. (Обратите внимание, что выбранный файл при Ñтом оÑтанетÑÑ Ð½ÐµÑ‚Ñ€Ð¾Ð½ÑƒÑ‚Ñ‹Ð¼.) + Эта ручка задаёт коÑффициент уÑилениÑ. При значении 100% иÑходный звук не менÑетÑÑ, в противном Ñлучае ― он будет оÑлаблен или уÑилен. (Обратите внимание, что иÑÑ…Ð¾Ð´Ð½Ð°Ñ Ð·Ð°Ð¿Ð¸ÑÑŒ при Ñтом оÑтанетÑÑ Ð½ÐµÑ‚Ñ€Ð¾Ð½ÑƒÑ‚Ð¾Ð¹.) Startpoint: - ÐÐ°Ñ‡Ð°Ð»ÑŒÐ½Ð°Ñ Ñ‚Ð¾Ñ‡ÐºÐ°: - - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Эта ручка уÑтанавливает точку, Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð¹ будет начинатьÑÑ Ð²Ð¾Ñпроизведение образца. При включённом повторе модуль воÑÐ¿Ñ€Ð¾Ð¸Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ð±ÑƒÐ´ÐµÑ‚ возвращатьÑÑ Ðº Ñтой точке, еÑли нота длительней чаÑти образца меж начальной и конечной точками. + Ðачало: Endpoint: - ÐšÐ¾Ð½ÐµÑ‡Ð½Ð°Ñ Ñ‚Ð¾Ñ‡ÐºÐ°: - - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - Эта ручка уÑтанавливает точку, где будет заканчиватьÑÑ Ð²Ð¾Ñпроизведение образца. При включённом повторе модуль воÑÐ¿Ñ€Ð¾Ð¸Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ð¿Ð¾ доÑтижении Ñтого меÑта возвратитÑÑ Ðº начальной точке, еÑли нота длительней чаÑти образца меж начальной и конечной точками. + Конец: 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 Гц) + + + 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. @@ -124,247 +202,252 @@ If you're interested in translating LMMS in another language or want to imp 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. AudioJack::setupWidget CLIENT-NAME - ИМЯ КЛИЕÐТР+ ИМЯ КЛИЕÐТРCHANNELS - ЧИСЛО КÐÐÐЛОВ + КÐÐÐЛЫ AudioOss::setupWidget DEVICE - УСТРОЙСТВО + УСТРОЙСТВО CHANNELS - ЧИСЛО КÐÐÐЛОВ + КÐÐÐЛЫ AudioPortAudio::setupWidget BACKEND - Драйвер + драйвер? + УПРÐВЛЕÐИЕ DEVICE - УСТРОЙСТВО + УСТРОЙСТВО AudioPulseAudio::setupWidget DEVICE - УСТРОЙСТВО + УСТРОЙСТВО CHANNELS - ЧИСЛО КÐÐÐЛОВ + КÐÐÐЛЫ AudioSdl::setupWidget DEVICE - УСТРОЙСТВО + УСТРОЙСТВО AutomatableModel &Reset (%1%2) - &СброÑить (%1%2) + &R СброÑить (%1%2) &Copy value (%1%2) - &Копировать (%1%2) + &C Копировать значение (%1%2) &Paste value (%1%2) - &Ð’Ñтавить (%1%2) + &P Ð’Ñтавить значение (%1%2) Edit song-global automation - + Изменить глоабльную автоматизацию композиции Connected to %1 - ПодÑоединено к %1 + ПодÑоединено к %1 Connected to controller - подÑоединено к контроллеру + ПодÑоединено к контроллеру Edit connection... - ÐаÑтроить Ñоединение... + ÐаÑтроить Ñоединение... Remove connection - Удалить Ñоединение + Удалить Ñоединение Connect to controller... - Соединить Ñ ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»Ð»ÐµÑ€Ð¾Ð¼... + Соединить Ñ ÐºÐ¾Ð½Ñ‚Ñ€Ð¾Ð»Ð»ÐµÑ€Ð¾Ð¼... Remove song-global automation - + Убрать глобальную автоматизацию композиции Remove all linked controls - + Убрать вÑÑ‘ приÑоединенное управление AutomationEditor Play/pause current pattern (Space) - ВоÑпроизведение ткущего шаблона/пауза (Пробел) + Игра/Пауза текущего шаблона (Пробел) Stop playing of 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. - Ðажмите здеÑÑŒ чтобы проиграть текущий шаблон. Это может пригодитьÑÑ Ð¿Ñ€Ð¸ его редактировании. Шаблон автоматичеÑки повторÑетÑÑ Ð¿Ñ€Ð¸ доÑтижении конца. + Ðажмите здеÑÑŒ чтобы проиграть текущий шаблон. Это может пригодитьÑÑ Ð¿Ñ€Ð¸ его редактировании. Шаблон автоматичеÑки закольцуетÑÑ Ð¿Ñ€Ð¸ доÑтижении конца. Click here if you want to stop playing of the current pattern. - Ðажмите здеÑÑŒ, еÑли вы хотите приоÑтановить/продолжить воÑпроизведение текущего шаблона. + Ðажмите здеÑÑŒ, еÑли вы хотите оÑтановить воÑпроизведение текущего шаблона. Draw mode (Shift+D) - Режим риÑÐ¾Ð²Ð°Ð½Ð¸Ñ (Shift+D) + Режим риÑÐ¾Ð²Ð°Ð½Ð¸Ñ (Shift+D) Erase mode (Shift+E) - Режим ÑÑ‚Ð¸Ñ€Ð°Ð½Ð¸Ñ Ð½Ð¾Ñ‚ (Shift+E) + Режим ÑÑ‚Ð¸Ñ€Ð°Ð½Ð¸Ñ (Shift+E) 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. Cut selected values (Ctrl+X) - Вырезать выбранные ноты (Ctrl+X) + Вырезать выбранные ноты (Ctrl+X) Copy selected values (Ctrl+C) - Копировать выбранные ноты в буфер (Ctrl+C) + Копировать выбранные ноты в буфер (Ctrl+C) Paste values from clipboard (Ctrl+V) - Ð’Ñтавить Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¸Ð· буфера (Ctrl+V) + Ð’Ñтавить Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ð¸Ð· буфера (Ctrl+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. - При нажатии на Ñту кнопку ноты из буфера будут вÑтавлены в превый видимый такт. + При нажатии на Ñту кнопку ноты из буфера будут вÑтавлены в первый видимый такт. Automation Editor - no pattern - Редактор временных завиÑимоÑтей — нет шаблона + Редактор автоматизаци — нет шаблона Automation Editor - %1 - Редактор временных завиÑимоÑтей — %1 + Редактор автоматизации — %1 Please open an automation pattern with the context menu of a control! - Открывайте редатор временных завиÑимоÑтей через контекÑтное меню регулÑтора! + Откройте редатор автоматизации через контекÑтное меню регулÑтора! Values copied - Ð—Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñкопированы + Ð—Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñкопированы All selected values were copied to the clipboard. - Выбранные Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñкопированы в буфер обмена. + Ð’Ñе выбранные Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ñ Ñкопированы в буфер обмена. Discrete progression - + ДиÑÐºÑ€ÐµÑ‚Ð½Ð°Ñ Ð¿Ñ€Ð¾Ð³Ñ€ÐµÑÑÐ¸Ñ Linear progression - + Ð›Ð¸Ð½ÐµÐ¹Ð½Ð°Ñ Ð¿Ñ€Ð¾Ð³Ñ€ÐµÑÑÐ¸Ñ Cubic Hermite progression - + КубичеÑÐºÐ°Ñ Ð­Ñ€Ð¼Ð¸Ñ‚Ð¾Ð²Ð° прогреÑÑÐ¸Ñ Tension: - + ÐапрÑжение: 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 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. - + Ð’Ñ‹Ñокое напрÑжение может ÑмÑгчить кривую, но перегрузить некоторые значение. Ðизкое напрÑжение может подкоÑить кривую до низкого ÑƒÑ€Ð¾Ð²Ð½Ñ Ð² каждой управлÑющей точке. AutomationPattern Drag a control while pressing <Ctrl> + ТÑните контроль ÑƒÐ´ÐµÑ€Ð¶Ð¸Ð²Ð°Ñ <Ctrl> + + + Model is already connected to this pattern. @@ -372,250 +455,436 @@ If you're interested in translating LMMS in another language or want to imp AutomationPatternView double-click to open this pattern in automation editor - Дважды щёлкните мышью чтобы наÑтроить завиÑимоÑть от времени Ð´Ð»Ñ Ñтого шаблона + Дважды щёлкните мышью чтобы наÑтроить автоматизацию Ð´Ð»Ñ Ñтого шаблона Open in Automation editor - ÐаÑтройка завиÑимоÑти от времени + Открыть в редакторе автоматизации Clear - ОчиÑтить + ОчиÑтить Reset name - СброÑить название + СброÑить название Change name - Переименовать + Переименовать %1 Connections - Ð¡Ð¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ %1 + Ð¡Ð¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ %1 Disconnect "%1" - ОтÑоединить «%1» + ОтÑоединить «%1» + + + Set/clear record + УÑтановить/очиÑтить запиÑÑŒ AutomationTrack Automation track - Дорожка автоматизации + Дорожка автоматизации + + + + BassBoosterControlDialog + + FREQ + + + + Frequency: + ЧаÑтота: + + + GAIN + УСИЛ + + + Gain: + УÑиление: + + + RATIO + ОТР+ + + Ratio: + Отношение: + + + + BassBoosterControls + + Frequency + ЧаÑтота + + + Gain + УÑиление + + + Ratio + Отношение + + + + CarlaInstrumentView + + Show GUI + Показать Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ + + + Click here to show or hide the graphical user interface (GUI) of Carla. + Controller Controller %1 - Контроллер %1 + Контроллер %1 ControllerConnectionDialog Connection Settings - Параметры ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ + Параметры ÑÐ¾ÐµÐ´Ð¸Ð½ÐµÐ½Ð¸Ñ MIDI CONTROLLER - Контроллер MIDI + 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) associted 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 - &Убрать фильтр + &R Убрать Ñтот фильтр &Help - &Справка + &H Справка + + + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + Сред.ЧФ 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 + Фильтр Вокальной форманты Effect Effect enabled - Эффект включён + Эффект включён Wet/Dry mix - РегулÑтор глубины фильтрации + ÐаÑыщенноÑть Gate - Тишина + Проход + Шлюз Decay - Длит. Ñпада + Затихание EffectChain Effects enabled - Эффекты включёны + Эффекты включёны EffectRackView EFFECTS CHAIN - ЦЕПЬ ФИЛЬТРОВ + ЦЕПЬ ЭФФЕКТОВ Add effect - Добавить фильтр + Добавить Ñффект EffectSelectDialog Add effect - Добавить фильтр + Добавить Ñффект Plugin description - + ОпиÑание Ð¼Ð¾Ð´ÑƒÐ»Ñ EffectView Toggles the effect on or off. - Включает/выключает фильтр. + Вкл/выкл Ñффект. On/Off - Вкл/Выкл + Вкл/Выкл W/D - Ðа фильтр + плотноÑть, наÑыщенноÑть + ÐÐСЫЩ Wet Level: - + Уровень наÑыщенноÑти: The Wet/Dry knob sets the ratio between the input signal and the effect signal that forms the output. - РегулÑтор глубины фильтрации определÑет долю Ñигнала, изменÑемую фильтром, Ñ‚. е. ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ñ‡Ð°Ñть выходного Ñигнала прошла через Ñтот фильтр. + РегулÑтор наÑыщенноÑти определÑет долю обработанного Ñигнала, ÐºÐ¾Ñ‚Ð¾Ñ€Ð°Ñ Ð±ÑƒÐ´ÐµÑ‚ на выходе. DECAY - СПÐД + ЗÐТИХ Time: - Задержка ÑƒÐ½Ð¸Ñ‡Ñ‚Ð¾Ð¶ÐµÐ½Ð¸Ñ Ñ„Ð¸Ð»ÑŒÑ‚Ñ€Ð°: + ВремÑ: The Decay knob controls how many buffers of silence must pass before the plugin stops processing. Smaller values will reduce the CPU overhead but run the risk of clipping the tail on delay and reverb effects. - -Этот регулÑтор уÑтанавливает времÑ, которое будет дейÑтвовать фильтр поÑле поÑледней ноты. Чем меньше значение, тем меньше Ñ‚Ñ€ÐµÐ±Ð¾Ð²Ð°Ð½Ð¸Ñ Ðº ЦП, однако Ñто может вызвать обрезку звука при иÑпользовании Ñффектов задержки. + Decay (затихание) управлÑет количеÑтвом буферов тишины, которые должны пройти до конца работы плагина. Меньшие величины Ñнижают перегрузку процеÑÑора, но вознкает риÑк поÑÐ²Ð»ÐµÐ½Ð¸Ñ Ð¿Ð¾Ñ‚Ñ€ÐµÑÐºÐ¸Ð²Ð°Ð½Ð¸Ñ Ð¸Ð»Ð¸ Ð¿Ð¾Ð´Ñ€ÐµÐ·Ð°Ð½Ð¸Ñ Ð² хвоÑте на передержке (delay) или Ñхо (reverb) Ñффектах. GATE - ЗÐПОЛÐЕÐИЕ + заполнение + ШЛЮЗ Gate: - Уровень тишины: + Уровень тишины: + Шлюз: The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. - Этот регулÑтор определÑет наименьший уровень Ñигнала, который ещё будет поÑылатьÑÑ Ñ„Ð¸Ð»ÑŒÑ‚Ñ€Ð°Ð¼; вÑÑ‘, что ниже Ñтого уровнÑ, раÑÑматриаетÑÑ ÐºÐ°Ðº „тишина“ и не обрабатываетÑÑ. + GATE (Шлюз) определÑет уровень Ñигнала, который будет ÑчитатьÑÑ "тишиной" при определении оÑтановки Ð¾Ð±Ñ€Ð°Ð±Ð°Ñ‚Ñ‹Ð²Ð°Ð½Ð¸Ñ Ñигналов. Controls - Параметры + Управление Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. @@ -631,446 +900,517 @@ The Gate knob controls the 'given threshold' for the effect's aut The Controls button opens a dialog for editing the effect's parameters. Right clicking will bring up a context menu where you can change the order in which the effects are processed or delete an effect altogether. - Сигнал проходит поÑледовательно через вÑе уÑтановленные фильтры (Ñерху вниз). + Сигнал проходит поÑледовательно через вÑе уÑтановленные фильтры (Ñверху вниз). Переключатель Вкл/Выкл позволÑет в любой момент включать/выключать фильтр. -РегулÑтор глубины фильтрации определÑет долю Ñигнала, изменÑемую фильтром. Входной Ñигнал каждого фильтра ÑвлÑетÑÑ Ð²Ñ‹Ñ…Ð¾Ð´Ð¾Ð¼ предыдущего, так что Ð´Ð¾Ð»Ñ Ð½ÐµÑ„Ð¸Ð»ÑŒÑ‚Ñ€Ð¾Ð²Ð°Ð½Ð½Ð¾Ð³Ð¾ Ñигнала при прохождении по цепочке поÑтоÑнно падает. +РегулÑтор (wet / dry) наÑыщенноÑти определÑет Ð±Ð°Ð»Ð°Ð½Ñ Ð¼ÐµÐ¶Ð´Ñƒ входÑщим Ñигналом и Ñигналом поÑле Ñффекта, который ÑтановитÑÑ Ð²Ñ‹Ñ…Ð¾Ð´Ð½Ñ‹Ð¼ Ñигналом Ñффекта. Входной Ñигнал каждого фильтра ÑвлÑетÑÑ Ð²Ñ‹Ñ…Ð¾Ð´Ð¾Ð¼ предыдущего, так что Ð´Ð¾Ð»Ñ Ñ‡Ð¸Ñтого Ñигнала при прохождении по цепочке поÑтоÑнно падает. -РегулÑтор длительноÑти поÑледейÑÑ‚Ð²Ð¸Ñ Ñ„Ð¸Ð»ÑŒÑ‚Ñ€Ð° определÑет времÑ, которое будет дейÑтвовать фильтр поÑле Ð¾ÐºÐ¾Ð½Ñ‡Ð°Ð½Ð¸Ñ Ð¿Ð¾Ñледней ноты. Чем меньше значение, тем меньше Ñ‚Ñ€ÐµÐ±Ð¾Ð²Ð°Ð½Ð¸Ñ Ðº ЦП, однако Ñто может вызвать обрезку звука при иÑпользовании Ñффектов задержки. Ð”Ð»Ñ Ð±Ð¾Ð»ÑŒÑˆÐ¸Ð½Ñтва же Ñффектов его можно выбирать доÑтаточно малым. +РегулÑтор (decay) Ð·Ð°Ñ‚Ð¸Ñ…Ð°Ð½Ð¸Ñ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»Ñет времÑ, которое будет дейÑтвовать фильтр поÑле того как ноты были отпущены. +Эффект переÑтанет обрабатывать Ñигналы, когда грмокоÑть упадёт ниже порога Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð½Ð¾Ð¹ длины времени. Эта ручка (Knob) уÑтанавливает "заданную длину времени" Чем меньше значение, тем меньше Ñ‚Ñ€ÐµÐ±Ð¾Ð²Ð°Ð½Ð¸Ñ Ðº ЦП, поÑтому лучше Ñтавить Ñто чиÑло низким Ð´Ð»Ñ Ð±Ð¾Ð»ÑŒÑˆÐ¸Ð½Ñтва Ñффектов. однако Ñто может вызвать обрезку звука при иÑпользовании Ñффектов Ñ Ð´Ð»Ð¸Ñ‚ÐµÐ»ÑŒÐ½Ñ‹Ð¼Ð¸ периодами тишины, типа задержки. -РегулÑтор ÑƒÑ€Ð¾Ð²Ð½Ñ Ñ‚Ð¸ÑˆÐ¸Ð½Ñ‹ Ñлужит Ð´Ð»Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ñ Ð½Ð°Ð¸Ð¼ÐµÐ½ÑŒÑˆÐµÐ³Ð¾ ÑƒÑ€Ð¾Ð²Ð½Ñ Ñигнала, который ещё будет поÑылатьÑÑ Ñ„Ð¸Ð»ÑŒÑ‚Ñ€Ð°Ð¼; вÑÑ‘, что ниже Ñтого уровнÑ, раÑÑматриаетÑÑ ÐºÐ°Ðº „тишина“ и не обрабатываетÑÑ. +РегулÑтор шлюза Ñлужит Ð´Ð»Ñ ÑƒÐºÐ°Ð·Ð°Ð½Ð¸Ñ Ð¿Ð¾Ñ€Ð¾Ð³Ð° Ñигнала Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾-Ð¾Ñ‚ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ñффекта, отÑчёт Ð´Ð»Ñ "заданной длины времени" начнётÑÑ ÐºÐ°Ðº только обрабатываемый Ñигнал упадёт ниже указанного Ñтим регулÑтором уровнÑ. -Кнопка „Параметры“ открывает окно, где вы можете передать параметры модулю. +Кнопка „Управление“ открывает окно Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ð¾Ð² Ñффекта. -КонтекÑтное меню, вызываемое щелчком правой кнопкой мыши, позволÑет менÑть порÑдок ÑÐ»ÐµÐ´Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ„Ð¸Ð»ÑŒÑ‚Ñ€Ð¾Ð² и удалÑть их. +КонтекÑтное меню, вызываемое щелчком правой кнопкой мыши, позволÑет менÑть порÑдок ÑÐ»ÐµÐ´Ð¾Ð²Ð°Ð½Ð¸Ñ Ñ„Ð¸Ð»ÑŒÑ‚Ñ€Ð¾Ð² или удалÑть их вмеÑте Ñ Ð´Ñ€ÑƒÐ³Ð¸Ð¼Ð¸. Move &up - ПеремеÑтить &выше + &u ПеремеÑтить выше Move &down - ПеремеÑтить &ниже + &d ПеремеÑтить ниже &Remove this plugin - &Убрать фильтр + &R Убрать фильтр &Help - &Справка + &H Справка EnvelopeAndLfoParameters Predelay - Задержка + Задержка Attack - ДлительноÑть нараÑÑ‚Ð°Ð½Ð¸Ñ + Ð’Ñтупление Hold - ДлительноÑть Ð³Ñ€ÐµÐ±Ð½Ñ + Удерживание Decay - Длит. Ñпада + Затихание Sustain - ОÑтаточный уровень + Выдержка Release - ДлительноÑть иÑÑ‡ÐµÐ·Ð½Ð¾Ð²ÐµÐ½Ð¸Ñ + Убывание Modulation - МодулÑÑ†Ð¸Ñ + МодулÑÑ†Ð¸Ñ LFO Predelay - Задержка LFO + Задержка LFO LFO Attack - ÐараÑтание LFO + Ð’Ñтупление LFO LFO speed - СкороÑть LFO + СкороÑть LFO LFO Modulation - МодулÑÑ†Ð¸Ñ LFO + МодулÑÑ†Ð¸Ñ LFO LFO Wave Shape - Форма Ñигнала LFO + Форма Ñигнала LFO Freq x 100 - ЧÐСТ 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 + HOLD Hold: - ДлительноÑть гребнÑ: + Удержание: Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. - Эта ручка уÑтанавливает длительноÑть Ð³Ñ€ÐµÐ±Ð½Ñ Ð²Ð¾Ð»Ð½Ñ‹ текущей обложки. Чем больше значение, тем дольше обложка удерживает наибольший уровень. + Эта ручка уÑтанавливает длительноÑть огибающей. Чем больше значение, тем дольше Ð¾Ð³Ð¸Ð±Ð°ÑŽÑ‰Ð°Ñ Ð´ÐµÑ€Ð¶Ð¸Ñ‚ÑÑ Ð½Ð° наивыÑшем уровне. DEC - СПÐД + DEC Decay: - ДлительноÑть Ñпада: + Затихание: Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. - Этот регулÑтор уÑтанавливает Ð²Ñ€ÐµÐ¼Ñ Ñпада Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ обложки. Чем больше значение, тем дольше уровень уменьшаетÑÑ Ð¾Ñ‚ макÑимального до оÑтаточного. Ð”Ð»Ñ Ð¸Ð½Ñтрументов вроде пианино Ñледует выбирать небольшие значениÑ. + Эта ручка уÑтанавливает Ð²Ñ€ÐµÐ¼Ñ Ñпада Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ огибающей. Чем больше значение, тем дольше Ð¾Ð³Ð¸Ð±Ð°ÑŽÑ‰Ð°Ñ Ð´Ð¾Ð»Ð¶Ð½Ð° ÑокращатьÑÑ Ð¾Ñ‚ вÑÑ‚ÑƒÐ¿Ð»ÐµÐ½Ð¸Ñ Ð´Ð¾ ÑƒÑ€Ð¾Ð²Ð½Ñ Ð²Ñ‹Ð´ÐµÑ€Ð¶ÐºÐ¸. Ð”Ð»Ñ Ð¸Ð½Ñтрументов вроде пианино Ñледует выбирать небольшие значениÑ. SUST - ОСТ + SUST Sustain: - ОÑтаточный уровень: + Выдержка: Use this knob for setting sustain-level of the current envelope. The bigger this value the higher the level on which the envelope stays before going down to zero. - Этот регулÑтор уÑтанавливает оÑтаточный уровень. Эта величина показывает, Ñ ÐºÐ°ÐºÐ¾Ð³Ð¾ ÑƒÑ€Ð¾Ð²Ð½Ñ ÑоответÑÑ‚Ð²ÑƒÑŽÑ‰Ð°Ñ Ñ…Ð°Ñ€Ð°ÐºÑ‚ÐµÑ€Ð¸Ñтика ÑнижаетÑÑ Ð´Ð¾ нулÑ. + Эта ручка уÑтанавливает уровень выдержки. Чем больше Ñта величина, тем выше уровень на котором оÑтаётÑÑ Ð¾Ð³Ð¸Ð±Ð°ÑŽÑ‰Ð°Ñ, прежде чем опуÑтитьÑÑ Ð´Ð¾ нулÑ. REL - ИСЧ + REL Release: - ДлительноÑть иÑчезновениÑ: + Убывание: Use this knob for setting release-time of the current envelope. The bigger this value the longer the envelope needs to decrease from sustain-level to zero. Choose a big value for soft instruments like strings. - Этот регулÑтор уÑтанавливает Ð²Ñ€ÐµÐ¼Ñ Ð¸ÑÑ‡ÐµÐ·Ð½Ð¾Ð²ÐµÐ½Ð¸Ñ Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ обложки. Чем больше значение, тем дольше характериÑтика (н-Ñ€, громкоÑть) уменьшаетÑÑ Ð¾Ñ‚ оÑтаточного ÑƒÑ€Ð¾Ð²Ð½Ñ Ð´Ð¾ нулÑ. Ð”Ð»Ñ Ñтрунных инÑтрументов Ñледует выбирать большие значениÑ. + Эта ручка уÑтанавливает Ð²Ñ€ÐµÐ¼Ñ ÑƒÐ±Ñ‹Ð²Ð°Ð½Ð¸Ñ Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ огибающей. Чем больше значение, тем дольше характериÑтика (н-Ñ€, громкоÑть) уменьшаетÑÑ Ð¾Ñ‚ ÑƒÑ€Ð¾Ð²Ð½Ñ Ð²Ñ‹Ð´ÐµÑ€Ð¶ÐºÐ¸ до нулÑ. Ð”Ð»Ñ Ñтрунных инÑтрументов Ñледует выбирать большие значениÑ. AMT - МОД + AMT Modulation amount: - Глубина модулÑции: + Глубина модулÑции: Use this knob for setting modulation amount of the current envelope. The bigger this value the more the according size (e.g. volume or cutoff-frequency) will be influenced by this envelope. - Этот регулÑтор уÑтанавливает глубину модулÑции Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ обложки. Чем больше значение, тем в большей Ñтепени Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ñ…Ð°Ñ€Ð°ÐºÑ‚ÐµÑ€Ð¸Ñтика (н-Ñ€, громкоÑть или чаÑтота Ñреза) будет завиÑеть от обложки. + Эта ручка уÑтанавливает глубину модулÑции Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ¹ огибающей. Чем больше значение, тем в большей Ñтепени Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ñ…Ð°Ñ€Ð°ÐºÑ‚ÐµÑ€Ð¸Ñтика (н-Ñ€, громкоÑть или чаÑтота Ñреза) будет завиÑеть от Ñтой огибающей. LFO predelay: - Пред. задержка LFO: + Пред. задержка LFO: Use this knob for setting predelay-time of the current LFO. The bigger this value the the time until the LFO starts to oscillate. - Этот регулÑтор определÑет задержку перед запуÑком LFO (LFO=низкочаÑтотный генератор). + Эта ручка определÑет задержку перед запуÑком LFO (LFO - ÐизкоЧаÑтотный оÑциллÑтор (генератор)). Чем больше величина, тем больше времени до того как LFO начнёт работать. LFO- attack: - ÐараÑтание LFO: + Ð’Ñтупление LFO: Use this knob for setting attack-time of the current LFO. The bigger this value the longer the LFO needs to increase its amplitude to maximum. - + ИÑпользуйте Ñту ручку Ð´Ð»Ñ ÑƒÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð¸Ñ Ð²Ñ€ÐµÐ¼ÐµÐ½Ð¸ вÑÑ‚ÑƒÐ¿Ð»ÐµÐ½Ð¸Ñ Ñтого LFO. Чем больше значение, тем дольше LFO нуждаетÑÑ Ð² увеличении Ñвоей амплитуды до макÑимума. SPD - СКОР + SPD LFO speed: - СкороÑть LFO: + СкороÑть LFO: Use this knob for setting speed of the current LFO. The bigger this value the faster the LFO oscillates and the faster will be your effect. - Этот регулÑтор уÑтанавлÑвает ÑкороÑть текущего LFO. + Эта ручка уÑтанавлÑвает ÑкороÑть текущего LFO. Чем больше значение, тем быÑтрее 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. + Эта ручка уÑтанавливает глубину модулÑции Ð´Ð»Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ³Ð¾ LFO. Чем больше значение, тем в большей Ñтепени Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ñ…Ð°Ñ€Ð°ÐºÑ‚ÐµÑ€Ð¸Ñтика (н-Ñ€, громкоÑть или чаÑтота Ñреза) будет завиÑеть от Ñтого LFO. Click here for a sine-wave. - Генерировать гармоничеÑкий (ÑинуÑоидальный) Ñигнал. + Генерировать гармоничеÑкий (ÑинуÑоидальный) Ñигнал. Click here for a triangle-wave. - Сгенерировать треугольный Ñигнал. + Сгенерировать треугольный Ñигнал. Click here for a saw-wave for current. - Генерировать пилообразный Ñигнал. + Сгенерировать зигзагообразный Ñигнал. Click here for a square-wave. - Сгенерировать меандр. + Сгенерировать квдратный Ñигнал (меандр) . Click here for a user-defined wave. Afterwards, drag an according sample-file onto the LFO graph. - Задать форму Ñигнала из файла. + Задать Ñвою форму Ñигнала. ВпоÑледÑтвии, перетащить ÑоответÑтвующий файл Ñ Ð·Ð°Ð¿Ð¸Ñью в граф LFO. FREQ x 100 - ЧÐСТОТРx 100 + ЧÐСТОТРx 100 Click here if the frequency of this LFO should be multiplied by 100. - Ðажмите, чтобы увеличить чаÑтоту Ñтого LFO в Ñто раз. + Ðажмите, чтобы умножить чаÑтоту Ñтого LFO на 100. multiply LFO-frequency by 100 - Увеличить чаÑтоту LFO в 100 раз + Умножить чаÑтоту LFO на 100 MODULATE ENV-AMOUNT - МОДУЛИРОВÐТЬ ОБЛОЖКУ + МОДУЛИР ОГИБÐЮЩУЮ Click here to make the envelope-amount controlled by this LFO. - Ðажмите Ñюда, чтобы глубина модулÑции обложки задавалаÑÑŒ Ñтим LFO. + Ðажмите Ñюда, чтобы глубина модулÑции огибающей задавалаÑÑŒ Ñтим LFO. control envelope-amount by this LFO - Разрешить Ñтому LFO задавать глубину модулÑции обложки + Разрешить Ñтому LFO задавать значение огибающей ms/LFO: - Период: + мÑ/LFO: Hint - ПодÑказка + ПодÑказка Drag a sample from somewhere and drop it in this window. - Перетащите в Ñто окно какой-нибудь образец. + Перетащите в Ñто окно какую-нибудь запиÑÑŒ. + + + Click here for random wave. + ExportProjectDialog Export project - + ЭкÑпорт проекта Output - Выход + Вывод File format: - + Формат файла: Samplerate: - + ЧаÑтота диÑкретизации: 44100 Hz - + 44.1 КГц 48000 Hz - + 48 КГц 88200 Hz - + 88.2 КГц 96000 Hz - + 96 КГц 192000 Hz - + 192 КГц 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 КБит/Ñ Depth: - + ЕмкоÑть: 16 Bit Integer - + 16 Бит целое 32 Bit Float - + 32 Бит Ð¿Ð»Ð°Ð²Ð°ÑŽÑ‰Ð°Ñ 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) - + 1Ñ… (Ðет) 2x - + 2Ñ… 4x - + 4Ñ… 8x - - - - Sample-exact controllers - - - - Alias-free oscillators - + 8Ñ… Start - + Ðачать Cancel - Отменить + Отменить Export as loop (remove end silence) + ЭкÑпортировать как петлю (убрать тишину в конце) + + + + FileBrowser + + Browser + Обозреватель файлов + + + + 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... + Пж. ждите, запиÑÑŒ загружаетÑÑ Ð´Ð»Ñ Ð¿Ñ€Ð¾Ñмотра... + + + --- Factory files --- + --- ЗаводÑкие файлы --- + + + + 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 + + + + &Help + &H Справка + FxMixer Master - + Главный FX %1 - + Эффект %1 FxMixerView Rename FX channel - Переименовать канал FX + Переименовать канал Эффекта Enter the new name for this FX channel - Введите новое название Ð´Ð»Ñ ÐºÐ°Ð½Ð°Ð»Ð° + Введите новое название Ð´Ð»Ñ Ñтого канала Эффекта FX-Mixer - Микшер FX + Микшер Эффектов + + + FxMixerView::FxChannelView FX Fader %1 - + Ползунок Эффекта %1 Mute @@ -1078,6 +1418,13 @@ Right clicking will bring up a context menu where you can change the order in wh Mute this FX channel + Тишина на Ñтом канале Эффекта + + + + FxRoute + + Amount to send from channel %1 to channel %2 @@ -1085,149 +1432,153 @@ Right clicking will bring up a context menu where you can change the order in wh 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 + 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. - ИÑпользуйте ручку, чтобы уÑтановить диапазон арпеджио (в октавах). Выбранный тип арпеджио будет охватывать указанное количеÑтво октав. + ИÑпользуйте Ñту ручку, чтобы уÑтановить диапазон арпеджио (в октавах). Выбранный тип арпеджио будет охватывать указанное количеÑтво октав. 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 - + minor - Минорный + минорный minb5 @@ -1255,7 +1606,7 @@ Right clicking will bring up a context menu where you can change the order in wh 6 - + 8Ñ… {6?} 6sus4 @@ -1275,7 +1626,7 @@ Right clicking will bring up a context menu where you can change the order in wh 7 - + 8Ñ… {7?} 7sus4 @@ -1283,7 +1634,7 @@ Right clicking will bring up a context menu where you can change the order in wh 7#5 - + 8Ñ… {7#5?} 7b5 @@ -1291,7 +1642,7 @@ Right clicking will bring up a context menu where you can change the order in wh 7#9 - + 8Ñ… {7#9?} 7b9 @@ -1299,7 +1650,7 @@ Right clicking will bring up a context menu where you can change the order in wh 7#5#9 - + 8Ñ… {7#5#9?} 7#5b9 @@ -1319,7 +1670,7 @@ Right clicking will bring up a context menu where you can change the order in wh 7#11 - + 8Ñ… {7#11?} Maj7 @@ -1375,7 +1726,7 @@ Right clicking will bring up a context menu where you can change the order in wh 9 - + 8Ñ… {9?} 9sus4 @@ -1387,7 +1738,7 @@ Right clicking will bring up a context menu where you can change the order in wh 9#5 - + 8Ñ… {9#5?} 9b5 @@ -1395,7 +1746,7 @@ Right clicking will bring up a context menu where you can change the order in wh 9#11 - + 8Ñ… {9#11?} 9b13 @@ -1435,7 +1786,7 @@ Right clicking will bring up a context menu where you can change the order in wh 11 - + 8Ñ… {11?} 11b9 @@ -1455,11 +1806,11 @@ Right clicking will bring up a context menu where you can change the order in wh 13 - + 8Ñ… {13?} 13#9 - + 8Ñ… {13#9?} 13b9 @@ -1567,80 +1918,105 @@ Right clicking will bring up a context menu where you can change the order in wh Chords - Ðккорд + Ðккорды Chord type - Тип аккорда + Тип аккорда Chord range - ЧаÑтотный диапазон аккорда + Диапазон аккорда Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + 8Ñ… {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 - + ВКЛ MIDI ВВОД CHANNEL - КÐÐÐЛ + CHANNEL VELOCITY - + VELOCITY ENABLE MIDI OUTPUT - + ВКЛ MIDI ВЫВОД PROGRAM - + PROGRAM MIDI devices to receive MIDI events from - + MiDi уÑтройÑтва-иÑточники Ñобытий MIDI devices to send MIDI events to - + MiDi уÑтройÑтва Ð´Ð»Ñ Ð¾Ñ‚Ð¿Ñ€Ð°Ð²ÐºÐ¸ Ñобытий на них NOTE + NOTE + + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY @@ -1648,146 +2024,151 @@ Right clicking will bring up a context menu where you can change the order in wh InstrumentSoundShaping VOLUME - ГРОМКОСТЬ + VOLUME Volume - ГромкоÑть + ГромкоÑть CUTOFF - СРЕЗ + CUTOFF Cutoff frequency - ЧаÑтота Ñреза + Срез чаÑтоты RESO - УСИЛ + RESO Resonance - УÑиление + Ð ÐµÐ·Ð¾Ð½Ð°Ð½Ñ Envelopes/LFOs - Обложки/LFO + Огибание/LFO Filter type - Тип фильтра + Тип фильтра Q/Resonance - УÑиление + или качеÑтво? + Кол./РезонанÑа LowPass - ФÐЧ + Ðиз.ЧФ HiPass - ФВЧ + Ð’Ñ‹Ñ.ЧФ BandPass csg - ППФ csg + Сред.ЧФ csg BandPass czpg - ППФ 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 - + Фильтр Вокальной форманты InstrumentSoundShapingView TARGET - Ð¥ÐРÐКТЕРИСТИКР+ ЦЕЛЬ These tabs contain envelopes. They're very important for modifying a sound, in that they are almost always necessary for substractive synthesis. For example if you have a volume envelope, you can set when the sound should have a specific volume. If you want to create some soft strings then your sound has to fade in and out very softly. This can be done by setting large attack and release times. It's the same for other envelope targets like panning, cutoff frequency for the used filter and so on. Just monkey around with it! You can really make cool sounds out of a saw-wave with just some envelopes...! - Эта вкладка позволÑет вам наÑтроить обложки. Они очень важны Ð´Ð»Ñ Ð½Ð°Ñтройки звучаниÑ. -Ðапример, Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ обложки громкоÑти вы можете задать завиÑимоÑть громкоÑти Ð·Ð²ÑƒÑ‡Ð°Ð½Ð¸Ñ Ð¾Ñ‚ времени. ЕÑли вам понадобитÑÑ Ñмулировать мÑгкие Ñтрунные, проÑто задайте большие времена нараÑÑ‚Ð°Ð½Ð¸Ñ Ð¸ иÑÑ‡ÐµÐ·Ð½Ð¾Ð²ÐµÐ½Ð¸Ñ Ð·Ð²ÑƒÐºÐ°. С помощью обложек и низкочаÑтотного генератора (LFO) вы в неÑколько щелчков мыши Ñможете Ñоздать проÑто невероÑтные звуки! + Эта вкладка позволÑет вам наÑтроить огибающие. Они очень важны Ð´Ð»Ñ Ð½Ð°Ñтройки звучаниÑ. +Ðапример, Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ огибающей громкоÑти вы можете задать завиÑимоÑть громкоÑти Ð·Ð²ÑƒÑ‡Ð°Ð½Ð¸Ñ Ð¾Ñ‚ времени. ЕÑли вам понадобитÑÑ Ñмулировать мÑгкие Ñтрунные, проÑто задайте больше времени нараÑÑ‚Ð°Ð½Ð¸Ñ Ð¸ иÑÑ‡ÐµÐ·Ð½Ð¾Ð²ÐµÐ½Ð¸Ñ Ð·Ð²ÑƒÐºÐ°. С помощью обгибающих и низкочаÑтотного оÑцилÑтора (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. - ЗдеÑÑŒ вы можете выбрать фильтр Ð´Ð»Ñ Ñтого инÑтрумента. Фильтры могут довольно Ñильно менÑть звучание. + ЗдеÑÑŒ вы можете выбрать фильтр Ð´Ð»Ñ Ð´Ð¾Ñ€Ð¾Ð¶ÐºÐ¸ Ñтого инÑтрумента. Фильтры могут довольно Ñильно менÑть звучание. 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. - Эта ручка задаёт уÑиление Ñигнала на чаÑтота Ñреза (резонанÑной чаÑтоте). + Эта ручка задаёт количеÑтво резонанÑа Ð´Ð»Ñ Ñ„Ð¸Ð»ÑŒÑ‚Ñ€Ð°, Ñтим определÑетÑÑ Ð½Ð°Ñколько нужно уÑилить ближайшие к отрезанным чаÑтоты. FREQ - ЧÐСТ + ЧÐСТ cutoff frequency: + Срез чаÑтот: + + + Envelopes, LFOs and filters are not supported by the current instrument. @@ -1795,602 +2176,629 @@ Right clicking will bring up a context menu where you can change the order in wh InstrumentTrack unnamed_track - безымÑнный канал + безымÑннаÑ_дорожка Volume - ГромкоÑть + ГромкоÑть Panning - + Стерео Pitch - Сдвиг выÑоты + ТональноÑть FX channel - Канал FX + Канал ЭФ Default preset - Ðе названо + ОÑÐ½Ð¾Ð²Ð½Ð°Ñ Ð¿Ñ€ÐµÐ´ÑƒÑтановка With this knob you can set the volume of the opened channel. - Регулировка громкоÑти текущего канала. + Регулировка громкоÑти текущего канала. Base note - ÐžÐ¿Ð¾Ñ€Ð½Ð°Ñ Ð½Ð¾Ñ‚Ð° + ÐžÐ¿Ð¾Ñ€Ð½Ð°Ñ Ð½Ð¾Ñ‚Ð° Pitch range - + Диапазон тональноÑти InstrumentTrackView Volume - ГромкоÑть + ГромкоÑть Volume: - ГромкоÑть: + ГромкоÑть: VOL - ГРМК + ГРОМ Panning - + Ð‘Ð°Ð»Ð°Ð½Ñ Panning: - СтереобаланÑ: + БаланÑ: PAN - БÐЛ + БÐЛ MIDI - MIDI + MIDI Input - Вход + Вход Output - Выход + Выход InstrumentTrackWindow GENERAL SETTINGS - ОБЩИЕ ПÐРÐМЕТРЫ - - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - Ðажмите Ñюда, чтобы Ñохранить наÑтройки текущего канала в файл предуÑтановок. Позже вы Ñможете загрузить Ñти наÑтройки через проÑмотрщик. + ОСÐОВÐЫЕ ÐÐСТРОЙКИ Instrument volume - ГромкоÑть инÑтрумента + ГромкоÑть инÑтрумента Volume: - ГромкоÑть: + ГромкоÑть: VOL - ГРМК + ГРОМ Panning - + Ð‘Ð°Ð»Ð°Ð½Ñ Panning: - СтереобаланÑ: + СтереобаланÑ: PAN - БÐЛ + БÐЛ Pitch - Сдвиг выÑоты + ТональноÑть Pitch: - Сдвиг выÑоты: + ТональноÑть: cents - центов + процентов PITCH - СДВИГ + ТОРFX channel - Канал FX + Канал ЭФ ENV/LFO - ОБЛ/LFO + ОГИБ/LFO FUNC - ÐКК / ÐРП + ФУÐКЦ FX - + ЭФ MIDI - MIDI + MIDI Save preset - + Сохранить предуÑтановку XML preset file (*.xpf) - + XML файл наÑтроек (*.xpf) PLUGIN - МОДУЛЬ - - - Save current channel settings in a preset-file - + ПЛÐГИР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. + LadspaControl Link channels - СвÑзать каналы + СвÑзать каналы LadspaControlDialog Link Channels - СвÑзать каналы + СвÑзать каналы Channel - Канал + Канал LadspaControlView Link channels - СвÑзать каналы + СвÑзать каналы Value: - Значение: + Значение: Sorry, no help available. - Извините, Ñправки нет. + Извините, Ñправки нет. LadspaEffect Effect - Эффект + Эффект Unknown LADSPA plugin %1 requested. - Запрошен неизвеÑтный модуль LADSPA «%1». + Запрошен неизвеÑтный модуль LADSPA «%1». + + + + LcdSpinBox + + Please enter a new value between %1 and %2: + Введите новое значение от %1 до %2: LfoController LFO Controller - Контроллер LFO + Ðизко-чаÑтотный оÑциллÑтор (генератор) + Контроллер LFO Base value - Опорное значение + ОÑновное значение Oscillator speed - СкороÑть генератора + СкороÑть волны Oscillator amount - + Размер волны Oscillator phase - Фаза генератора + Фаза волны Oscillator waveform - Форма Ñигнала Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ‚Ð¾Ñ€Ð° + Форма волны Frequency Multiplier - Множитель чаÑтоты + Множитель чаÑтоты LfoControllerDialog LFO - + LFO LFO Controller - Контроллер LFO + Контроллер LFO BASE - + БÐЗРBase amount: - + Кол-во базы: todo - Ñделать + доделать SPD - СКОР + СКОР LFO-speed: - СкороÑть LFO: + СкороÑть 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. Чем больше значение, тем больше чаÑтота генератора. + Эта ручка уÑтанавлÑвает ÑкороÑть LFO. Чем больше значение, тем больше чаÑтота оÑциллÑтора. 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. - Этот регулÑтор уÑтанавливает глубину модулÑции Ð´Ð»Ñ LFO. Чем больше значение, тем в большей Ñтепени Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ð°Ñ Ñ…Ð°Ñ€Ð°ÐºÑ‚ÐµÑ€Ð¸Ñтика (н-Ñ€, громкоÑть или чаÑтота Ñреза) будет завиÑеть от 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º, волна Ñначала пойдёт вниз, а не вверх. То же Ð´Ð»Ñ Ð¼ÐµÐ°Ð½Ð´Ñ€Ð° (Ñигнала прÑмоугольной формы). + Эта ручка уÑтанавливает начальную фазу ÐизкоЧаÑтотного ОÑциллÑтора (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 a moog saw-wave. - Генерировать пилообразный Ñигнал как moog. + Генерировать пилообразный Ñигнал как moog. + Муг зигзаг. Click here for an exponential wave. - Генерировать ÑкÑпоненциальный Ñигнал. + Генерировать ÑкÑпоненциальный Ñигнал. + ЭкÑпонента. Click here for white-noise. - Сгенерировать белый шум. + Белый шум. Click here for a user-defined shape. Double click to pick a file. - + Ðажмите здеÑÑŒ Ð´Ð»Ñ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»ÐµÐ½Ð¸Ñ Ñвоей формы. +Двойное нажатие Ð´Ð»Ñ Ð²Ñ‹Ð±Ð¾Ñ€Ð° файла. MainWindow Working directory - Рабочий каталог LMMS + Рабочий каталог LMMS The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - Рабочий каталог LMMS (%1) не ÑущеÑтвует. Создать его? Позже вы Ñможете Ñменить его через Правка -> Параметры. + Рабочий каталог LMMS (%1) не ÑущеÑтвует. Создать его? Позже вы Ñможете Ñменить его через Правку -> Параметры. 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. - Ðе могу запиÑать наÑтройки в файл %1. Возможно, вы не обладаете правами на запиÑÑŒ в него. + Ðе могу запиÑать наÑтройки в файл %1. Возможно, вы не обладаете правами на запиÑÑŒ в него. ПожалуйÑта, проверьте Ñвои права и попробуйте Ñнова. &Project - &Проект + &P Проект &New - &Ðовый + &N Ðовый &Open... - &Открыть... + &Открыть... Recently opened projects - ПоÑледние открывавшиеÑÑ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ñ‹ + Ðедавние проекты &Save - &Сохранить + &S Сохранить Save &As... - Сохранить &как... + &A Сохранить как... Import... - Импорт... + Импорт... E&xport... - &ЭкÑпорт... + &X ЭкÑпорт... &Quit - &Выйти + &Q Выйти &Edit - &Правка + &E Правка Settings - Параметры + Параметры &Tools - &Ð¡ÐµÑ€Ð²Ð¸Ñ + &T Ð¡ÐµÑ€Ð²Ð¸Ñ &Help - &Справка + &H Справка Online help - Справка в Ñети + Справка в Ñети Help - Справка + Справка What's this? - Что Ñто? + Что Ñто? About - О программе + О программе Create new project - Создать новый проект + Создать новый проект Create new project from template - Создать новый проект по шаблону + Создать новый проект по шаблону Open existing project - Открыть ÑущеÑтвующий проект + Открыть ÑущеÑтвующий проект Recently opened project - ПоÑледние открывавшиеÑÑ Ð¿Ñ€Ð¾ÐµÐºÑ‚Ñ‹ + Ðедавние проекты Save current project - Сохранить текущий проект + Сохранить текущий проект Export current project - ЭкÑпортировать проект в звуковой файл + ЭкÑпорт проекта 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. - По нажатию Ñтой кнопки запуÑкаетÑÑ ÑеквенÑор LMMS. С его помощью вы можете легко редактировать шаблоны мелодии. + ЗапуÑк редатора нот. С его помощью вы можете легко редактировать мелодии. Show/hide Automation Editor - Показать/Ñкрыть редактор временн<b>Ñ‹</b>Ñ… завиÑимоÑтей + Показать/Ñкрыть редактор автоматизации 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. - Ðажатием Ñтой кнопки показываетÑÑ/убираетÑÑ Ð¾ÐºÐ½Ð¾ редактора временн<b>Ñ‹</b>Ñ… завиÑимоÑтей. С его помощью вы можете редактировать Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð²Ñ‹Ð±Ñ€Ð°Ð½Ð½Ñ‹Ñ… величин Ñо временем. + Показать/Ñкрыть окно редактора автоматизации. С его помощью вы можете легко редактироватьдинамику выбранных величин. Show/hide FX Mixer - Показать/Ñкрыть микшер 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. - Ðажмите здеÑÑŒ чтобы Ñкрыть/показать микшер 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 - Ðеназванный + Ðеназванный LMMS %1 - LMMS %1 + LMMS %1 Project not saved - Проект не Ñохранён + Проект не Ñохранён The current project was modified since last saving. Do you want to save it now? - Проект был изменён. Сохранить его ÑейчаÑ? + Проект был изменён. Сохранить его ÑейчаÑ? Open project - Открыть проект + Открыть проект Save project - Сохранить проект + Сохранить проект 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 . My projects - + Мои проекты My samples - + Мои запиÑи My presets - + Мои предуÑтановки My home - + Домой My computer - + Мой компьютер Root directory - + ÐšÐ¾Ñ€Ð½ÐµÐ²Ð°Ñ Ð¿Ð°Ð¿ÐºÐ° Save as new &version - + &V Сохранить как новую верÑию E&xport tracks... - + &X ÑкÑпортировать дорожки... LMMS (*.mmp *.mmpz) - - - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - + LMMS (*.mmp *.mmpz) Version %1 - + ВерÑÐ¸Ñ %1 Project recovery - + ВоÑÑтановление проекта It looks like the last session did not end properly. Do you want to recover the project of this session? - + КажетÑÑ, поÑледнÑÑ ÑеÑÑÐ¸Ñ Ð±Ñ‹Ð»Ð° неправильно закрыта. Хотите воÑÑтановить проект Ñтой ÑеÑÑии? Configuration file - + Файл наÑтроек Error while parsing configuration file at line %1:%2: %3 + Ошибка во Ð²Ñ€ÐµÐ¼Ñ Ð¾Ð±Ñ€Ð°Ð±Ð¾Ñ‚ÐºÐ¸ файла наÑтроек в Ñтроке %1:%2: %3 + + + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) @@ -2398,345 +2806,1214 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MeterDialog Meter Numerator - ЧиÑлитель + чиÑлитель + Шкала чиÑел Meter Denominator - Знаменатель + знаменатель + Шкала делений TIME SIG - + ПЕРИОД MeterModel Numerator - ЧиÑлитель + ЧиÑлитель Denominator - Знаменатель + Знаменатель MidiAlsaRaw::setupWidget DEVICE - УСТРОЙСТВО + УСТРОЙСТВО MidiAlsaSeq::setupWidget DEVICE - УСТРОЙСТВО + УСТРОЙСТВО MidiController MIDI Controller - Контроллер MIDI + Контроллер 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 при компилÑции ЛММС, он иÑпользуетÑÑ Ð´Ð»Ñ Ð´Ð¾Ð±Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ð¾Ñновного звука в импортируемые Миди файлы, поÑтому звука не будет поÑле импорта Ñтого миди файла. MidiOss::setupWidget DEVICE - УСТРОЙСТВО + УСТРОЙСТВО MidiPort Input channel - Входной канал + Вход Output channel - Выходной канал + Выход Input controller - Входной контроллер + Контроллер входа Output controller - Выходной контроллер + Контроллер выхода Fixed input velocity - + ПоÑтоÑÐ½Ð½Ð°Ñ ÑкороÑть ввода Fixed output velocity - + ПоÑтоÑÐ½Ð½Ð°Ñ ÑкороÑть вывода Output MIDI program - + Программа Ð´Ð»Ñ Ð²Ñ‹Ð²Ð¾Ð´Ð° MiDi Receive MIDI-events - Принимать ÑÐ¾Ð±Ñ‹Ñ‚Ð¸Ñ MIDI + Принимать ÑÐ¾Ð±Ñ‹Ñ‚Ð¸Ñ MIDI Send MIDI-events - ОтправлÑть ÑÐ¾Ð±Ñ‹Ñ‚Ð¸Ñ MIDI + ОтправлÑть ÑÐ¾Ð±Ñ‹Ñ‚Ð¸Ñ MIDI 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 + + + + + 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. + + + + + 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 + ГромкоÑть оÑциллÑтора %1 Osc %1 panning - Ð¡Ñ‚ÐµÑ€ÐµÐ¾Ð±Ð°Ð»Ð°Ð½Ñ Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ‚Ð¾Ñ€Ð° %1 + Ð¡Ñ‚ÐµÑ€ÐµÐ¾Ð±Ð°Ð»Ð°Ð½Ñ Ð´Ð»Ñ Ð¾ÑциллÑтора %1 Osc %1 coarse detuning - РаÑÑтройка генератора %1 (грубо) + ПодÑтройка оÑциллÑтора %1 Ð³Ñ€ÑƒÐ±Ð°Ñ Osc %1 fine detuning left - РаÑÑтройка левого канала генератора %1 + ПодÑтройка левого канала оÑциллÑтора %1 Ñ‚Ð¾Ð½ÐºÐ°Ñ Osc %1 fine detuning right - РаÑÑтройка правого канала генератора %1 + ПодÑтройка правого канала оÑциллÑтора %1 Ñ‚Ð¾Ð½ÐºÐ°Ñ Osc %1 phase-offset - Сдвиг фазы Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ‚Ð¾Ñ€Ð° %1 + Сдвиг фазы Ð´Ð»Ñ Ð¾ÑциллÑтора %1 Osc %1 stereo phase-detuning - Ð¤Ð°Ð·Ð¾Ð²Ð°Ñ Ñ€Ð°ÑÑтройка генератора %1 между каналами + ПодÑтройка Ñтерео-фазы оÑциллÑтора %1 Osc %1 wave shape - Форма Ñигнала генератора No %1 + ГладкоÑть Ñигнала оÑциллÑтора %1 Modulation type %1 - Тип модулÑции: %1 + Тип модулÑции %1 Osc %1 waveform - Форма Ñигнала Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ‚Ð¾Ñ€Ð° %1 + Форма Ñигнала оÑциллÑтора %1 + + + 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. - ЗдеÑÑŒ включаетÑÑ/выключаетÑÑ Ñ€ÐµÐ¶Ð¸Ð¼ повтора. ЕÑли он включён, то PatMan будет иÑпользовать информацию о повторе из файла. + ЗдеÑÑŒ включаетÑÑ/выключаетÑÑ Ñ€ÐµÐ¶Ð¸Ð¼ повтора, при включёнии 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 изменит образец так, чтобы он Ñовпадал по чаÑтоте Ñ Ð½Ð¾Ñ‚Ð¾Ð¹. + ЗдеÑÑŒ включаетÑÑ/выключаетÑÑ Ñ€ÐµÐ¶Ð¸Ð¼ подÑтройки. ЕÑли он включён, то PatMan изменит запиÑÑŒ так, чтобы она Ñовпадала по чаÑтоте Ñ Ð½Ð¾Ñ‚Ð¾Ð¹. No file selected - Ðе выбран файл + Ðе выбран файл Open patch file - Открыть патч-файл + Открыть патч-файл Patch-Files (*.pat) - Патч-файлы (*.pat) + Патч-файлы (*.pat) + + + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume 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. - + Из-за ошибки в Ñтарой верÑии LMMS контроллеры вершин не могут правильно подключатьÑÑ. Пж. убедитеÑÑŒ, что контроллеры вершин правильно подÑоединены и переÑохраните Ñтот файл, извините, за причинённые неудобÑтва. PeakControllerDialog PEAK - + ПИК LFO Controller - Контроллер LFO + Контроллер LFO PeakControllerEffectControlDialog BASE - + БÐЗРBase amount: - + Базовое значение: Modulation amount: - Глубина модулÑции: + Глубина модулÑции: Attack: - ДлительноÑть нараÑтаниÑ: + Ð’Ñтупление: Release: - ДлительноÑть иÑчезновениÑ: + Убывание: AMNT - + ГЛУБ MULT - + МÐОЖ Amount Multiplicator: - + Величина множителÑ: ATCK - + ВСТУП DCAY - + СПÐД PeakControllerEffectControls Base value - Опорное значение + Опорное значение Modulation amount - Глубина модулÑции + Глубина модулÑции Mute output - Заглушить + Заглушить вывод Attack - ДлительноÑть нараÑÑ‚Ð°Ð½Ð¸Ñ + Ð’Ñтупление Release - ДлительноÑть иÑÑ‡ÐµÐ·Ð½Ð¾Ð²ÐµÐ½Ð¸Ñ + Убывание Abs Value - + ÐÐ±Ñ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¸Ðµ Amount Multiplicator + Величина Ð¼Ð½Ð¾Ð¶Ð¸Ñ‚ÐµÐ»Ñ + + + + PianoRoll + + Cut selected notes (Ctrl+X) + ПеремеÑтить выделенные ноты в буфер (Ctrl+X) + + + Copy selected notes (Ctrl+C) + Копировать выделенные ноты в буфер (Ctrl+X) + + + Paste notes from clipboard (Ctrl+V) + Ð’Ñтавить ноты из буфера (Ctrl+V) + + + Play/pause current pattern (Space) + ВоÑпроизведение текущего шаблона/пауза (Пробел) + + + Stop playing of current pattern (Space) + ОÑтановить воÑпроизвдение шаблона (Пробел) + + + Piano-Roll - no pattern + Ðотный редактор - без шаблона + + + Piano-Roll - %1 + Ðотный редактор - %1 + + + Please open a pattern by double-clicking on it! + Откройте шаблон Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ двойного щелчка мышью! + + + Record notes from MIDI-device/channel-piano + ЗапиÑать ноты Ñ Ñ†Ð¸Ñ„Ñ€Ð¾Ð²Ð¾Ð³Ð¾ музыкального инÑтрумента (MIDI) + + + Last note + По поÑл. ноте + + + Draw mode (Shift+D) + Режим риÑÐ¾Ð²Ð°Ð½Ð¸Ñ (Shift+D) + + + Erase mode (Shift+E) + Режим ÑÑ‚Ð¸Ñ€Ð°Ð½Ð¸Ñ Ð½Ð¾Ñ‚ (Shift+E) + + + Select mode (Shift+S) + Режим выбора нот (Shift+S) + + + Record notes from MIDI-device/channel-piano while playing song or BB track + ЗапиÑать ноты Ñ Ñ†Ð¸Ñ„Ñ€Ð¾Ð²Ð¾Ð³Ð¾ музыкального инÑтрумента (MIDI) во Ð²Ñ€ÐµÐ¼Ñ Ð²Ð¾ÑÐ¿Ñ€Ð¾Ð¸Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ ÐºÐ¾Ð¼Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ð¸ или дорожки Ритм-БаÑÑа + + + 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. + Ðажмите здеÑÑŒ, еÑли вы хотите оÑтановить воÑпроизведение текущего шаблона. + + + 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. + При нажатии на Ñту кнопку ноты из буфера будут вÑтавлены в первый видимый такт. + + + Note lock + ФикÑÐ°Ñ†Ð¸Ñ Ð½Ð¾Ñ‚ + + + Note Volume + ГромкоÑть нот + + + Note Panning + Ð¡Ñ‚ÐµÑ€ÐµÐ¾Ñ„Ð¾Ð½Ð¸Ñ Ð½Ð¾Ñ‚ + + + 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 Ctrl to temporarily go into select mode. + Режим риÑÐ¾Ð²Ð°Ð½Ð¸Ñ Ð½Ð¾Ñ‚, в нём вы можете добавлÑть/перемещать и изменÑть длительноÑть одиночных нот. Это режим по умолчанию и иÑпользуетÑÑ Ð±Ð¾Ð»ÑŒÑˆÑƒÑŽ чаÑть времени. +Ð”Ð»Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ñтого режима можно иÑпользовать комбинацию клавиш Shift+D, удерживайте Ctrl Ð´Ð»Ñ Ð²Ñ€ÐµÐ¼ÐµÐ½Ð½Ð¾Ð³Ð¾ Ð¿ÐµÑ€ÐµÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ð² режим выбора. + + + 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 Ctrl in draw mode to temporarily use select mode. + Режим выделениÑ. Ð’ Ñтом режиме можно выделÑть ноты, можно также удерживать Ctrl в режиме риÑованиÑ, чтобы можно было на Ð²Ñ€ÐµÐ¼Ñ Ð²Ð¾Ð¹Ñ‚Ð¸ в режим выделениÑ. + + + 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. + Режим подÑтройки. Ð’ Ñтом режиме можно выбирать ноты Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ð·Ð°Ñ†Ð¸Ð¸ их подÑтраиваниÑ. Можно иÑпользовать Ñто Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÑ…Ð¾Ð´Ð¾Ð² нот от одной к другой. Ð”Ð»Ñ Ð°ÐºÑ‚Ð¸Ð²Ð°Ñ†Ð¸Ð¸ Ñ ÐºÐ»Ð°Ð²Ð¸Ð°Ñ‚ÑƒÑ€Ñ‹ <Shift+T>. + + + Mark/unmark current semitone + Отметить/СнÑть отметку Ñ Ñ‚ÐµÐºÑƒÑ‰ÐµÐ³Ð¾ полутона + + + Mark current scale + Отметить текущий подъём + + + Mark current chord + Отметить текущий аккорд + + + Unmark all + СнÑть выделение + + + No scale + Без подъёма + + + No chord + Убрать аккорды + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + Введите новое значение от %1 до %2: + PianoView Base note - ÐžÐ¿Ð¾Ñ€Ð½Ð°Ñ Ð½Ð¾Ñ‚Ð° + ÐžÐ¿Ð¾Ñ€Ð½Ð°Ñ Ð½Ð¾Ñ‚Ð° Plugin Plugin not found - Модуль не найден + Модуль не найден The plugin "%1" wasn't found or could not be loaded! Reason: "%2" - Модуль «%1» отÑутÑтвует либо не может быть загружен! + Модуль «%1» отÑутÑтвует либо не может быть загружен! Причина: «%2» Error while loading plugin - Ошибка загрузки Ð¼Ð¾Ð´ÑƒÐ»Ñ + Ошибка загрузки Ð¼Ð¾Ð´ÑƒÐ»Ñ Failed to load plugin "%1"! - Ошибка загрузки Ð¼Ð¾Ð´ÑƒÐ»Ñ Â«%1»! + Ðе получилоÑÑŒ загрузить модуль «%1»! + + + LMMS plugin %1 does not have a plugin descriptor named %2! + ProjectRenderer WAV-File (*.wav) - Файл WAV (*.wav) + Файл WAV (*.wav) Compressed OGG-File (*.ogg) - Сжатый файл OGG (*.ogg) + Сжатый файл OGG (*.ogg) @@ -2744,87 +4021,87 @@ Reason: "%2" C Note name - + До-диез C Db Note name - + Ре-бемоль Db C# Note name - + До-мажор C# D Note name - + Ре-диез D Eb Note name - + Ми-бемоль Eb D# Note name - + Ре-мажор D# E Note name - + Ми-диез E Fb Note name - + Фа-бемоль Fb Gb Note name - + Соль-бемоль Gb F# Note name - + Фа-мажор F# G Note name - + Соль-диез G Ab Note name - + ЛÑ-бемоль Ab G# Note name - + Соль-мажор G# A Note name - + Ð›Ñ Ð´Ð¸ÐµÐ· A Bb Note name - + Си-бемоль Bb A# Note name - + ЛÑ-мажор A# B Note name - + Си-диез B @@ -2839,11 +4116,11 @@ Reason: "%2" Maker: - Создал: + Создатель: Copyright: - Права принадлежат: + Правообладатель: Requires Real Time: @@ -2863,623 +4140,1019 @@ Reason: "%2" In Place Broken: - Вход и выход могут Ñовпадать: + ВмеÑто Ñломанного: Channels In: - Входных каналов: + Каналы в: Channels Out: - Выходных каналов: + Каналы из: + + + File: %1 + SampleBuffer Open audio file - Открыть звуковой файл - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - Ð’Ñе звуковые файлы (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) + Открыть звуковой файл Wave-Files (*.wav) - Файлы Wave (*.wav) + Файлы Wave (*.wav) OGG-Files (*.ogg) - Файлы OGG (*.ogg) + Файлы OGG (*.ogg) DrumSynth-Files (*.ds) - Файлы DrumSynth (*.ds) + Файлы DrumSynth (*.ds) FLAC-Files (*.flac) - Файлы FLAC (*.flac) + Файлы FLAC (*.flac) SPEEX-Files (*.spx) - Файлы SPEEX (*.spx) - - - MP3-Files (*.mp3) - Файлы MPEG1 L3 (*.mp3) + Файлы SPEEX (*.spx) VOC-Files (*.voc) - Файлы VOC (*.voc) + Файлы VOC (*.voc) AIFF-Files (*.aif *.aiff) - Файлы AIFF (*.aif *.aiff) + Файлы AIFF (*.aif *.aiff) AU-Files (*.au) - Файлы AU (*.au) + Файлы AU (*.au) RAW-Files (*.raw) - Файлы RAW (*.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 (<Ctrl> + middle click) - Заглушить/включить (Crl + ÑреднÑÑ ÐºÐ½Ð¾Ð¿ÐºÐ° мыши) + Заглушить/включить (<Ctrl> + ÑреднÑÑ ÐºÐ½Ð¾Ð¿ÐºÐ° мыши) Set/clear record - УÑтановить/очиÑтить запиÑÑŒ + УÑтановить/очиÑтить запиÑÑŒ SampleTrack Sample track - Дорожка + Дорожка запиÑи Volume - ГромкоÑть + ГромкоÑть SampleTrackView Track volume - ГромкоÑть дорожки + ГромкоÑть дорожки Channel volume: - ГромкоÑть канала: + ГромкоÑть канала: VOL - ГРМК + ГРОМ + + + + SongEditor + + Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. + Ðажмите Ñюда, еÑли вы хотите оÑтановить воÑпроизведение мелодии. КурÑор при Ñтом будет уÑтановлен на начало композиции. + + + Could not open file + Ðе могу открыть файл + + + Could not write file + Ðе могу запиÑать файл + + + Song-Editor + Музыкальный редактор + + + 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. + Ðажмите, чтобы проÑлушать Ñозданную мелодию. ВоÑпроизведение начнётÑÑ Ñ Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ð¸ курÑора (зелёный треугольник); вы можете двигать его во Ð²Ñ€ÐµÐ¼Ñ Ð¿Ñ€Ð¾Ð¸Ð³Ñ€Ñ‹Ð²Ð°Ð½Ð¸Ñ. + + + Play song (Space) + Ðачать воÑпроизведение (Пробел) + + + Stop song (Space) + ОÑтановить воÑпроизведение (Пробел) + + + Add beat/bassline + Добавить ритм/баÑÑ + + + Add sample-track + Добавить дорожку запиÑи + + + Draw mode + Режим риÑÐ¾Ð²Ð°Ð½Ð¸Ñ + + + Edit mode (select and move) + Правка (выделение/перемещение) + + + Record samples from Audio-device + ЗапиÑать ÑÑмпл Ñо звукового уÑтройÑтва + + + Record samples from Audio-device while playing song or BB track + ЗапиÑать ÑÑмпл Ñ Ð°ÑƒÐ´Ð¸Ð¾-уÑтройÑтва во Ð²Ñ€ÐµÐ¼Ñ Ð²Ð¾ÑÐ¿Ñ€Ð¾Ð¸Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ð² музыкальном или ритм/баÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€Ðµ + + + Add automation-track + Добавить дорожку автоматизации + + + 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). Ðа каждый такт приходитÑÑ Ñ‡ÐµÑ‚Ñ‹Ñ€Ðµ удара, так что темп в ударах в минуту фактичеÑки указывает, Ñколько четвертей такта проигрываетÑÑ Ð·Ð° минуту (или, что то же, количеÑтво тактов, проигрываемых за четыре минуты). + + + 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 Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñи, возможно, нет разрешений на запиÑÑŒ в Ñтот файл, пж. удоÑтоверьтеÑÑŒ, что еÑть доÑтуп к Ñтому файлу и попробуйте Ñнова. + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + Линейный Ñпектр + + + Linear Y axis + Ð›Ð¸Ð½ÐµÐ¹Ð½Ð°Ñ Ð¾ÑÑŒ ординат + + + + SpectrumAnalyzerControls + + Linear spectrum + Линейный Ñпектр + + + Linear Y axis + Ð›Ð¸Ð½ÐµÐ¹Ð½Ð°Ñ Ð¾ÑÑŒ ординат + + + Channel mode + Режим канала TempoSyncKnob Tempo Sync - Ð¡Ð¸Ð½Ñ…Ñ€Ð¾Ð½Ð¸Ð·Ð°Ñ†Ð¸Ñ + Ð¡Ð¸Ð½Ñ…Ñ€Ð¾Ð½Ð¸Ð·Ð°Ñ†Ð¸Ñ Ñ‚ÐµÐ¼Ð¿Ð° No Sync - Синхронизации нет + Синхронизации нет Eight beats - ВоÑемь ударов (две ноты) + ВоÑемь ударов (две ноты) Whole note - Ð¦ÐµÐ»Ð°Ñ Ð½Ð¾Ñ‚Ð° + Ð¦ÐµÐ»Ð°Ñ Ð½Ð¾Ñ‚Ð° Half note - Полунота + Полунота Quarter note - Четверть ноты + Четверть ноты 8th note - ВоÑÑŒÐ¼Ð°Ñ Ð½Ð¾Ñ‚Ñ‹ + ВоÑÑŒÐ¼Ð°Ñ Ð½Ð¾Ñ‚Ñ‹ 16th note - 1/16 ноты + 1/16 ноты 32nd note - 1/32 ноты + 1/32 ноты Custom... - ÐаÑтроить... + СвоÑ... &Help - &Справка + &H Справка Custom - ÐаÑтроить + Ð¡Ð²Ð¾Ñ Synced to Eight Beats - Синхронизировано по двум нотам + Синхро по 8 ударам Synced to Whole Note - Синхронизировано по целой ноте + Синхро по целой ноте Synced to Half Note - Синхронизировано по половине ноты + Синхро по половине ноты Synced to Quarter Note - Синхронизировано по четверти ноты + Синхро по четверти ноты Synced to 8th Note - Синхронизировано по 1/8 ноты + Синхро по 1/8 ноты Synced to 16th Note - Синхронизировано по 1/16 ноты + Синхро по 1/16 ноты Synced to 32nd Note - Синхронизировано по 1/32 ноты + Синхро по 1/32 ноты TimeDisplayWidget click to change time units - + нажми Ð´Ð»Ñ Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ ÐµÐ´Ð¸Ð½Ð¸Ñ† времени 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. + Ðе могу найти фильтр Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð° файла %1. Ð”Ð»Ñ Ð¿Ð¾Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ñтого файла преобразуйте его в формат, поддерживаемый LMMS. Couldn't open file - Ðе могу открыть файл + Ðе могу открыть файл Couldn't open file %1 for reading. Please make sure you have read-permission to the file and the directory containing the file and try again! - Ðе могу открыть файл %1 Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñи. + Ðе могу открыть файл %1 Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñи. Проверьте, обладаете ли вы правами на запиÑÑŒ в выбранный файл и Ñодержащий его каталог и попробуйте Ñнова! Loading project... - Чтение проекта... + Чтение проекта... Cancel - Отменить + Отменить Please wait... - Подождите, пожалуйÑта... + Подождите, пожалуйÑта... Importing MIDI-file... - Импортирую файл MIDI... + Импортирую файл MIDI... Importing FLP-file... - Импортирую файл FLP... + Импортирую файл FLP... TripleOscillatorView Use phase modulation for modulating oscillator 2 with oscillator 1 - Модулировать фазу второго генератора Ñигналом Ñ Ð¿ÐµÑ€Ð²Ð¾Ð³Ð¾ + Модулировать фазу оÑциллÑтора 2 Ñигналом Ñ 1 Use amplitude modulation for modulating oscillator 2 with oscillator 1 - Модулировать амплитуду генератора 2 Ñигналом Ñ Ð¿ÐµÑ€Ð²Ð¾Ð³Ð¾ генератора + Модулировать амплитуду оÑциллÑтора 2 Ñигналом Ñ Ð¿ÐµÑ€Ð²Ð¾Ð³Ð¾ Mix output of oscillator 1 & 2 - &Смешать Ñигналы первого и второго генераторов + Смешать выводы 1 и 2 оÑциллÑторов Synchronize oscillator 1 with oscillator 2 - Синхронизировать первый генератор по второму + Синхронизировать первый оÑциллÑтор по второму Use frequency modulation for modulating oscillator 2 with oscillator 1 - Модулировать чаÑтоту генератора 2 Ñигналом Ñ Ð¿ÐµÑ€Ð²Ð¾Ð³Ð¾ генератора + Модулировать чаÑтоту оÑциллÑтора 2 Ñигналом Ñ 1 Use phase modulation for modulating oscillator 3 with oscillator 2 - Модулировать фазу третьего генератора Ñигналом Ñо второго + Модулировать фазу оÑциллÑтора 3 Ñигналом Ñ 2 Use amplitude modulation for modulating oscillator 3 with oscillator 2 - Модулировать амплитуду генератора 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 3 with oscillator 2 - Модулировать чаÑтоту генератора 3 Ñигналом Ñо второго генератора + Модулировать чаÑтоту оÑциллÑтора 3 Ñигналом Ñо 2 Osc %1 volume: - ГромкоÑть генератора %1: + ГромкоÑть оÑциллÑтора %1: With this knob you can set the volume of oscillator %1. When setting a value of 0 the oscillator is turned off. Otherwise you can hear the oscillator as loud as you set it here. - Этот регулÑтор уÑтанавливает громкоÑть генератора %1. ЕÑли 0, то генератор выключаетÑÑ. + Эта ручка уÑтанавливает громкоÑть оÑциллÑтора %1. ЕÑли 0, то оÑциллÑтор выключаетÑÑ, иначе будет Ñлышно наÑтолько громко , как тут уÑтановлено. Osc %1 panning: - Ð¡Ñ‚ÐµÑ€ÐµÐ¾Ð±Ð°Ð»Ð°Ð½Ñ Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ‚Ð¾Ñ€Ð° %1: + Ð‘Ð°Ð»Ð°Ð½Ñ Ð´Ð»Ñ Ð¾ÑциллÑтора %1: With this knob you can set the panning of the oscillator %1. A value of -100 means 100% left and a value of 100 moves oscillator-output right. - РегулÑтор ÑтереобаланÑа генератора %1. Величина -100 означает, что Ñигнал идёт только в левый канал, а 100 - в правый. + РегулÑтор ÑтереобаланÑа оÑциллÑтора %1. Величина -100 обозначает, что 100% Ñигнала идёт в левый канал, а 100 - в правый. Osc %1 coarse detuning: - РаÑÑтройка генератора %1 (грубо): + Ð“Ñ€ÑƒÐ±Ð°Ñ Ð¿Ð¾Ð´Ñтройка оÑциллÑтора %1: semitones - полутон[а,ов] + полутон[а,ов] With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. - Ð“Ñ€ÑƒÐ±Ð°Ñ Ñ€ÐµÐ³ÑƒÐ»Ð¸Ñ€Ð¾Ð²ÐºÐ° раÑÑтройки генератора %1. Возможна раÑÑтройка до 12 полутонов (до одной октавы) вверх и вниз. Полезно Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð°ÐºÐºÐ¾Ñ€Ð´Ð¾Ð². + Ð“Ñ€ÑƒÐ±Ð°Ñ Ñ€ÐµÐ³ÑƒÐ»Ð¸Ñ€Ð¾Ð²ÐºÐ° подÑтройки оÑциллÑтора %1. Возможна подÑтройка до 12 полутонов (до одной октавы) вверх и вниз. Полезно Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ Ð°ÐºÐºÐ¾Ñ€Ð´Ð¾Ð². Osc %1 fine detuning left: - РаÑÑтройка левого канала генератора %1: + Ð¢Ð¾Ñ‡Ð½Ð°Ñ Ð¿Ð¾Ð´Ñтройка левого канала оÑциллÑтора %1: cents - центов + Проценты With this knob you can set the fine detuning of oscillator %1 for the left channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Этот регулÑтор уÑтанавливает точную раÑÑтойку Ð´Ð»Ñ Ð»ÐµÐ²Ð¾Ð³Ð¾ канала генератора %1. РаÑÑтройка задаётÑÑ Ð² диапазоне от -100 Ñотых до +100 Ñотых. Это полезно Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ "толÑтых" звуков. + Эта ручка уÑтанавливает точную подÑтройку Ð´Ð»Ñ Ð»ÐµÐ²Ð¾Ð³Ð¾ канала оÑциллÑтора %1. ПодÑтройка задаётÑÑ Ð² диапазоне от -100 Ñотых до +100 Ñотых. Это полезно Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ "Ñочных" звуков. Osc %1 fine detuning right: - РаÑÑтройка правого канала генератора %1: + Ð¢Ð¾Ñ‡Ð½Ð°Ñ Ð¿Ð¾Ð´Ñтройка правого канала оÑциллÑтора %1: With this knob you can set the fine detuning of oscillator %1 for the right channel. The fine-detuning is ranged between -100 cents and +100 cents. This is useful for creating "fat" sounds. - Этот регулÑтор уÑтанавливает точную раÑÑтойку Ð´Ð»Ñ Ð¿Ñ€Ð°Ð²Ð¾Ð³Ð¾ канала генератора %1. РаÑÑтройка задаётÑÑ Ð² диапазоне от -100 Ñотых до +100 Ñотых. Это полезно Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ "толÑтых" звуков. + Эта ручка уÑтанавливает точную подÑтройку Ð´Ð»Ñ Ð¿Ñ€Ð°Ð²Ð¾Ð³Ð¾ канала оÑциллÑтора %1. ПодÑтройка задаётÑÑ Ð² диапазоне от -100 Ñотых до +100 Ñотых. Это полезно Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ "Ñочных" звуков. Osc %1 phase-offset: - Сдвиг фазы Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ‚Ð¾Ñ€Ð° %1: + Сдвиг фазы оÑциллÑтора %1: degrees - Ëš + градуÑÑ‹ With this knob you can set the phase-offset of oscillator %1. That means you can move the point within an oscillation where the oscillator begins to oscillate. For example if you have a sine-wave and have a phase-offset of 180 degrees the wave will first go down. It's the same with a square-wave. - Этот регулÑтор уÑтанавливает начальную фазу генератора â„–%1, Ñ‚. е. точку, Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð¹ генератор начинает вырабатывать Ñигнал. Ðапример, еÑли вы задали ÑинуÑоидальную форму Ñигнала и начальную фазу 180º, волна Ñначала пойдёт вниз, а не вверх. То же Ð´Ð»Ñ Ð¼ÐµÐ°Ð½Ð´Ñ€Ð° (Ñигнала прÑмоугольной формы). + Эта ручка уÑтанавливает начальную фазу оÑциллÑтора %1, Ñ‚. е. точку, Ñ ÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð¹ оÑциллÑтор начинает вырабатывать Ñигнал. Ðапример, еÑли вы задали ÑинуÑоидальную форму Ñигнала и начальную фазу 180º, волна Ñначала пойдёт вниз, а не вверх. То же Ð´Ð»Ñ Ð¼ÐµÐ°Ð½Ð´Ñ€Ð° (Ñигнала прÑмоугольной формы). Osc %1 stereo phase-detuning: - Ð¤Ð°Ð·Ð¾Ð²Ð°Ñ Ñ€Ð°ÑÑтройка генератора %1 между каналами: + ПодÑтройка Ñтерео фазы оÑциллÑтора %1: With this knob you can set the stereo phase-detuning of oscillator %1. The stereo phase-detuning specifies the size of the difference between the phase-offset of left and right channel. This is very good for creating wide stereo sounds. - Этот регулÑтор уÑтанавливает фазовую раÑÑтройку генератора %1 между каналами, то еÑть разноÑть фаз между левым и правым каналами. Это удобно Ð´Ð»Ñ ÑÐ¾Ð·Ð´Ð°Ð½Ð¸Ñ ÑтереоÑффектов. + Эта ручка уÑтанавливает фазовую подÑтройку оÑциллÑтора %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. - Генерировать пилообразный Ñигнал, как в moog. + ИÑпользовать муг-зигзаг Ð´Ð»Ñ Ñтого оÑциллÑтора. Use an exponential wave for current oscillator. - Генерировать ÑкÑпоненциальный Ñигнал. + ИÑпользовать ÑкÑпоненциальный Ñигнал Ð´Ð»Ñ Ñтого оÑциллÑтора. Use white-noise for current oscillator. - Генерировать белый шум. + ИÑпользовать белый шум Ð´Ð»Ñ Ñтого оÑциллÑтора. Use a user-defined waveform for current oscillator. - Задать форму Ñигнала. + Задать форму Ñигнала. Ui Contributors ordered by number of commits: - + Разработчики Ñортированные по чиÑлу коммитов: Involved - + УчаÑтники VersionedSaveDialog Increment version number - + УвеличивающийÑÑ Ð½Ð¾Ð¼ÐµÑ€ верÑии Decrement version number - + ПонижающийÑÑ Ð½Ð¾Ð¼ÐµÑ€ верÑии 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. - Эта кнопка Ñкрывает/показывает графичеÑкий пользовательÑкий Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ (GUI) выбранного Ð¼Ð¾Ð´ÑƒÐ»Ñ VST. + Скрывает/показывает графичеÑкий пользовательÑкий Ð¸Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ (GUI) выбранного Ð¼Ð¾Ð´ÑƒÐ»Ñ VST. Turn off all notes - Выключить вÑе ноты + Выключить вÑе ноты Open VST-plugin - Открыть модуль VST + Открыть модуль VST DLL-files (*.dll) - Бибилиотеки DLL (*.dll) + Бибилиотеки DLL (*.dll) EXE-files (*.exe) - Программы EXE (*.exe) + Программы EXE (*.exe) No VST-plugin loaded - Модуль VST не загружен + Модуль 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 предуÑтановок. Preset - + ПредуÑтановка by - + от - VST plugin control - + - управление VST плагином 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 Loading plugin - Загрузка Ð¼Ð¾Ð´ÑƒÐ»Ñ - - - Please wait while loading VST-plugin... - Подождите, пока загружаетÑÑ Ð¼Ð¾Ð´ÑƒÐ»ÑŒ VST... - - - Failed loading VST-plugin - Ðе Ñмог загрузить модуль VST - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - Отчего-то модуль VST %1 не мог быть загружен. -ЕÑли другое программное обеÑпечение VST работает у Ð’Ð°Ñ Ð¿Ð¾Ð´ Linux'ом, ÑвÑжитеÑÑŒ Ñ Ñ€Ð°Ð·Ñ€Ð°Ð±Ð¾Ñ‚Ñ‡Ð¸ÐºÐ¾Ð¼ LMMS! + Загрузка Ð¼Ð¾Ð´ÑƒÐ»Ñ 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... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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 + + + + 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 @@ -3487,106 +5160,106 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer 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. 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 ÑƒÐ¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ @@ -3597,72 +5270,50 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Start of sample - Ðачало образца + Ðачало запиÑи End of sample - Конец образца + Конец запиÑи Reverse sample - Перевернуть образец - - - Loop - ПовторÑть + Перевернуть запиÑÑŒ Stutter + Запинание + + + Loopback point - - - bassBoosterControlDialog - FREQ - ЧÐСТ + Loop mode + Режим повтора - Frequency: - ЧаÑтота: + Interpolation mode + - GAIN - УСИЛ + None + - Gain: - УÑиление: + Linear + - RATIO - ОТР- - - Ratio: - Отношение: - - - - bassBoosterControls - - Frequency - ЧаÑтота - - - Gain - УÑиление - - - Ratio - Отношение + Sinc + bbEditor Play/pause current beat/bassline (Space) - ВоÑпроизведение/пауза + Игра/пауза текущей линии ритма/баÑÑа (<Space>) Add beat/bassline @@ -3670,11 +5321,11 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Beat+Bassline Editor - Пошаговый ÑеквенÑор + Ритм БаÑÑ Ð ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ Stop playback of current beat/bassline (Space) - ОÑтановить воÑпроизведение текущего лейтмотива (ПРОБЕЛ) + ОÑтановить воÑпроизведение текущей линии ритм-баÑÑа (ПРОБЕЛ) Add automation-track @@ -3682,7 +5333,7 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer 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. @@ -3690,18 +5341,19 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Remove steps - Удалить шаги + Удалить такты Add steps - Добавить шаги + Добавить такты bbTCOView Open in Beat+Bassline-Editor - Открыть в пошаговом ÑеквенÑоре + Открыть в пошаговом ÑеквенÑоре + Открыть в редакторе ритма и баÑÑа Reset name @@ -3715,16 +5367,20 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Change color Изменить цвет + + Reset color to default + + bbTrack Beat/Bassline %1 - Лейтмотив %1 + Ритм-БаÑÑ Ð›Ð¸Ð½Ð¸Ñ %1 Clone of %1 - + ÐšÐ¾Ð¿Ð¸Ñ %1 @@ -3738,7 +5394,7 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer bitInvaderView Sample Length - ДлительноÑть образца + ДлительноÑть запиÑи Draw your own waveform here by dragging your mouse on this graph. @@ -3762,19 +5418,19 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Saw wave - Пила + Зигзаг Click here for a saw-wave. - Сгенерировать пилообразный Ñигнал. + Сгенерировать загзагообразный Ñигнал. Square wave - Меандр + Квадрат (Меандр) Click here for a square-wave. - Сгенерировать меандр. + Сгенерировать квадратную волну (меандр). White noise wave @@ -3790,7 +5446,7 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Click here for a user-defined shape. - Задать форму Ñигнала Ñамому. + Задать форму Ñигнала вручную. Smooth @@ -3809,81 +5465,163 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Ðормализовать + + 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 + + + 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 Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñи. + Ðе могу открыть файл %1 Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñи. Проверьте, обладаете ли вы правами на запиÑÑŒ в выбранный файл и Ñодержащий его каталог и попробуйте Ñнова! Error - Ошибка + Ошибка Error while determining file-encoder device. Please try to choose a different output format. - Ошибка при определении кодировщика файла. Попробуйте выбрать другой целевой формат. + Ошибка при определении кодировщика файла. Попробуйте выбрать другой целевой формат. + Ошибка при определении кодека файла. Попробуйте выбрать другой формат вывода. Rendering: %1% - Обработка: %1% + Обработка: %1% Export project to %1 - ЭкÑпорт композиции в файл %1 + ЭкÑпорт композиции в файл %1 + ЭкÑпорт проекта в %1 fader Please enter a new value between %1 and %2: - Введите новое значение между %1 и %2: - - - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - + Введите новое значение от %1 до %2: graphModel Graph - + Граф @@ -3896,18 +5634,46 @@ Please make sure you have write-permission to the file and the directory contain End frequency ÐšÐ¾Ð½ÐµÑ‡Ð½Ð°Ñ Ñ‡Ð°Ñтота - - Decay - Длит. Ñпада - - - Distortion - ИÑкажение - Gain УÑиление + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + Шум + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + kickerInstrumentView @@ -3919,32 +5685,53 @@ Please make sure you have write-permission to the file and the directory contain End frequency: ÐšÐ¾Ð½ÐµÑ‡Ð½Ð°Ñ Ñ‡Ð°Ñтота: - - Decay: - ДлительноÑть Ñпада: - - - Distortion: - ИÑкажение: - Gain: УÑиление: + + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: + + knob &Help - &Справка + &H Справка Please enter a new value between %1 and %2: - Введите новое значение между %1 и %2: + Введите новое значение от %1 до %2: Please enter a new value between -96.0 dBV and 6.0 dBV: - Введите новое значение между –96,0 дБ и 6,0 дБ (по напрÑжению): + Введите новое значение между –96,0 дБ и 6,0 дБ (по напрÑжению): + Введите новое значение от –96,0 дБВ до 6,0 дБВ: @@ -3983,7 +5770,7 @@ 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. Они разделены на пÑть категорий, в завиÑимоÑти от названий и типов портов. + Ð’ Ñтом окне показана Ð¸Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ð¸Ñ Ð¾Ð±Ð¾ вÑех модулÑÑ… LADSPA, которые обнаружила LMMS. Они разделены на пÑть категорий, в завиÑимоÑти от названий и типов портов. ДоÑтупные Ñффекты — Ñто те, которые могут быть иÑпользоаны в LMMS. Чтобы Ñффект LADSPA мог быть иÑпользован, он должен, во-первых, быть ÑобÑтвенно Ñффектом, Ñ‚. е. иметь как входные так и выходные каналы. LMMS в качеÑтве входного канала воÑпринимает аудиопорт, Ñодержащий в названии „in“, а выходные узнаёт по подÑтроке „out“. Ð”Ð»Ñ Ð¸ÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð² LMMS чиÑло входных каналов должно Ñовпадать Ñ Ñ‡Ð¸Ñлом выходных, и Ñффект должен иметь возможноÑть иÑÐ¿Ð¾Ð»ÑŒÐ·Ð¾Ð²Ð°Ð½Ð¸Ñ Ð² реальном времени. @@ -4033,7 +5820,7 @@ Double clicking any of the plugins will bring up information on the ports. Min < Default < Max - Ðаим. < Стандарт < Ðаиб. + Меньше < Стандарт < Больше Logarithmic @@ -4041,7 +5828,7 @@ Double clicking any of the plugins will bring up information on the ports. SR Dependent - + ЗавиÑимоÑть от SR Audio @@ -4053,11 +5840,11 @@ Double clicking any of the plugins will bring up information on the ports. Input - Вход + Ввод Output - Выход + Вывод Toggled @@ -4088,31 +5875,31 @@ Double clicking any of the plugins will bring up information on the ports. VCF Resonance - УÑиление + УÑиление VCF VCF Envelope Mod - Глубина модулÑции VCF + МодулÑÑ†Ð¸Ñ Ð¾Ð³Ð¸Ð±Ð°ÑŽÑ‰ÐµÐ¹ VCF VCF Envelope Decay - Спад VCF + Спад огибающей VCF Slide - + Сдвиг Accent - + Ðкцент Dead - + Глухо Slide Decay - + Сдвиг Ð·Ð°Ñ‚ÑƒÑ…Ð°Ð½Ð¸Ñ Distortion @@ -4124,7 +5911,7 @@ Double clicking any of the plugins will bring up information on the ports. 24dB/oct Filter - + 24дБ/окт фильтр @@ -4135,87 +5922,124 @@ Double clicking any of the plugins will bring up information on the ports. 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. + @@ -4226,15 +6050,15 @@ Double clicking any of the plugins will bring up information on the ports. VCF Resonance - УÑиление + Ð ÐµÐ·Ð¾Ð½Ð°Ð½Ñ VCF VCF Envelope Mod - Глубина модулÑции VCF + Мод Огибающей VCF VCF Envelope Decay - Спад VCF + Спад огибающей VCF Distortion @@ -4246,23 +6070,23 @@ Double clicking any of the plugins will bring up information on the ports. Slide Decay - + Сдвиг Ñпада Slide - + Сдвиг Accent - + Ðкцент Dead - + Глухо 24dB/oct Filter - + 24дБ/окт фильтр @@ -4277,23 +6101,23 @@ Double clicking any of the plugins will bring up information on the ports. Resonance: - УÑиление: + РезонанÑ: RES - УСИЛ + РЕЗ Env Mod: - Глубина модулÑции: + Мод Огибающей: ENV MOD - МОД + МОД ОГИБ Decay: - ДлительноÑть Ñпада: + Спад: DEC @@ -4301,15 +6125,15 @@ Double clicking any of the plugins will bring up information on the ports. 303-es-que, 24dB/octave, 3 pole filter - + 303-ий, 24дБ/октаву, 3-польный фильтр Slide Decay: - + Сдвиг Ñпада: SLIDE - + Сдвиг DIST: @@ -4321,18 +6145,18 @@ Double clicking any of the plugins will bring up information on the ports. WAVE: - Форма: + Волна: WAVE - Форма + Волна malletsInstrument Hardness - + ЖёÑткоÑть Position @@ -4348,7 +6172,7 @@ Double clicking any of the plugins will bring up information on the ports. Stick Mix - + Сведение ручек Modulator @@ -4364,11 +6188,11 @@ Double clicking any of the plugins will bring up information on the ports. LFO Depth - + Глубина LFO ADSR - + ADSR Pressure @@ -4376,7 +6200,7 @@ Double clicking any of the plugins will bring up information on the ports. Motion - + Движение Speed @@ -4384,11 +6208,11 @@ Double clicking any of the plugins will bring up information on the ports. Bowed - + Ðаклон Spread - + Ð Ð°Ð·Ð±Ñ€Ð¾Ñ Missing files @@ -4396,7 +6220,7 @@ Double clicking any of the plugins will bring up information on the ports. Your Stk-installation seems to be incomplete. Please make sure the full Stk-package is installed! - Похоже, что уÑтановлены не вÑе пакеты STK. Вам Ñледует Ñто проверить! + Похоже, что уÑтановлены не вÑе пакеты Stk. Вам Ñледует Ñто проверить! Marimba @@ -4416,7 +6240,7 @@ Double clicking any of the plugins will bring up information on the ports. Reso - УСИЛ + Резо Wood2 @@ -4428,7 +6252,7 @@ Double clicking any of the plugins will bring up information on the ports. Two Fixed - + Два фикÑированных Clump @@ -4436,15 +6260,15 @@ Double clicking any of the plugins will bring up information on the ports. Tubular Bells - Трубчатые колокольчики + Трубные колокола Uniform Bar - + Равномерные полоÑÑ‹ Tuned Bar - + ПодÑтроенные полоÑÑ‹ Glass @@ -4463,19 +6287,19 @@ Double clicking any of the plugins will bring up information on the ports. Spread - + Ð Ð°Ð·Ð±Ñ€Ð¾Ñ Spread: - + РазброÑ: Hardness - + ЖёÑткоÑть Hardness: - + ЖёÑткоÑть: Position @@ -4503,11 +6327,11 @@ Double clicking any of the plugins will bring up information on the ports. Stick Mix - + Сведение ручек Stick Mix: - + Сведение ручек: Modulator @@ -4535,23 +6359,23 @@ Double clicking any of the plugins will bring up information on the ports. LFO Depth - + Глубина LFO LFO Depth: - + Глубина LFO: ADSR - + ADSR ADSR: - + ADSR: Bowed - + Ðаклон Pressure @@ -4563,11 +6387,11 @@ Double clicking any of the plugins will bring up information on the ports. Motion - + Движение Motion: - + Движение: Speed @@ -4590,188 +6414,188 @@ Double clicking any of the plugins will bring up information on the ports.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 плагина. nineButtonSelector &Help - &Справка + &H Справка 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 - + Глубина тремоло @@ -4801,42 +6625,58 @@ Double clicking any of the plugins will bring up information on the ports. Osc %1 waveform: - Форма Ñигнала Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ‚Ð¾Ñ€Ð° %1: + Форма Ñигнала Ð´Ð»Ñ Ð¾ÑциллÑтора %1: Osc %1 volume: - ГромкоÑть генератора %1: + ГромкоÑть оÑциллÑтора %1: Osc %1 panning: - Ð¡Ñ‚ÐµÑ€ÐµÐ¾Ð±Ð°Ð»Ð°Ð½Ñ Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€Ð°Ñ‚Ð¾Ñ€Ð° %1: - - - Osc %1 fine detuning left: - РаÑÑтройка левого канала генератора %1: + Ð‘Ð°Ð»Ð°Ð½Ñ Ð´Ð»Ñ Ð¾ÑциллÑтора %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: + papuInstrument Sweep time - + Ð’Ñ€ÐµÐ¼Ñ Ñ€Ð°ÑпроÑÑ‚Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Sweep direction - + Ðаправление раÑпроÑÑ‚Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Sweep RtShift amount - + Кол-во раÑпроÑÑ‚Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Ñдвига вправо Wave Pattern Duty - + Ð Ð°Ð±Ð¾Ñ‡Ð°Ñ Ñ„Ð¾Ñ€Ð¼Ð° волны Channel 1 volume @@ -4844,11 +6684,11 @@ Double clicking any of the plugins will bring up information on the ports. Volume sweep direction - + Объём Ð½Ð°Ð¿Ñ€Ð°Ð²Ð»ÐµÐ½Ð¸Ñ Ñ€Ð°ÑпроÑÑ‚Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Length of each step in sweep - + Длина каждого такта в раÑпроÑтранении Channel 2 volume @@ -4912,90 +6752,90 @@ Double clicking any of the plugins will bring up information on the ports. Shift Register width - + Сдвиг ширины региÑтра papuInstrumentView Sweep Time: - + Ð’Ñ€ÐµÐ¼Ñ Ñ€Ð°Ð·Ð²Ñ‘Ñ€Ñ‚ÐºÐ¸: Sweep Time - + Ð’Ñ€ÐµÐ¼Ñ Ñ€Ð°Ð·Ð²Ñ‘Ñ€Ñ‚ÐºÐ¸ Sweep RtShift amount: - + Кол-во развёртки Ñдвиг вправо: Sweep RtShift amount - + Кол-во развёртки Ñдвиг вправо Wave pattern duty: - + Ð Ð°Ð±Ð¾Ñ‡Ð°Ñ Ñ„Ð¾Ñ€Ð¼Ð° волны: Wave Pattern Duty - + Ð Ð°Ð±Ð¾Ñ‡Ð°Ñ Ñ„Ð¾Ñ€Ð¼Ð° волны Square Channel 1 Volume: - + ГромкоÑть квадратного канала 1: Length of each step in sweep: - + Длина каждого шага в развёртке: Length of each step in sweep - + Длина каждого шага в развёртке 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: @@ -5015,285 +6855,75 @@ Double clicking any of the plugins will bring up information on the ports. 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 - + РиÑунок волны 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 - + ГромкоÑть квадратного канала 1 The delay between step change - + Задержка между изменениÑми шага Draw the wave here - - - - - pattern - - Cannot freeze pattern - Ðе могу заморозить шаблон - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - Шаблон не может быть заморожен, так как он проигрываетÑÑ Ð² данный момент. ОÑтановите воÑпроизведение и попробуйте Ñнова! - - - - patternFreezeStatusDialog - - Freezing pattern... - Замораживаю шаблон... - - - Cancel - Отменить - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - Чтобы открыть Ñтот шаблон в ÑеквенÑоре, дважды на нём щёлкните -ИÑпользуйте колёÑико мыши Ð´Ð»Ñ ÑƒÑтановки громкоÑти отдельного шага - - - Open in piano-roll - Открыть в ÑеквенÑоре - - - Clear all notes - ОчиÑтить - - - Reset name - СброÑить название - - - Change name - Переименовать - - - Refreeze - Перезаморозить - - - Freeze - Заморозить - - - Unfreeze - Разморозить - - - Add steps - Добавить шаги - - - Remove steps - Удалить шаги - - - - PianoRoll - - Cut selected notes (Ctrl+X) - ПеремеÑтить выделенные ноты в буфер (Ctrl+X) - - - Copy selected notes (Ctrl+C) - Копировать выделенные ноты в буфер (Ctrl+X) - - - Paste notes from clipboard (Ctrl+V) - Ð’Ñтавить ноты из буфера (Ctrl+V) - - - Play/pause current pattern (Space) - ВоÑпроизведение ткущего шаблона/пауза (Пробел) - - - Stop playing of current pattern (Space) - ОÑтановить воÑпроизвдение шаблона (Пробел) - - - Piano-Roll - no pattern - СеквенÑор - без шаблона - - - Piano-Roll - %1 - СеквенÑор - %1 - - - Please open a pattern by double-clicking on it! - Откройте шаблон Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ двойного щелчка мышью! - - - Record notes from MIDI-device/channel-piano - ЗапиÑать ноты Ñ Ñ†Ð¸Ñ„Ñ€Ð¾Ð²Ð¾Ð³Ð¾ музыкального инÑтрумента (MIDI) - - - Last note - По поÑл. ноте - - - Draw mode (Shift+D) - Режим риÑÐ¾Ð²Ð°Ð½Ð¸Ñ (Shift+D) - - - Erase mode (Shift+E) - Режим ÑÑ‚Ð¸Ñ€Ð°Ð½Ð¸Ñ Ð½Ð¾Ñ‚ (Shift+E) - - - Select mode (Shift+S) - Режим выбора нот (Shift+S) - - - Record notes from MIDI-device/channel-piano while playing song or BB track - ЗапиÑать ноты Ñ Ñ†Ð¸Ñ„Ñ€Ð¾Ð²Ð¾Ð³Ð¾ музыкального инÑтрумента (MIDI) во Ð²Ñ€ÐµÐ¼Ñ Ð²Ð¾ÑÐ¿Ñ€Ð¾Ð¸Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ ÐºÐ¾Ð¼Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ð¸ или лейтмотива - - - 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. - Ðажмите здеÑÑŒ, еÑли вы хотите оÑтановить воÑпроизведение текущего шаблона. - - - 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. - При нажатии на Ñту кнопку ноты из буфера будут вÑтавлены в превый видимый такт. - - - Note lock - - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - + РиÑовать волну здеÑÑŒ @@ -5302,29 +6932,21 @@ use mouse wheel to set volume of a step Instrument plugins ИнÑтрументы - - three powerful oscillators you can modulate in several ways - Три генератора, которые Ð’Ñ‹ можете наÑтраивать по вкуÑу - no description опиÑание отÑутÑтвует VST-host for using VST(i)-plugins within LMMS - Поддержка модулей VST(i) в LMMS + VST - хоÑÑ‚ Ð´Ð»Ñ Ð¿Ð¾Ð´Ð´ÐµÑ€Ð¶ÐºÐ¸ модулей VST(i) в LMMS Additive Synthesizer for organ-like sounds Синтезатор звуков вроде органа - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - Подключение произвольного звукового образца Ñ Ð½ÐµÐºÐ¾Ñ‚Ð¾Ñ€Ð¾Ð¹ возможноÑтью наÑтройки - Filter for importing MIDI-files into LMMS - Фильтр Ð´Ð»Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ðµ файла MIDI в проект LMMS + Фильтр Ð´Ð»Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ Ñ„Ð°Ð¹Ð»Ð° MIDI в проект ЛММС plugin for using arbitrary LADSPA-effects inside LMMS. @@ -5334,13 +6956,9 @@ use mouse wheel to set volume of a step Tuneful things to bang on Мелодичные ударные - - plugin for using arbitrary VST-effects inside LMMS. - Модуль, позволÑющий иÑпользовать в LMMS любые Ñффекты VST. - Vibrating string modeler - ЭмулÑÑ†Ð¸Ñ Ñтрун + ЭмулÑÑ†Ð¸Ñ Ð²Ð¸Ð±Ñ€Ð¸Ñ€ÑƒÑŽÑ‰Ð¸Ñ… Ñтрун Filter for importing FL Studio projects into LMMS @@ -5350,29 +6968,21 @@ use mouse wheel to set volume of a step Incomplete monophonic imitation tb303 ÐÐµÐ·Ð°Ð²ÐµÑ€ÑˆÑ‘Ð½Ð½Ð°Ñ Ð¼Ð¾Ð½Ð¾Ñ„Ð¾Ð½Ð¸Ñ‡ÐµÑÐºÐ°Ñ Ð¸Ð¼Ð¸Ñ‚Ð°Ñ†Ð¸Ñ tb303 - - versatile kick- & bassdrum-synthesizer - Многоцелевой Ñинтезатор ударных - Instrument browser - ИнÑтрументы + Обзор инÑтрументов Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. - Ð’Ñ‹ можете переноÑить нужные вам инÑтрументы из Ñтой панели в финальный или пошаговый ÑеквенÑор. + Ð’Ñ‹ можете переноÑить нужные вам инÑтрументы из Ñтой панели в музыкальный, ритм-баÑÑ Ñ€ÐµÐ´Ð°ÐºÑ‚Ð¾Ñ€ или в ÑущеÑтвующую дорожку инÑтрумента. Plugin for enhancing stereo separation of a stereo input file Модуль, уÑиливающий разницу между каналами ÑтереозапиÑи - - plugin for boosting bass - Модуль, уÑиливающий баÑÑ‹ - Emulation of GameBoy (TM) APU - ЭмулÑÑ†Ð¸Ñ Ð°ÑƒÐ´Ð¸Ð¾Ð¿Ñ€Ð¾Ñ†ÐµÑÑора GameBoy (TM) + ЭмулÑÑ†Ð¸Ñ GameBoy (TM) Plugin for freely manipulating stereo output @@ -5402,22 +7012,78 @@ This chip was used in the Commodore 64 computer. Customizable wavetable synthesizer - + ÐаÑтраиваемый Ñинтезатор звукозапиÑей (wavetable) Embedded ZynAddSubFX - + Ð’Ñтроенный ZynAddSubFX 2-operator FM Synth - + 2-режимный Ñинт модулÑции чаÑтот (FM synth) Filter for importing Hydrogen files into LMMS - + Фильтр Ð´Ð»Ñ Ð¸Ð¼Ð¿Ð¾Ñ€Ñ‚Ð° Hydrogen файлов в LMMS LMMS port of sfxr + LMMS порт 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 @@ -5437,43 +7103,43 @@ This chip was used in the Commodore 64 computer. &Undo - &Отменить + &U Отменить Ctrl+Z - + Ctrl+Z &Redo - &Повторить + &R Повторить Ctrl+Y - + Ctrl+Y &Copy - &Копировать + &C Копировать Ctrl+C - + Ctrl+C Cu&t - &Вырезать + &t Вырезать Ctrl+X - + Ctrl+X &Paste - &Ð’Ñтавить + &P Ð’Ñтавить Ctrl+V - + Ctrl+V Format Actions @@ -5485,11 +7151,11 @@ This chip was used in the Commodore 64 computer. Ctrl+B - + Ctrl+B &Italic - &КурÑив + &КурÑив Ctrl+I @@ -5627,7 +7293,7 @@ This chip was used in the Commodore 64 computer. Choose your VST-plugin directory - Выбор каталога Ð´Ð»Ñ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¹ VST + Выбор Ñвоего каталога Ð´Ð»Ñ Ð¼Ð¾Ð´ÑƒÐ»ÐµÐ¹ VST Performance settings @@ -5661,11 +7327,11 @@ Latency: %2 ms STK rawwave directory - Каталог STK + Каталог STK rawwave Choose FL Studio installation directory - Выбор каталога FL Studio + Выбор каталога уÑтановленной FL Studio Choose LADSPA plugin directory @@ -5673,15 +7339,15 @@ Latency: %2 ms Choose STK rawwave directory - Выбор каталога STK + Выбор каталога STK rawwave Enable tooltips - Включить вÑплывающие подÑказки + Включить подÑказки Show restart warning after changing settings - Показывать предупреждение поÑле Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ð½Ð°Ñтроек + Показывать предупреждение о перезапуÑке при изменении наÑтроек Compress project files per default @@ -5693,70 +7359,70 @@ Latency: %2 ms Paths - + Пути LADSPA plugin paths - + Пути модулей LADSPA Default Soundfont File - + ОÑновной Soundfont файл Background artwork - + Фоновое изображение Choose default SoundFont - + Выбрать главный SoundFont Choose background artwork - + Выбрать фоновое изображение One instrument track window mode - + Режим окна одной инÑтрументальной дорожки Compact track buttons - + Ужать кнопки дорожки Sync VST plugins to host playback - + Синхронизировать VST плагины Ñ Ñ…Ð¾Ñтом воÑÐ¿Ñ€Ð¾Ð¸Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Enable note labels in piano roll - + Включить обозначение нот в музыкальном редакторе Enable waveform display by default - + Включить отображение формы звуков по умолчанию Smooth scroll in Song Editor - + ÐŸÐ»Ð°Ð²Ð½Ð°Ñ Ð¿Ñ€Ð¾ÐºÑ€ÑƒÑ‚ÐºÐ° в музыкальном редакторе Enable auto save feature - + Включить функцию авто-ÑÐ¾Ñ…Ñ€Ð°Ð½ÐµÐ½Ð¸Ñ Show playback cursor in AudioFileProcessor - + Показывать указатель воÑÐ¿Ñ€Ð¾Ð¸Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ Ð² процеÑÑоре аудио файлов sf2Instrument Bank - + Банк Patch - + Патч Gain @@ -5768,15 +7434,15 @@ Latency: %2 ms Reverb Roomsize - + Объём Ñха Reverb Damping - + Затухание Ñха Reverb Width - + Долгота Ñха Reverb Level @@ -5784,23 +7450,23 @@ Latency: %2 ms Chorus - + Хор (припев) Chorus Lines - + Линии хора Chorus Level - + Уровень хора Chorus Speed - + СкороÑть хора Chorus Depth - + Глубина хора @@ -5835,15 +7501,15 @@ Latency: %2 ms Reverb Damping: - + Глушение Ñха: Reverb Width: - + Долгота Ñха: Reverb Level: - + Уровень Ñха: Apply chorus (if supported) @@ -5855,19 +7521,20 @@ Latency: %2 ms Chorus Lines: - + не знаю как лучше + Линии хора: Chorus Level: - + Уровень хора: Chorus Speed: - + СкороÑть хора: Chorus Depth: - + Глубина хора: Open SoundFont file @@ -5875,14 +7542,14 @@ Latency: %2 ms SoundFont2 Files (*.sf2) - + Файлы SoundFont2 (*.sf2) sfxrInstrument Wave Form - + Форма волны @@ -5901,7 +7568,7 @@ Latency: %2 ms Voice 3 off - + Ð“Ð¾Ð»Ð¾Ñ 3 откл Volume @@ -5928,19 +7595,19 @@ Latency: %2 ms High-Pass filter - ФВЧ + Ð’Ñ‹Ñ.ЧФ Band-Pass filter - ППФ + Сред.ЧФ Low-Pass filter - ФÐЧ + Ðиз.ЧФ Voice3 Off - + Ð“Ð¾Ð»Ð¾Ñ 3 откл MOS6581 SID @@ -5952,15 +7619,15 @@ Latency: %2 ms Attack: - ДлительноÑть нараÑтаниÑ: + Ð’Ñтупление: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. - ДлительноÑть нараÑÑ‚Ð°Ð½Ð¸Ñ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»Ñет, наÑколько быÑтро громкоÑть %1-го голоÑа возраÑтает от Ð½ÑƒÐ»Ñ Ð´Ð¾ наибольшего значениÑ. + ДлительноÑть вÑÑ‚ÑƒÐ¿Ð»ÐµÐ½Ð¸Ñ Ð¾Ð¿Ñ€ÐµÐ´ÐµÐ»Ñет, наÑколько быÑтро громкоÑть %1-го голоÑа возраÑтает от Ð½ÑƒÐ»Ñ Ð´Ð¾ наибольшего значениÑ. Decay: - ДлительноÑть Ñпада: + Спад: Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. @@ -5968,15 +7635,15 @@ Latency: %2 ms Sustain: - ОÑтаточный уровень: + Выдержка: Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. - ГромкоÑть %1-го голоÑа будет оÑтаватьÑÑ Ð½Ð° Ñтом уровне, пока длитÑÑ Ð½Ð¾Ñ‚Ð°. + ГромкоÑть %1-го голоÑа будет оÑтаватьÑÑ Ð½Ð° уровне амплитуды выдержки, пока длитÑÑ Ð½Ð¾Ñ‚Ð°. Release: - ДлительноÑть иÑчезновениÑ: + Убывание: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. @@ -5984,23 +7651,23 @@ Latency: %2 ms 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 @@ -6008,7 +7675,7 @@ Latency: %2 ms SawTooth - Пила + Зигзаг Noise @@ -6016,19 +7683,19 @@ Latency: %2 ms 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 @@ -6040,11 +7707,11 @@ Latency: %2 ms Test - Флажок + ТеÑÑ‚ Test, when set, resets and locks Oscillator %1 at zero until Test is turned off. - ЕÑли «флажок» уÑтановлен, то %1-й генератор выдаёт нулевой Ñигнал (пока флажок не ÑниметÑÑ). + ЕÑли «флажок» уÑтановлен, то %1-й оÑциллÑтор выдаёт нулевой Ñигнал (пока флажок не ÑниметÑÑ). @@ -6059,7 +7726,7 @@ Latency: %2 ms Master pitch - ÐžÐ±Ñ‰Ð°Ñ Ð²Ñ‹Ñота тона + ÐžÐ±Ñ‰Ð°Ñ Ñ‚Ð¾Ð½Ð°Ð»ÑŒÐ½Ð¾Ñть Project saved @@ -6087,7 +7754,7 @@ Latency: %2 ms This project is empty so exporting makes no sense. Please put some items into Song Editor first! - Проект ничего не Ñодержит, так что и ÑкÑпортировать нечего. Сначала добавьте Ñ…Ð¾Ñ‚Ñ Ð±Ñ‹ одну дорожку Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ ÑеквенÑора! + Проект ничего не Ñодержит, так что и ÑкÑпортировать нечего. Сначала добавьте Ñ…Ð¾Ñ‚Ñ Ð±Ñ‹ одну дорожку Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ музыкального редактора! untitled @@ -6099,187 +7766,41 @@ Latency: %2 ms MIDI sequences - + MiDi поÑледовательноÑти FL Studio projects - + FL Studio проекты All file types - + Ð’Ñе типы файлов Hydrogen projects - + Hydrogen проекты Select directory for writing exported tracks... - - - - - SongEditor - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Ðажмите Ñюда, еÑли вы хотите оÑтановить воÑпроизведение мелодии. КурÑор при Ñтом будет уÑтановлен на начало композиции. - - - Could not open file - Ðе могу открыть файл - - - Could not write file - Ðе могу запиÑать файл - - - Song-Editor - Финальный ÑеквенÑор - - - 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. - Ðажмите, чтобы проÑлушать Ñозданную мелодию. ВоÑпроизведение начнётÑÑ Ñ Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ð¸ курÑора (зелёный треугольник); вы можете двигать его во Ð²Ñ€ÐµÐ¼Ñ Ð¿Ñ€Ð¾Ð¸Ð³Ñ€Ñ‹Ð²Ð°Ð½Ð¸Ñ. - - - Play song (Space) - Ðачать воÑпроизведение (Пробел) - - - Stop song (Space) - ОÑтановить воÑпроизведение (Пробел) - - - Add beat/bassline - Добавить ритм/баÑÑ‹ - - - Add sample-track - Добавить файл - - - Draw mode - Режим риÑÐ¾Ð²Ð°Ð½Ð¸Ñ - - - Edit mode (select and move) - Правка (выделение/перемещение) - - - Record samples from Audio-device - ЗапиÑать образец Ñо звукового уÑтройÑтва - - - Record samples from Audio-device while playing song or BB track - ЗапиÑать ноты Ñо звуковой платы во Ð²Ñ€ÐµÐ¼Ñ Ð²Ð¾ÑÐ¿Ñ€Ð¾Ð¸Ð·Ð²ÐµÐ´ÐµÐ½Ð¸Ñ ÐºÐ¾Ð¼Ð¿Ð¾Ð·Ð¸Ñ†Ð¸Ð¸ или лейтмотива - - - Add automation-track - Добавить дорожку автоматизации - - - 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). - Это значение задаёт темп мелодии в ударах в минуту (англ. аббр. BPM). Ðа каждый такт приходитÑÑ Ñ‡ÐµÑ‚Ñ‹Ñ€Ðµ удара, так что темп в ударах в минуту фактичеÑки указывает, Ñколько четвертей такта проигрываетÑÑ Ð·Ð° минуту (или, что то же, количеÑтво тактов, проигрываемых за четыре минуты). - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - Линейный Ñпектр - - - Linear Y axis - Ð›Ð¸Ð½ÐµÐ¹Ð½Ð°Ñ Ð¾ÑÑŒ ординат - - - - spectrumAnalyzerControls - - Linear spectrum - Линейный Ñпектр - - - Linear Y-axis - Ð›Ð¸Ð½ÐµÐ¹Ð½Ð°Ñ Ð¾ÑÑŒ ординат - - - Channel mode - Режим канала + Выберите папку Ð´Ð»Ñ Ð·Ð°Ð¿Ð¸Ñи ÑкÑпортированных дорожек... stereoEnhancerControlDialog WIDE - + ШИРЕ Width: - + Ширина: stereoEnhancerControls Width - + Ширина @@ -6328,19 +7849,19 @@ Latency: %2 ms 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 @@ -6348,29 +7869,30 @@ Latency: %2 ms Press <Ctrl> to disable magnetic loop points. - + Ðажмите <Ctrl>, чтобы убрать прилипание точек цикла Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. - + примагничивание? + Зажмите <Shift> чтобы Ñдвинуть начало точек цикла; Ðажмите <Ctrl>, чтобы убрать прилипание точек цикла track Muted - Заглушён + Тихо Solo - Моно + Соло trackContentObject Muted - Заглушён + Тихо @@ -6385,7 +7907,7 @@ Latency: %2 ms Press <Ctrl> and drag to make a copy. - Ðажмите <Ctrl> и отпуÑтите, чтобы Ñоздать копию. + Ðажмите <Ctrl> и перетащите, чтобы Ñоздать копию. Current length @@ -6393,7 +7915,7 @@ Latency: %2 ms Press <Ctrl> for free resizing. - Ð”Ð»Ñ Ñвободного Ð¿ÐµÑ€ÐµÐ¼ÐµÑ‰ÐµÐ½Ð¸Ñ Ð½Ð°Ð¶Ð¼Ð¸Ñ‚Ðµ <Ctrl>. + Ð”Ð»Ñ Ñвободного Ð¸Ð·Ð¼ÐµÐ½ÐµÐ½Ð¸Ñ Ñ€Ð°Ð·Ð¼ÐµÑ€Ð° нажмите <Ctrl>. %1:%2 (%3:%4 to %5:%6) @@ -6424,7 +7946,7 @@ Latency: %2 ms trackOperationsWidget Clone this track - Копировать дорожку + Клонировать дорожку Remove this track @@ -6432,7 +7954,7 @@ Latency: %2 ms Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. - Ð”Ð»Ñ Ð¿ÐµÑ€ÐµÑ‚Ð°ÑÐºÐ¸Ð²Ð°Ð½Ð¸Ñ Ð² другое окно нажмите <Ctrl> при нажатии на Ñту полоÑку. + Зажмите <Сtrl> и нажимайте мышь во Ð²Ñ€ÐµÐ¼Ñ Ð´Ð²Ð¸Ð¶ÐµÐ½Ð¸Ñ, чтобы начать новую переброÑку. Actions for this track @@ -6448,7 +7970,19 @@ Latency: %2 ms Solo - Моно + Соло + + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + @@ -6469,7 +8003,7 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Please wait while loading VST-plugin... - Подождите, пока загружаетÑÑ Ð¼Ð¾Ð´ÑƒÐ»ÑŒ VST... + Подождите, пока загрузитÑÑ Ð¼Ð¾Ð´ÑƒÐ»ÑŒ VST... @@ -6492,11 +8026,11 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Pan %1 - Ð¡Ñ‚ÐµÑ€ÐµÐ¾Ð±Ð°Ð»Ð°Ð½Ñ %1 + Бал %1 Detune %1 - РаÑÑтройка %1 + ПодÑтройка %1 Fuzziness %1 @@ -6531,7 +8065,7 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer 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' уÑтанавливает жёÑткоÑть текущей Ñтруны. Этот параметр отвечает за длительноÑть Ð·Ð²ÑƒÑ‡Ð°Ð½Ð¸Ñ Ñтруны (чем больше значение жёÑткоÑти, тем тольше звенит Ñтруна). + РегулÑтор 'S' уÑтанавливает жёÑткоÑть текущей Ñтруны. Этот параметр отвечает за длительноÑть Ð·Ð²ÑƒÑ‡Ð°Ð½Ð¸Ñ Ñтруны (чем больше значение жёÑткоÑти, тем дольше звенит Ñтруна). Pick position: @@ -6551,19 +8085,19 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer 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: @@ -6571,7 +8105,7 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer 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: @@ -6579,7 +8113,7 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer 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 @@ -6599,7 +8133,7 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer 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. @@ -6609,7 +8143,8 @@ 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 Ñлементов выборки). + Редактор формы позволÑет Ñвно указать профиль Ñтруны в начальный момент времени, либо её начальный Ð¸Ð¼Ð¿ÑƒÐ»ÑŒÑ (в заиÑимоÑти от ÑоÑтоÑÐ½Ð¸Ñ Ð¿ÐµÑ€ÐµÐºÐ»ÑŽÑ‡Ð°Ñ‚ÐµÐ»Ñ â€žImp“). +Кнопки Ñправа от риÑунка позволÑÑŽÑ‚ задавать некоторые Ñтандартные формы, причём кнопка '?' Ñлужит Ð´Ð»Ñ Ð·Ð°Ð´Ð°Ð½Ð¸Ñ Ñ„Ð¾Ñ€Ð¼Ñ‹ из произвольного звукового файла (загружаютÑÑ Ð¿ÐµÑ€Ð²Ñ‹Ðµ 128 Ñлементов выборки). Также форма Ñигнала может быть проÑто нариÑована Ñ Ð¿Ð¾Ð¼Ð¾Ñ‰ÑŒÑŽ мыши. @@ -6629,7 +8164,7 @@ The 'V' knob controls the volume. The 'S' knob controls the 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“ моделирует до девÑти незавиÑимых одновременно звучащих Ñтрун. + ИнÑтрумент „Vibed“ моделирует до девÑти незавиÑимых одновременно звучащих Ñтрун. Переключатель „Strings“ позволÑет выбрать Ñтруну, чьи ÑвойÑтва редактируютÑÑ. @@ -6639,13 +8174,13 @@ The LED in the lower right corner of the waveform editor determines whether the Редактор формы позволÑет Ñвно указать профиль Ñтруны в начальный момент времени, либо её начальный импульÑ. -РегулÑтор 'V' уÑтанавливает громкоÑть текущей Ñтруны, 'S' — жёÑткоÑть, 'P' — меÑто, где прижата Ñтруна, а 'PU'' — положение звукоÑÐ½Ð¸Ð¼Ð°Ñ‚ÐµÐ»Ñ +Ручка 'V' уÑтанавливает громкоÑть текущей Ñтруны, 'S' — жёÑткоÑть, 'P' — меÑто, где прижата Ñтруна, а 'PU'' — положение звукоÑÐ½Ð¸Ð¼Ð°Ñ‚ÐµÐ»Ñ -РегулÑторы раÑÑтройки и ÑтереобаланÑа, еÑть надежда, не нуждаютÑÑ Ð² объÑÑнениÑÑ…. +Ручка подÑтройки и ÑтереобаланÑа, еÑть надежда, не нуждаютÑÑ Ð² объÑÑнениÑÑ…. Ручка „Длина“ регулирует длину Ñтруны -Индикатор-переключатель Ñлева Ñнизу определÑет, включена ли Ñ‚ÐµÐºÑƒÑ‰Ð°Ñ Ñтруна. +Индикатор-переключатель Ñлева внизу определÑет, включена ли Ñ‚ÐµÐºÑƒÑ‰Ð°Ñ Ñтруна. Enable waveform @@ -6681,19 +8216,19 @@ The LED in the lower right corner of the waveform editor determines whether the Saw wave - Пила + Зигзаг Use a saw-wave for current oscillator. - Генерировать пилообразный Ñигнал. + Генерировать зигзагообразный Ñигнал. Square wave - Меандр + ÐšÐ²Ð°Ð´Ñ€Ð°Ñ‚Ð½Ð°Ñ Ð²Ð¾Ð»Ð½Ð° Use a square-wave for current oscillator. - Генерировать меандр. + Генерировать квадрат (меандр). White noise wave @@ -6729,29 +8264,29 @@ The LED in the lower right corner of the waveform editor determines whether the &Help - &Справка + &H Справка visualizationWidget click to enable/disable visualization of master-output - Ðажмите, чтобы включить/выключить визуализацию + Ðажмите, чтобы включить/выключить визуализацию главного вывода Click to enable - + Ðажать Ð´Ð»Ñ Ð²ÐºÐ»ÑŽÑ‡ÐµÐ½Ð¸Ñ voiceObject Voice %1 pulse width - + Ð“Ð¾Ð»Ð¾Ñ %1 длина Ñигнала Voice %1 attack - ÐараÑтание %1-го голоÑа + Ð’Ñтупление %1-го голоÑа Voice %1 decay @@ -6759,15 +8294,15 @@ The LED in the lower right corner of the waveform editor determines whether the Voice %1 sustain - ОÑтаточный уровень Ð´Ð»Ñ %1-го голоÑа + Выдержка Ð´Ð»Ñ %1-го голоÑа Voice %1 release - ИÑÑ‡ÐµÐ·Ð½Ð¾Ð²ÐµÐ½Ð¸Ñ %1-го голоÑа + Убывание %1-го голоÑа Voice %1 coarse detuning - РаÑÑтройка %1-го голоÑа (грубо) + ПодÑтройка %1-го голоÑа (грубо) Voice %1 wave shape @@ -6779,14 +8314,84 @@ The LED in the lower right corner of the waveform editor determines whether the Voice %1 ring modulate - + Ð“Ð¾Ð»Ð¾Ñ %1 кольцевой модулÑтор Voice %1 filtered - Фильтровать %1-й Ð³Ð¾Ð»Ð¾Ñ + Фильтрованный %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 + + + + 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 + + Input gain + + + + Output gain diff --git a/data/locale/sv.qm b/data/locale/sv.qm index 7974e103f..9fc624405 100644 Binary files a/data/locale/sv.qm and b/data/locale/sv.qm differ diff --git a/data/locale/sv.ts b/data/locale/sv.ts index f33000c02..2c6147fab 100644 --- a/data/locale/sv.ts +++ b/data/locale/sv.ts @@ -7,10 +7,6 @@ About LMMS - - LMMS (Linux MultiMedia Studio) - - Version %1 (%2/%3, Qt %4, %5) @@ -49,6 +45,64 @@ If you're interested in translating LMMS in another language or want to imp <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + LMMS + + + + + AmplifierControlDialog + + VOL + VOL + + + Volume: + Volym: + + + PAN + + + + Panning: + + + + LEFT + + + + Left gain: + + + + RIGHT + + + + Right gain: + + + + + AmplifierControls + + Volume + Volym + + + Panning + + + + Left gain + + + + Right gain + + AudioAlsa::setupWidget @@ -79,14 +133,6 @@ If you're interested in translating LMMS in another language or want to imp If you enable this button, the whole sample is reversed. This is useful for cool effects, e.g. a reversed crash. - - Loop sample at start- and end-point - - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - - Amplify: Förstärkning: @@ -99,18 +145,10 @@ If you're interested in translating LMMS in another language or want to imp Startpoint: Startpunkt: - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Endpoint: - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - - Continue sample playback across notes @@ -119,6 +157,42 @@ If you're interested in translating LMMS in another language or want to imp 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. + + AudioFileProcessorWaveView @@ -365,6 +439,10 @@ If you're interested in translating LMMS in another language or want to imp Drag a control while pressing <Ctrl> + + Model is already connected to this pattern. + + AutomationPatternView @@ -396,6 +474,10 @@ If you're interested in translating LMMS in another language or want to imp Disconnect "%1" + + Set/clear record + + AutomationTrack @@ -404,6 +486,59 @@ If you're interested in translating LMMS in another language or want to imp + + BassBoosterControlDialog + + FREQ + + + + Frequency: + + + + GAIN + + + + Gain: + + + + RATIO + + + + Ratio: + + + + + BassBoosterControls + + Frequency + + + + Gain + + + + Ratio + + + + + CarlaInstrumentView + + Show GUI + + + + Click here to show or hide the graphical user interface (GUI) of Carla. + + + Controller @@ -516,6 +651,132 @@ If you're interested in translating LMMS in another language or want to imp &Hjälp + + DualFilterControlDialog + + Filter 1 enabled + + + + Filter 2 enabled + + + + Click to enable/disable Filter 1 + + + + Click to enable/disable Filter 2 + + + + + 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 + + + Effect @@ -880,6 +1141,10 @@ Right clicking will bring up a context menu where you can change the order in wh Drag a sample from somewhere and drop it in this window. + + Click here for random wave. + + ExportProjectDialog @@ -1007,14 +1272,6 @@ Right clicking will bring up a context menu where you can change the order in wh 8x - - Sample-exact controllers - - - - Alias-free oscillators - - Start @@ -1028,6 +1285,77 @@ Right clicking will bring up a context menu where you can change the order in wh + + FileBrowser + + Browser + + + + + 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... + + + + --- Factory files --- + + + + + 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 + + + + &Help + &Hjälp + + FxMixer @@ -1053,6 +1381,9 @@ Right clicking will bring up a context menu where you can change the order in wh FX-Mixer + + + FxMixerView::FxChannelView FX Fader %1 @@ -1066,6 +1397,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + FxRoute + + Amount to send from channel %1 to channel %2 + + + InstrumentFunctionArpeggio @@ -1124,6 +1462,10 @@ Right clicking will bring up a context menu where you can change the order in wh Sync + + Down and up + + InstrumentFunctionArpeggioView @@ -1566,6 +1908,18 @@ Right clicking will bring up a context menu where you can change the order in wh Minor + + Chromatic + + + + Half-Whole Diminished + + + + 5 + + InstrumentFunctionNoteStackingView @@ -1628,6 +1982,18 @@ Right clicking will bring up a context menu where you can change the order in wh NOTE + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY + + InstrumentSoundShaping @@ -1774,6 +2140,10 @@ Right clicking will bring up a context menu where you can change the order in wh cutoff frequency: + + Envelopes, LFOs and filters are not supported by the current instrument. + + InstrumentTrack @@ -1859,10 +2229,6 @@ Right clicking will bring up a context menu where you can change the order in wh GENERAL SETTINGS - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - - Instrument volume @@ -1935,10 +2301,6 @@ Right clicking will bring up a context menu where you can change the order in wh PLUGIN PLUGIN - - Save current channel settings in a preset-file - - Pitch range (semitones) @@ -1947,6 +2309,14 @@ Right clicking will bring up a context menu where you can change the order in wh RANGE OMRÃ…DE + + 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. + + LadspaControl @@ -1992,6 +2362,13 @@ Right clicking will bring up a context menu where you can change the order in wh + + LcdSpinBox + + Please enter a new value between %1 and %2: + SKriv ett nytt värde mellan %1 och %2: + + LfoController @@ -2351,10 +2728,6 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. LMMS (*.mmp *.mmpz) - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - - Version %1 @@ -2375,6 +2748,22 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Error while parsing configuration file at line %1:%2: %3 + + Volumes + + + + Undo + + + + Redo + + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + + MeterDialog @@ -2491,6 +2880,647 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 + + + + + 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. + + + + + 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 + Huvudvolym + + + Vibrato + + OscillatorObject @@ -2534,6 +3564,10 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Osc %1 waveform + + Osc %1 harmonic + + PatmanView @@ -2582,6 +3616,38 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PatternView + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + + + + Open in piano-roll + + + + Clear all notes + + + + Reset name + Nollställ namn + + + Change name + Byt namn + + + Add steps + + + + Remove steps + + + PeakController @@ -2682,6 +3748,189 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PianoRoll + + Play/pause current pattern (Space) + Spela/pausa aktuellt mönster (mellanslag) + + + Record notes from MIDI-device/channel-piano + + + + Stop playing of current pattern (Space) + Sluta spela aktuellt mönster (mellanslag) + + + Draw mode (Shift+D) + + + + Erase mode (Shift+E) + + + + Select mode (Shift+S) + Markeringsläge (shift+s) + + + Cut selected notes (Ctrl+X) + Klipp ut valda noter(Ctrl+X) + + + Copy selected notes (Ctrl+C) + + + + Paste notes from clipboard (Ctrl+V) + + + + Last note + Senaste noten + + + Piano-Roll - no pattern + + + + Piano-Roll - %1 + + + + Please open a pattern by double-clicking on it! + + + + Record notes from MIDI-device/channel-piano while playing song or BB track + + + + 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. + + + + 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. + + + + Note lock + + + + Note Volume + + + + Note Panning + + + + 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 Ctrl 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 Ctrl 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. + + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + + + + No scale + + + + No chord + + + + 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. + + + + Volume: %1% + + + + Panning: %1% left + + + + Panning: %1% right + + + + Panning: center + + + + Please enter a new value between %1 and %2: + SKriv ett nytt värde mellan %1 och %2: + + PianoView @@ -2708,6 +3957,10 @@ Reason: "%2" Failed to load plugin "%1"! + + LMMS plugin %1 does not have a plugin descriptor named %2! + + ProjectRenderer @@ -2854,6 +4107,10 @@ Reason: "%2" File: + + File: %1 + + SampleBuffer @@ -2861,10 +4118,6 @@ Reason: "%2" Open audio file Öppna ljudfil - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - - Wave-Files (*.wav) Wave-Filer (*.wav) @@ -2885,10 +4138,6 @@ Reason: "%2" SPEEX-Files (*.spx) - - MP3-Files (*.mp3) - - VOC-Files (*.voc) VOC-Filer @@ -2906,6 +4155,10 @@ Reason: "%2" RAW-Files (*.raw) RAW-Filer (*.raw) + + All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw) + + SampleTCOView @@ -2964,6 +4217,152 @@ Reason: "%2" VOL + + SongEditor + + Song-Editor + SÃ¥ng-Editor + + + Play song (Space) + Spela sÃ¥ng (mellanslag) + + + Stop song (Space) + + + + Add beat/bassline + + + + Add sample-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. + + + + Could not open file + kunde inte öppna fil + + + Could not write file + + + + Add automation-track + + + + Record samples from Audio-device + + + + Record samples from Audio-device while playing song or BB track + + + + 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/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 + + + + Master volume + Huvudvolym + + + master volume + huvudvolym + + + 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. + + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + + + + Linear Y axis + + + + + SpectrumAnalyzerControls + + Linear spectrum + + + + Linear Y axis + + + + Channel mode + + + TempoSyncKnob @@ -3410,19 +4809,6 @@ Se till att du har läsningsrättigheter för filen och katalogen som innehÃ¥lle Loading plugin Laddar plugin - - Please wait while loading VST-plugin... - Vänta medans VST-plugin läses in... - - - Failed loading VST-plugin - Misslyckades med att läsa in VST_plugin - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - - Open Preset @@ -3463,6 +4849,268 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer .fxb + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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 + Normalisera + + + Click to normalize + + + + Invert + + + + Click to invert + + + + Smooth + + + + Click to smooth + + + + Sine wave + SinusvÃ¥g + + + Click for sine wave + + + + Triangle wave + triganelvÃ¥g + + + Click for triangle wave + + + + Click for saw wave + + + + Square wave + FyrkantsvÃ¥g + + + Click for square wave + + ZynAddSubFxInstrument @@ -3588,54 +5236,32 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer End of sample - - Loop - - Stutter - - - bassBoosterControlDialog - FREQ + Loopback point - Frequency: + Loop mode - GAIN + Interpolation mode - Gain: + None - RATIO + Linear - Ratio: - - - - - bassBoosterControls - - Frequency - - - - Gain - - - - Ratio + Sinc @@ -3696,6 +5322,10 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer Change color Byt färg + + Reset color to default + + bbTrack @@ -3790,6 +5420,120 @@ If it runs with other VST-software under Linux, please contact an LMMS-developer + + 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 + + + exportProjectDialog @@ -3825,40 +5569,6 @@ Please make sure you have write-permission to the file and the directory contain SKriv ett nytt värde mellan %1 och %2: - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - - - graphModel @@ -3876,18 +5586,46 @@ Please make sure you have write-permission to the file and the directory contain End frequency - - Decay - - - - Distortion - - Gain + + Length + + + + Distortion Start + + + + Distortion End + + + + Envelope Slope + + + + Noise + + + + Click + + + + Frequency Slope + + + + Start from note + + + + End to note + + kickerInstrumentView @@ -3899,18 +5637,38 @@ Please make sure you have write-permission to the file and the directory contain End frequency: - - Decay: - - - - Distortion: - - Gain: + + Frequency Slope: + + + + Envelope Length: + + + + Envelope Slope: + + + + Click: + + + + Noise: + + + + Distortion Start: + + + + Distortion End: + + knob @@ -4185,6 +5943,38 @@ Double clicking any of the plugins will bring up information on the ports.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 @@ -4780,11 +6570,27 @@ Double clicking any of the plugins will bring up information on the ports. - Osc %1 fine detuning left: + 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: @@ -5054,215 +6860,6 @@ Double clicking any of the plugins will bring up information on the ports. - - pattern - - Cannot freeze pattern - Kunde inte frysa mönstret - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - - - - - patternFreezeStatusDialog - - Freezing pattern... - LÃ¥s mönster... - - - Cancel - Avbryt - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - - - - Open in piano-roll - - - - Clear all notes - - - - Reset name - Nollställ namn - - - Change name - Byt namn - - - Refreeze - - - - Freeze - - - - Unfreeze - - - - Add steps - - - - Remove steps - - - - - PianoRoll - - Play/pause current pattern (Space) - Spela/pausa aktuellt mönster (mellanslag) - - - Record notes from MIDI-device/channel-piano - - - - Stop playing of current pattern (Space) - Sluta spela aktuellt mönster (mellanslag) - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Select mode (Shift+S) - Markeringsläge (shift+s) - - - Cut selected notes (Ctrl+X) - Klipp ut valda noter(Ctrl+X) - - - Copy selected notes (Ctrl+C) - - - - Paste notes from clipboard (Ctrl+V) - - - - Last note - Senaste noten - - - Piano-Roll - no pattern - - - - Piano-Roll - %1 - - - - Please open a pattern by double-clicking on it! - - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - 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. - - - - 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. - - - - Note lock - - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser @@ -5273,10 +6870,6 @@ use mouse wheel to set volume of a step Instrument plugins Instrument plugin - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - Filter for importing FL Studio projects into LMMS Filter för att importera FL Studio projekt till LMMS @@ -5289,10 +6882,6 @@ use mouse wheel to set volume of a step Additive Synthesizer for organ-like sounds - - three powerful oscillators you can modulate in several ways - - VST-host for using VST(i)-plugins within LMMS @@ -5321,22 +6910,10 @@ use mouse wheel to set volume of a step List installed LADSPA plugins - - versatile kick- & bassdrum-synthesizer - - GUS-compatible patch instrument - - plugin for using arbitrary VST-effects inside LMMS. - - - - plugin for boosting bass - - Tuneful things to bang on @@ -5386,6 +6963,62 @@ This chip was used in the Commodore 64 computer. 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 + + projectNotes @@ -6083,152 +7716,6 @@ Latency: %2 ms - - SongEditor - - Song-Editor - SÃ¥ng-Editor - - - Play song (Space) - Spela sÃ¥ng (mellanslag) - - - Stop song (Space) - - - - Add beat/bassline - - - - Add sample-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. - - - - Could not open file - kunde inte öppna fil - - - Could not write file - - - - Add automation-track - - - - Record samples from Audio-device - - - - Record samples from Audio-device while playing song or BB track - - - - 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/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 - - - - Master volume - Huvudvolym - - - master volume - huvudvolym - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - spectrumAnalyzerControls - - Linear spectrum - - - - Linear Y-axis - - - - Channel mode - - - stereoEnhancerControlDialog @@ -6415,6 +7902,18 @@ Latency: %2 ms Solo + + Clear this track + + + + Turn all recording on + + + + Turn all recording off + + vestigeInstrument @@ -6732,4 +8231,74 @@ The LED in the lower right corner of the waveform editor determines whether the + + 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 + + Input gain + + + + Output gain + + + diff --git a/data/locale/zh.qm b/data/locale/zh.qm new file mode 100644 index 000000000..af938fe77 Binary files /dev/null and b/data/locale/zh.qm differ diff --git a/data/locale/pt_br.ts b/data/locale/zh.ts similarity index 68% rename from data/locale/pt_br.ts rename to data/locale/zh.ts index ebccd075b..390275fba 100644 --- a/data/locale/pt_br.ts +++ b/data/locale/zh.ts @@ -1,302 +1,384 @@ - + AboutDialog About LMMS - - - - LMMS (Linux MultiMedia Studio) - + 关于LMMS Version %1 (%2/%3, Qt %4, %5) - + 版本 %1 (%2/%3, Qt %4, %5) About - Sobre + 关于 LMMS - easy music production for everyone - + LMMS - 人人都是作曲家 Authors - + 作者 Translation - + 翻译 Current language not translated (or native English). If you're interested in translating LMMS in another language or want to improve existing translations, you're welcome to help us! Simply contact the maintainer! - + 当å‰è¯­è¨€æ˜¯ä¸­æ–‡ï¼ˆä¸­å›½ï¼‰ + +您å¯ä»¥å¸®åŠ©æˆ‘ä»¬æ”¹è¿›ç¿»è¯‘ï¼šhttps://github.com/LMMS/lmms/wiki/Creating-a-localization + +主è¦è¯‘者: +TonyChyi,邮箱:tonychee1989@gmail.com +Min Zhang ,邮箱:zm1990s@gmail.com +校对: +Jeff Bai,邮箱:jeffbaichina@gmail.com License - + 许å¯è¯ Copyright (c) 2004-2014, LMMS developers - + Copyright (c) 2004-2014, LMMS å¼€å‘者 <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> - + <html><head/><body><p><a href="http://lmms.sourceforge.net"><span style=" text-decoration: underline; color:#0000ff;">http://lmms.sourceforge.net</span></a></p></body></html> + + + LMMS + LMMS + + + + AmplifierControlDialog + + VOL + VOL + + + Volume: + 音é‡ï¼š + + + PAN + PAN + + + Panning: + 声相: + + + LEFT + å·¦ + + + Left gain: + 左增益: + + + RIGHT + å³ + + + Right gain: + å³å¢žç›Šï¼š + + + + AmplifierControls + + Volume + éŸ³é‡ + + + Panning + 声相 + + + Left gain + 左增益 + + + Right gain + å³å¢žç›Š AudioAlsa::setupWidget 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. - + 如果想打开å¦ä¸€ä¸ªéŸ³é¢‘文件,请点击这里。接ç€ä¼šå‡ºçŽ°æ–‡ä»¶é€‰æ‹©å¯¹è¯æ¡†ã€‚ 诸如环回模å¼(looping-mode)ã€èµ·å§‹/结æŸç‚¹ã€æ”¾å¤§å€¼(amplify-value)之类的值ä¸ä¼šè¢«é‡ç½®ï¼Œå› æ­¤éŸ³é¢‘å¬èµ·æ¥ä¼šå’ŒåŽŸé‡‡æ ·æœ‰å·®å¼‚ã€‚ Reverse sample - Amostra reversa + å转采样 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. - - - Loop sample at start- and end-point - Amostra em loop do ponto de início ao de fim - - - Here you can set, whether looping-mode is enabled. If enabled, AudioFileProcessor loops between start and end-points of a sample until the whole note is played. This is useful for things like string and choir samples. - + 如果点击此按钮,整个采样将会被å转。å转处ç†èƒ½ç”¨äºŽåˆ¶ä½œå¾ˆé…·çš„æ•ˆæžœï¼Œä¾‹å¦‚reversed crash。 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!) - + 此旋钮用于调整振幅放大比率。当设为100%时采样ä¸ä¼šå˜åŒ–ã€‚é™¤æ­¤ä¹‹å¤–ï¼ŒæŒ¯å¹…ä¸æ˜¯æ”¾å¤§å°±æ˜¯å‡å¼±ã€‚ (原始的采样文件ä¸ä¼šè¢«æ›´æ”¹ï¼‰ Startpoint: - Ponto de início: - - - With this knob you can set the point where AudioFileProcessor should begin playing your sample. If you enable looping-mode, this is the point to which AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - + 起始点: Endpoint: - Ponto final: - - - With this knob you can set the point where AudioFileProcessor should stop playing your sample. If you enable looping-mode, this is the point where AudioFileProcessor returns if a note is longer than the sample between the start and end-points. - + 终止点: 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. + 点击此按钮åŽï¼Œ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。 AudioJack::setupWidget CLIENT-NAME - NOME-DO-CLIENTE + 客户端åç§° CHANNELS - CANAIS + 声铿•° AudioOss::setupWidget DEVICE - DISPOSITIVO + 设备 CHANNELS - CANAIS + 声铿•° AudioPortAudio::setupWidget BACKEND - + åŽç«¯ DEVICE - DISPOSITIVO + 设备 AudioPulseAudio::setupWidget DEVICE - DISPOSITIVO + 设备 CHANNELS - CANAIS + 声铿•° AudioSdl::setupWidget DEVICE - DISPOSITIVO + 设备 AutomatableModel &Reset (%1%2) - + é‡ç½®ï¼ˆ%1%2)(&R) &Copy value (%1%2) - &Copiar valor (%1%2) + å¤åˆ¶å€¼ï¼ˆ%1%2)(&C) &Paste value (%1%2) - C&olar valor (%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 Play/pause current pattern (Space) - Tocar/pausar padrão atual (Espaço) + 播放/æš‚åœå½“å‰ç‰‡æ®µï¼ˆç©ºæ ¼ï¼‰ Stop playing of current pattern (Space) - Parar de tocar o 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. - + 点击这里播放片段。编辑时很有用,片段会自动循环播放。 Click here if you want to stop playing of the current pattern. - + ç‚¹å‡»è¿™é‡Œåœæ­¢æ’­æ”¾ç‰‡æ®µã€‚ Draw mode (Shift+D) - + ç»˜åˆ¶æ¨¡å¼ (Shift+D) Erase mode (Shift+E) - + æ“¦é™¤æ¨¡å¼ (Shift+E) 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' å¯ç”¨æ­¤æ¨¡å¼ã€‚ Cut selected values (Ctrl+X) - + 剪切选定值 (Ctrl+X) Copy selected values (Ctrl+C) - + å¤åˆ¶é€‰å®šå€¼ (Ctrl+C) Paste values from clipboard (Ctrl+V) - + 从剪贴æ¿ç²˜è´´å€¼ (Ctrl+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. @@ -304,11 +386,11 @@ If you're interested in translating LMMS in another language or want to imp Automation Editor - no pattern - + 自动控制编辑器 - 没有片段 Automation Editor - %1 - + 自动控制编辑器 - %1 Please open an automation pattern with the context menu of a control! @@ -316,11 +398,11 @@ If you're interested in translating LMMS in another language or want to imp Values copied - + 值已å¤åˆ¶ All selected values were copied to the clipboard. - + 所有选中的值已å¤åˆ¶ã€‚ Discrete progression @@ -363,236 +445,423 @@ If you're interested in translating LMMS in another language or want to imp AutomationPattern Drag a control while pressing <Ctrl> - + 按ä½<Ctrl>拖动控制器 + + + Model is already connected to this pattern. + 模型已连接到此片段。 AutomationPatternView double-click to open this pattern in automation editor - + åŒå‡»ä»¥åœ¨è‡ªåŠ¨ç¼–è¾‘å™¨ä¸­æ‰“å¼€æ­¤ç‰‡æ®µ Open in Automation editor - + 在自动编辑器(Automation editor)中打开 Clear - + 清除 Reset name - Restaurar nome + é‡ç½®åç§° Change name - Mudar nome + 修改åç§° %1 Connections - + %1个连接 Disconnect "%1" - + 断开“%1â€çš„连接 + + + Set/clear record + 设置/清除录制 AutomationTrack Automation track - + è‡ªåŠ¨æŽ§åˆ¶è½¨é“ + + + + BassBoosterControlDialog + + FREQ + 频率 + + + Frequency: + 频率: + + + GAIN + 增益 + + + Gain: + 增益: + + + RATIO + 比率 + + + Ratio: + 比率: + + + + BassBoosterControls + + Frequency + 频率 + + + Gain + 增益 + + + Ratio + 比率 + + + + 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 - CANAL + é€šé“ Input controller - + 输入控制器 CONTROLLER - + 控制器 Auto Detect - + 自动检测 MIDI-devices to receive MIDI-events from - Dispositivos MIDI para receber eventos MIDI de + ç”¨æ¥æŽ¥æ”¶ MIDI 事件的 MIDI 设备 USER CONTROLLER - + 用户控制器 MAPPING FUNCTION - + 映射函数 OK - OK + 确定 Cancel - Cancelar + å–æ¶ˆ 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. - + 确定è¦åˆ é™¤å—?此控制器ä»å¤„于被连接状æ€ã€‚æ­¤æ“作ä¸å¯æ’¤é”€ã€‚ 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 - + 删除这个æ’件(&R) &Help - Aj&uda + 帮助(&H) + + + + DualFilterControlDialog + + 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 + + + + Gain 1 + 增益 1 + + + Mix + + + + Filter 2 enabled + å·²å¯ç”¨è¿‡æ»¤å™¨ 2 + + + Filter 2 type + 过滤器 2 的类型 + + + Cutoff 2 frequency + 频谱刀 2 的频率 + + + Q/Resonance 2 + + + + Gain 2 + 增益 2 + + + LowPass + 低通 + + + HiPass + 高通 + + + BandPass csg + 带通 csg + + + BandPass czpg + 带通 czpg + + + Notch + 凹壿»¤æ³¢å™¨ + + + Allpass + 全通 + + + Moog + Moog + + + 2x LowPass + + + + RC LowPass 12dB + + + + RC BandPass 12dB + + + + RC HighPass 12dB + + + + RC LowPass 24dB + + + + RC BandPass 24dB + + + + RC HighPass 24dB + + + + Vocal Formant Filter + 人声移除过滤器 Effect Effect enabled - + 效果器已å¯ç”¨ Wet/Dry mix - + å¹²/æ¹¿æ··åˆ Gate - + é—¨é™ Decay - + è¡°å‡ EffectChain Effects enabled - + 效果器已å¯ç”¨ EffectRackView EFFECTS CHAIN - + 效果器链 Add effect - + 增加效果器 EffectSelectDialog Add effect - + 增加效果器 Plugin description - + æ’件说明 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. @@ -600,11 +869,11 @@ If you're interested in translating LMMS in another language or want to imp GATE - PORTAL + é—¨é™ Gate: - + é—¨é™ï¼š The Gate knob controls the signal level that is considered to be 'silence' while deciding when to stop processing signals. @@ -612,7 +881,7 @@ If you're interested in translating LMMS in another language or want to imp Controls - + 控制 Effect plugins function as a chained series of effects where the signal will be processed from top to bottom. @@ -632,70 +901,70 @@ Right clicking will bring up a context menu where you can change the order in wh Move &up - + å‘上移 (&u) Move &down - + å‘下移 (&d) &Remove this plugin - + 移除此æ’ä»¶ (&R) &Help - Aj&uda + 帮助(&H) 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 @@ -710,87 +979,87 @@ Right clicking will bring up a context menu where you can change the order in wh EnvelopeAndLfoView DEL - APAGAR - - - 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 - ESPERA - - - Hold: - Espera: - - - 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 espera 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 - DET - - - Decay: - Deterioração: - - - 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 deterioração 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 + + 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. + (ADSR Attack) + + + HOLD + HOLD + + + Hold: + æŒç»­ï¼š + + + Use this knob for setting hold-time of the current envelope. The bigger this value the longer the envelope holds attack-level before it begins to decrease to sustain-level. + + + + DEC + DEC + + + Decay: + è¡°å‡ï¼š + + + Use this knob for setting decay-time of the current envelope. The bigger this value the longer the envelope needs to decrease from attack-level to sustain-level. Choose a small value for instruments like pianos. + (ADSR Decay) + + + 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, maio será o nível que o envelope espera antes de ir para zero. + (ADSR Sustain) REL - LIB + REL Release: - Libera: + 消退: 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 liberação 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. + (ADSR Release) 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: @@ -798,7 +1067,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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: @@ -806,11 +1075,11 @@ Right clicking will bring up a context menu where you can change the order in wh 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: @@ -818,11 +1087,11 @@ Right clicking will bring up a context menu where you can change the order in wh 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. @@ -858,114 +1127,118 @@ Right clicking will bring up a context menu where you can change the order in wh MODULATE ENV-AMOUNT - MODULAR QUANTIDADE-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 + + 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. + + ExportProjectDialog Export project - + 导出工程 Output - + 输出 File format: - + 文件格å¼ï¼š Samplerate: - + 采样率: 44100 Hz - + 44100 Hz 48000 Hz - + 48000 Hz 88200 Hz - + 88200 Hz 96000 Hz - + 96000 Hz 192000 Hz - + 192000 Hz Bitrate: - + ç çŽ‡ï¼š 64 KBit/s - + 64 KBit/s 128 KBit/s - + 128 KBit/s 160 KBit/s - + 160 KBit/s 192 KBit/s - + 192 KBit/s 256 KBit/s - + 256 KBit/s 320 KBit/s - + 320 KBit/s Depth: - + 使·±ï¼š 16 Bit Integer - + 16 使•´å½¢ 32 Bit Float - + 32 使µ®ç‚¹åž‹ Please note that not all of the parameters above apply for all file formats. - + 请注æ„:上é¢çš„傿•°ä¸ä¸€å®šé€‚用于所有文件格å¼ã€‚ Quality settings - + è´¨é‡è®¾ç½® Interpolation: @@ -993,38 +1266,101 @@ Right clicking will bring up a context menu where you can change the order in wh 1x (None) - + 1x (æ— ) 2x - + 2x 4x - + 4x 8x - - - - Sample-exact controllers - - - - Alias-free oscillators - + 8x Start - + 开始 Cancel - Cancelar + å–æ¶ˆ Export as loop (remove end silence) + 导出为回环loop(移除结尾的é™éŸ³ï¼‰ + + + + FileBrowser + + Browser + æµè§ˆå™¨ + + + + 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... + 请ç¨å€™ï¼ŒåŠ è½½é‡‡æ ·ä¸­... + + + --- Factory files --- + ---软件自带文件--- + + + + 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 + + + + &Help @@ -1032,38 +1368,48 @@ Right clicking will bring up a context menu where you can change the order in wh FxMixer Master - + 主控 FX %1 - + FX %1 FxMixerView Rename FX channel - + é‡å‘½åæ•ˆæžœé€šé“ Enter the new name for this FX channel - + 为此效果通é“输入一个新的åç§° FX-Mixer - + 效果混åˆå™¨ + + + FxMixerView::FxChannelView FX Fader %1 - + FX è¡°å‡å™¨ %1 Mute - + é™éŸ³ Mute this FX channel - + é™éŸ³æ­¤æ•ˆæžœé€šé“ + + + + FxRoute + + Amount to send from channel %1 to channel %2 + ä»Žé€šé“ %1 å‘é€åˆ°é€šé“ %2 çš„é‡ @@ -1078,15 +1424,15 @@ Right clicking will bring up a context menu where you can change the order in wh Arpeggio range - Escala de harpeio + Arpeggio time - Tempo de harpeio + Arpeggio gate - Portal de harpeio + Arpeggio direction @@ -1098,38 +1444,42 @@ Right clicking will bring up a context menu where you can change the order in wh Up - + å‘上 Down - + å‘下 Up and down - + 上和下 Random - + éšæœº Free - + 自由 Sort - + æŽ’åº Sync - + åŒæ­¥ + + + Down and up + 下和上 InstrumentFunctionArpeggioView ARPEGGIO - HARPEIO + 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. @@ -1137,15 +1487,15 @@ Right clicking will bring up a context menu where you can change the order in wh RANGE - ESCALA + 范围 Arpeggio range: - Escala de harpeio: + 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. @@ -1153,27 +1503,27 @@ Right clicking will bring up a context menu where you can change the order in wh TIME - TEMPO + æ—¶é•¿ Arpeggio time: - Tempo de harpeio: - - - 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 harpeio em milesegundos. O tempo de harpeio especifica qual longo cada ton de herpeio será. + GATE - PORTAL + é—¨é™ Arpeggio gate: - Portal de harpeio: + % @@ -1185,401 +1535,413 @@ Right clicking will bring up a context menu where you can change the order in wh Chord: - + 和弦: Direction: - + æ–¹å‘: Mode: - + 模å¼ï¼š InstrumentFunctionNoteStacking octave - oitava + octave Major - Maior + Major Majb5 - + Majb5 minor - menor + 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 - Harmonico menor + Harmonic minor Melodic minor - Melódico menor + Melodic minor Whole tone - Todo o tom + Diminished - Diminuído + Diminished Major pentatonic - Pentatônico maior + Major pentatonic Minor pentatonic - Pentatônico menor + Minor pentatonic Jap in sen - + Jap in sen Major bebop - Bebop maior + Major bebop Dominant bebop - Bebop dominante + Dominant bebop Blues - Blues + Blues Arabic - Arábico + Arabic Enigmatic - Enigmático + Enigmatic Neopolitan - Napolitano + Neopolitan Neopolitan minor - Neopolitano menor + Neopolitan minor Hungarian minor - Húngaro menor + Hungarian minor Dorian - Dórico + Dorian Phrygolydian - + Lydian - + Lydian Mixolydian - + Mixolydian Aeolian - + Aeolian Locrian - + Locrian Chords - + Chords Chord type - + Chord type Chord range - Escala de acordes + Chord range Minor - + Minor + + + Chromatic + Chromatic + + + Half-Whole Diminished + + + + 5 + 5 InstrumentFunctionNoteStackingView RANGE - ESCALA + 范围 Chord range: - Escala de acordes: + 和弦范围: 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. @@ -1591,30 +1953,30 @@ Right clicking will bring up a context menu where you can change the order in wh Chord: - + 和弦: InstrumentMidiIOView ENABLE MIDI INPUT - + å¯ç”¨MIDI输入 CHANNEL - CANAL + é€šé“ VELOCITY - + 力度 ENABLE MIDI OUTPUT - + å¯ç”¨MIDI输出 PROGRAM - + ä¹å™¨ MIDI devices to receive MIDI events from @@ -1626,6 +1988,18 @@ Right clicking will bring up a context menu where you can change the order in wh NOTE + 音符 + + + CUSTOM BASE VELOCITY + + + + Specify the velocity normalization base for MIDI-based instruments at note volume 100% + + + + BASE VELOCITY @@ -1633,19 +2007,19 @@ Right clicking will bring up a context menu where you can change the order in wh InstrumentSoundShaping VOLUME - + éŸ³é‡ Volume - + éŸ³é‡ CUTOFF - INTERRUPÇÃO + 切除 Cutoff frequency - + 切除频率 RESO @@ -1653,7 +2027,7 @@ Right clicking will bring up a context menu where you can change the order in wh Resonance - + 共鸣 Envelopes/LFOs @@ -1661,43 +2035,43 @@ Right clicking will bring up a context menu where you can change the order in wh Filter type - + 过滤器类型 Q/Resonance - Q/Resonância - - - LowPass - Passagem Baixa - - - HiPass - Passagem Alta - - - BandPass csg - Passagem da Faixa csg - - - BandPass czpg - Passagem da Faixa czpg - - - Notch - Entalhe - - - Allpass - Passagem Total - - - Moog + + LowPass + 低通 + + + HiPass + 高通 + + + BandPass csg + 带通 csg + + + BandPass czpg + 带通 czpg + + + Notch + 凹壿»¤æ³¢å™¨ + + + Allpass + 全通 + + + Moog + Moog + 2x LowPass - 2x Passagem Baixa + RC LowPass 12dB @@ -1725,14 +2099,14 @@ Right clicking will bring up a context menu where you can change the order in wh Vocal Formant Filter - + 人声移除过滤器 InstrumentSoundShapingView TARGET - ALVO + 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...! @@ -1740,7 +2114,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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. @@ -1774,138 +2148,138 @@ Right clicking will bring up a context menu where you can change the order in wh 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. - Com este botão você pode ajustar o volume do canal aberto. + 使用此旋钮å¯ä»¥è®¾ç½®å¼€æ”¾é€šé“çš„éŸ³é‡ Base note - + 基本音 Pitch range - + 音域范围 InstrumentTrackView Volume - + éŸ³é‡ Volume: - + 音é‡ï¼š VOL - + VOL Panning - + 声相 Panning: - + 声相: PAN - + PAN MIDI - + MIDI Input - + 输入 Output - + 输出 InstrumentTrackWindow GENERAL SETTINGS - AJUSTES GERAIS - - - Click here, if you want to save current channel settings in a preset-file. Later you can load this preset by double-clicking it in the preset-browser. - Clique aqui se você quer salvar os ajustes do canal atual em um preset-file. Depois você pode carregar estes ajustes dando um duplo clique nele no navegador de pré-ajustes. + 一般设置 Instrument volume - + ä¹å™¨éŸ³é‡ Volume: - + 音é‡ï¼š VOL - + VOL Panning - + 声相 Panning: - + 声相: PAN - + PAN Pitch - + 音高 Pitch: - + 音高: cents - centavos + 音分 cents PITCH - + FX channel - + æ•ˆæžœé€šé“ ENV/LFO @@ -1917,78 +2291,89 @@ Right clicking will bring up a context menu where you can change the order in wh FX - + 效果 MIDI - + MIDI Save preset - + ä¿å­˜é¢„ç½® XML preset file (*.xpf) - + XML 预设文件 (*.xpf) PLUGIN - - - - Save current channel settings in a preset-file - + æ’ä»¶ Pitch range (semitones) - + 音域范围(åŠéŸ³ï¼‰ RANGE - ESCALA + 范围 + + + 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. + LadspaControl Link channels - + å…³è”é€šé“ LadspaControlDialog Link Channels - + è¿žæŽ¥é€šé“ Channel - + é€šé“ LadspaControlView Link channels - + è¿žæŽ¥é€šé“ Value: - + 值: Sorry, no help available. - + 啊哦,这个没有帮助文档。 LadspaEffect Effect - + 效果器 Unknown LADSPA plugin %1 requested. + 已请求未知 LADSPA æ’ä»¶ %1. + + + + LcdSpinBox + + Please enter a new value between %1 and %2: @@ -2047,11 +2432,11 @@ Right clicking will bring up a context menu where you can change the order in wh SPD - VEL + LFO-speed: - Velocidade do LFO: + Use this knob for setting speed of the LFO. The bigger this value the faster the LFO oscillates and the faster the effect. @@ -2059,11 +2444,11 @@ Right clicking will bring up a context menu where you can change the order in wh AMT - QNT + 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. @@ -2079,7 +2464,7 @@ Right clicking will bring up a context menu where you can change the order in wh 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. @@ -2123,116 +2508,117 @@ Double click to pick a file. MainWindow Working directory - + 工作目录 The LMMS working directory %1 does not exist. Create it now? You can change the directory later via Edit -> Settings. - + LMMS工作目录%1ä¸å­˜åœ¨ï¼ŒçŽ°åœ¨æ–°å»ºä¸€ä¸ªå—?你å¯ä»¥ç¨åŽåœ¨ 编辑 -> 设置 中更改此设置。 Could not save config-file - O arquivo de configuração não pode ser salvo + ä¸èƒ½ä¿å­˜é…置文件 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. - + ä¸èƒ½ä¿å­˜é…置文件%1,你å¯èƒ½æ²¡æœ‰å†™æƒé™ã€‚ +请确ä¿ä½ å¯ä»¥å†™å…¥è¿™ä¸ªæ–‡ä»¶å¹¶é‡è¯•。 &Project - &Projeto + 工程(&P) &New - &Novo + 新建(&N) &Open... - &Abrir... + 打开(&O)... Recently opened projects - + 最近打开的工程 &Save - &Salvar + ä¿å­˜ï¼ˆ&S)... Save &As... - Salvar &como... + å¦å­˜ä¸ºï¼ˆ&A)... Import... - + 导入... E&xport... - + 导出(&E)... &Quit - Sai&r + 退出(&Q) &Edit - + 编辑(&E) Settings - + 设置 &Tools - + 工具(&T) &Help - Aj&uda + 帮助(&H) Online help - + 在线帮助 Help - Ajuda + 帮助 What's this? - O que é isso? + 这是什么? About - Sobre + 关于 Create new project - Criar novo projeto + 新建工程 Create new project from template - + 从模版新建工程 Open existing project - Abrir projeto existente + 打开已有工程 Recently opened project - + 最近打开的工程 Save current project - Salvar projeto atual + ä¿å­˜å½“å‰å·¥ç¨‹ Export current project - Exportar projeto atual + 导出当å‰å·¥ç¨‹ Show/hide Song-Editor - Mostrar/esconder Editor de música + 显示/éšè—歌曲编辑器 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. @@ -2240,7 +2626,7 @@ Please make sure you have write-access to the file and try again. Show/hide Beat+Bassline Editor - Mostrar/esconder Editor de Batida+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. @@ -2248,7 +2634,7 @@ Please make sure you have write-access to the file and try again. Show/hide Piano-Roll - Mostrar/esconder Teclas do 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. @@ -2256,7 +2642,7 @@ Please make sure you have write-access to the file and try again. 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. @@ -2264,7 +2650,7 @@ Please make sure you have write-access to the file and try again. 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. @@ -2272,107 +2658,120 @@ Please make sure you have write-access to the file and try again. Show/hide project notes - Mostrar/esconder notas do projeto + 显示/éšè—工程注释 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 - + 未标题 LMMS %1 - 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? + 此工程自上次ä¿å­˜åŽæœ‰äº†ä¿®æ”¹ï¼Œä½ æƒ³ä¿å­˜å—? Open project - Abrir projeto + 打开工程 Save project - Salvar projeto + ä¿å­˜å·¥ç¨‹ 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. - + LMMS现在没有å¯ç”¨çš„帮助 +请访问 http://lmms.sf.net/wiki 了解LMMS的相关文档。 My projects - + 我的工程 My samples - + 我的采样 My presets - + 我的预置 My home - + 我的主目录 My computer - + 我的电脑 Root directory - + 根目录 Save as new &version - + ä¿å­˜ä¸ºæ–°ç‰ˆæœ¬ï¼ˆ&V) E&xport tracks... - + 导出音轨(&E)... LMMS (*.mmp *.mmpz) - - - - LMMS Project (*.mmp *.mmpz);;LMMS Project Template (*.mpt) - + LMMS (*.mmp *.mmpz) Version %1 - + 版本 %1 Project recovery - + 工程æ¢å¤ It looks like the last session did not end properly. Do you want to recover the project of this session? - + 好åƒä¸Šæ¬¡ä¼šè¯æœªèƒ½æ­£å¸¸é€€å‡ºï¼Œä½ æƒ³è¦æ¢å¤ä¸Šæ¬¡ä¼šè¯æœªä¿å­˜çš„工程å—? Configuration file - + é…置文件 Error while parsing configuration file at line %1:%2: %3 + è§£æžé…置文件å‘生错误(行%1:%2:%3) + + + Undo + 撤销 + + + Redo + é‡åš + + + LMMS Project (*.mmpz *.mmp);;LMMS Project Template (*.mpt) + LMMS 工程 (*.mmpz *.mmp);;LMMS å·¥ç¨‹æ¨¡æ¿ (*.mpt) + + + Volumes @@ -2406,14 +2805,14 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiAlsaRaw::setupWidget DEVICE - DISPOSITIVO + 设备 MidiAlsaSeq::setupWidget DEVICE - DISPOSITIVO + 设备 @@ -2446,26 +2845,26 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. MidiOss::setupWidget DEVICE - DISPOSITIVO + 设备 MidiPort Input channel - + è¾“å…¥é€šé“ Output channel - + è¾“å‡ºé€šé“ Input controller - + 输入控制器 Output controller - + 输出控制器 Fixed input velocity @@ -2491,36 +2890,677 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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 + + + + + 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. + + + + + 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 - Volume Osc %1 + Osc %1 panning - Panning Osc %1 + Osc %1 coarse detuning - Detom grosseiro Osc %1 + Osc %1 fine detuning left - Detom fino esquerdo Osc %1 + Osc %1 fine detuning right - Detom fino direito %1 + Osc %1 phase-offset - Compensador de fase Osc %1 + Osc %1 stereo phase-detuning - Detom de fase estéreo Osc %1 + Osc %1 wave shape @@ -2534,52 +3574,89 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. 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. - + 在这里你å¯ä»¥å¼€å…³å¾ªçŽ¯æ¨¡å¼ã€‚如果å¯ç”¨ï¼Œ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 + + double-click to open this pattern in piano-roll +use mouse wheel to set volume of a step + åŒå‡»åœ¨é’¢ç´çª—中打开此片段 +ä½¿ç”¨é¼ æ ‡æ»‘è½®è®¾ç½®æ­¤éŸ³é˜¶çš„éŸ³é‡ + + + Open in piano-roll + 在钢ç´çª—中打开 + + + Clear all notes + 清除所有音符 + + + Reset name + é‡ç½®åç§° + + + Change name + 修改åç§° + + + Add steps + 添加音阶 + + + Remove steps + 移除音阶 @@ -2620,15 +3697,15 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Modulation amount: - Quantidade de modulação: + Attack: - Ataque: + 打进声 Release: - Libera: + AMNT @@ -2659,7 +3736,7 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Modulation amount - Quantidade de modulação + Mute output @@ -2667,11 +3744,11 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. Attack - + 打进声 Release - + 释放 Abs Value @@ -2682,30 +3759,218 @@ Please visit http://lmms.sf.net/wiki for documentation on LMMS. + + PianoRoll + + Play/pause current pattern (Space) + 播放/æš‚åœå½“å‰ç‰‡æ®µï¼ˆç©ºæ ¼ï¼‰ + + + Stop playing of current pattern (Space) + åœæ­¢å½“å‰ç‰‡æ®µï¼ˆç©ºæ ¼ï¼‰ + + + Cut selected notes (Ctrl+X) + 剪切选定音符 (Ctrl+X) + + + Copy selected notes (Ctrl+C) + å¤åˆ¶é€‰å®šéŸ³ç¬¦ (Ctrl+C) + + + Paste notes from clipboard (Ctrl+V) + 从剪贴æ¿ç²˜è´´éŸ³ç¬¦ (Ctrl+V) + + + Piano-Roll - no pattern + é’¢ç´çª— - 没有片段 + + + Piano-Roll - %1 + é’¢ç´çª— - %1 + + + Please open a pattern by double-clicking on it! + åŒå‡»æ‰“å¼€ç‰‡æ®µï¼ + + + Record notes from MIDI-device/channel-piano + 从 MIDI 设备/通é“é’¢ç´(channel-piano) 录制音符 + + + Record notes from MIDI-device/channel-piano while playing song or BB track + + + + Draw mode (Shift+D) + ç»˜åˆ¶æ¨¡å¼ (Shift+D) + + + Erase mode (Shift+E) + æ“¦é™¤æ¨¡å¼ (Shift+E) + + + Select mode (Shift+S) + é€‰æ‹©æ¨¡å¼ ï¼ˆShift+S) + + + Last note + 上一个音符 + + + 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. + + + + 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. + + + + Note lock + + + + Note Volume + éŸ³ç¬¦éŸ³é‡ + + + Note Panning + 音符声相åç§» + + + 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 Ctrl 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 Ctrl 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. + + + + Mark/unmark current semitone + + + + Mark current scale + + + + Mark current chord + + + + Unmark all + å–æ¶ˆæ ‡è®°æ‰€æœ‰ + + + No scale + + + + No chord + + + + Volume: %1% + 音é‡ï¼š%1% + + + Panning: %1% left + 声相:%1% åå·¦ + + + Panning: %1% right + 声相:%1% åå³ + + + Panning: center + 声相:居中 + + + Please enter a new value between %1 and %2: + 请输入一个介于 %1 å’Œ %2 的值: + + + 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 - Plugin não encontrado + 未找到æ’ä»¶ The plugin "%1" wasn't found or could not be loaded! Reason: "%2" - + æ’件“%1â€æ— æ³•æ‰¾åˆ°æˆ–æ— æ³•è½½å…¥ï¼ +原因:%2 Error while loading plugin - Erro ao carregar plugin + 载入æ’ä»¶æ—¶å‘生错误 Failed to load plugin "%1"! + 载入æ’件“%1â€å¤±è´¥ï¼ + + + LMMS plugin %1 does not have a plugin descriptor named %2! @@ -2713,11 +3978,11 @@ Reason: "%2" ProjectRenderer WAV-File (*.wav) - + WAV-文件 (*.wav) Compressed OGG-File (*.ogg) - Arquivo OGG compactado (*.ogg) + 压缩的 OGG 文件(*.ogg) @@ -2725,118 +3990,118 @@ Reason: "%2" C Note name - + C Db Note name - + Db C# Note name - + C# D Note name - + D Eb Note name - + Eb D# Note name - + D# E Note name - + E Fb Note name - + Fb Gb Note name - + Gb F# Note name - + F# G Note name - + G Ab Note name - + Ab G# Note name - + G# A Note name - + A Bb Note name - + Bb A# Note name - + A# B Note name - + B QWidget Name: - + å称: Maker: - + 制作者: Copyright: - + 版æƒï¼š Requires Real Time: - + 需è¦å®žæ—¶ï¼š Yes - + 是 No - + å¦ Real Time Capable: - + æ˜¯å¦æ”¯æŒå®žæ—¶ï¼š In Place Broken: @@ -2844,122 +4109,269 @@ Reason: "%2" Channels In: - + 输入通é“: Channels Out: - + 输出通é“: File: - + 文件: + + + File: %1 + 文件:%1 SampleBuffer Open audio file - Abrir arquivo de áudio - - - All Audio-Files (*.wav *.ogg *.ds *.flac *.spx *.voc *.aif *.aiff *.au *.raw *.mp3) - + 打开音频文件 Wave-Files (*.wav) - Arquivos Wave (*.wav) + Wave波形文件 (*.wav) OGG-Files (*.ogg) - Arquivos OGG (*.ogg) + OGG-文件 (*.ogg) DrumSynth-Files (*.ds) - + DrumSynth-文件 (*.ds) FLAC-Files (*.flac) - + FLAC-文件 (*.flac) SPEEX-Files (*.spx) - - - - MP3-Files (*.mp3) - + SPEEX-文件 (*.spx) VOC-Files (*.voc) - Arquivos VOC (*.voc) + VOC-文件 (*.voc) AIFF-Files (*.aif *.aiff) - Arquivos AIFF (*.aif *.aiff) + AIFF-文件 (*.aif *.aiff) AU-Files (*.au) - Arquivos AU (*.au) + AU-文件 (*.au) RAW-Files (*.raw) - Arquivos RAW (*.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) SampleTCOView double-click to select sample - Duplo clique para selecionar amostra + åŒå‡»é€‰æ‹©é‡‡æ · Delete (middle mousebutton) - + 删除 (鼠标中键) Cut - Recortar + 剪切 Copy - Copiar + å¤åˆ¶ Paste - Colar + 粘贴 Mute/unmute (<Ctrl> + middle click) - + é™éŸ³/å–æ¶ˆé™éŸ³ (<Ctrl> + 鼠标中键) Set/clear record - + 设置/清除录制 SampleTrack Sample track - Trilha de amostra + é‡‡æ ·è½¨é“ Volume - + éŸ³é‡ SampleTrackView Track volume - + 轨é“éŸ³é‡ Channel volume: - Volume do canal: + 通é“音é‡ï¼š VOL + VOL + + + + SongEditor + + Song-Editor + 歌曲编辑器 + + + Play 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. + ç‚¹å‡»è¿™é‡Œå®Œæ•´æ’­æ”¾æ­Œæ›²ã€‚å°†ä»Žç»¿è‰²æ­Œæ›²æ ‡è®°å¼€å§‹æ’­æ”¾ã€‚åœ¨æ’­æ”¾çš„åŒæ—¶å¯ä»¥å¯¹å®ƒè¿›è¡Œç§»åŠ¨ã€‚ + + + Stop song (Space) + åœæ­¢æ­Œæ›²ï¼ˆç©ºæ ¼ï¼‰ + + + Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. + ç‚¹å‡»è¿™é‡Œåœæ­¢æ’­æ”¾ï¼Œæ­Œæ›²ä½ç½®æ ‡è®°ä¼šè·³åˆ°æ­Œæ›²çš„开头。 + + + Add beat/bassline + 添加节æ‹/低音线 + + + Add sample-track + æ·»åŠ é‡‡æ ·è½¨é“ + + + Could not open file + 无法打开文件 + + + Could not write file + 无法写入文件 + + + Add automation-track + æ·»åŠ è‡ªåŠ¨åŒ–è½¨é“ + + + Draw mode + ç»˜åˆ¶æ¨¡å¼ + + + Edit mode (select and move) + 编辑模å¼ï¼ˆé€‰å®šå’Œç§»åŠ¨ï¼‰ + + + Record samples from Audio-device + 从音频设备录制样本 + + + Record samples from Audio-device while playing song or BB track + 在播放歌曲或BBè½¨é“æ—¶ä»ŽéŸ³é¢‘设备录入样本 + + + 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). + + + + 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 写入数æ®ã€‚或许没有æƒé™ä¿®æ”¹æ­¤æ–‡ä»¶ã€‚è¯·ç¡®ä¿æ‚¨æ‹¥æœ‰å¯¹æ­¤æ–‡ä»¶çš„写æƒé™ï¼Œç„¶åŽé‡è¯•。 + + + + SpectrumAnalyzerControlDialog + + Linear spectrum + 线性频谱图 + + + Linear Y axis + + + + + SpectrumAnalyzerControls + + Linear spectrum + 线性频谱图 + + + Linear Y axis + + + + Channel mode @@ -2967,39 +4379,39 @@ Reason: "%2" 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 - 8o nota + 16th note - 16o nota + 32nd note - 32o nota + Custom... @@ -3007,7 +4419,7 @@ Reason: "%2" &Help - Aj&uda + Custom @@ -3015,38 +4427,38 @@ Reason: "%2" 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 8o Nota + Synced to 16th Note - Sincronizado com a 16o Nota + Synced to 32nd Note - Sincronizado com a 32o Nota + TimeDisplayWidget click to change time units - + ç‚¹å‡»æ”¹å˜æ—¶é—´å•ä½ @@ -3071,19 +4483,19 @@ Please make sure you have read-permission to the file and the directory containi Loading project... - Carregando projeto... + Cancel - Cancelar + å–æ¶ˆ Please wait... - Por favor aquarde... + Importing MIDI-file... - Importando arquivo MIDI... + Importing FLP-file... @@ -3134,23 +4546,23 @@ Please make sure you have read-permission to the file and the directory containi 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: - 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. - 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: - Detom grosseiro Osc %1: + semitones @@ -3158,43 +4570,43 @@ Please make sure you have read-permission to the file and the directory containi With this knob you can set the coarse detuning of oscillator %1. You can detune the oscillator 12 semitones (1 octave) up and down. This is useful for creating sounds with a chord. - Com este botão você pode ajustar o detom grosseiro do oscilador %1. Você pode descer o tom do oscilador 12 semitons (1 oitava) para cima e para baixo. Isto é útil para criar sons com um acorde. + Osc %1 fine detuning left: - Detom fino esquerdo Osc %1: + cents - centavos + 音分 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. - Com este botão você pode ajustar o detom fino do oscilador %1 para o canal esquerdo. O detom fino varia entre -100 centavos e +100 centavos. Isto é útil para criar sons 'gordos'. + Osc %1 fine detuning right: - Detom 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 ajustar o detom fino do oscilador %1 para o canal direito. O detom fino varia entre -100 centavos e +100 centavos. Isto é útil para criar sons 'gordos'. + Osc %1 phase-offset: - Compensador de fase 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 compensador de fase 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: - Detom de fase 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. @@ -3259,11 +4671,11 @@ Please make sure you have read-permission to the file and the directory containi 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 @@ -3271,7 +4683,7 @@ Please make sure you have read-permission to the file and the directory containi 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 @@ -3279,19 +4691,19 @@ Please make sure you have read-permission to the file and the directory containi Open VST-plugin - Abrir plugin VST + DLL-files (*.dll) - Arquivos DLL (*.dll) + EXE-files (*.exe) - Arquivos EXE (*.exe) + No VST-plugin loaded - Nenhum plgin VST carregado + Control VST-plugin from LMMS host @@ -3319,7 +4731,7 @@ Please make sure you have read-permission to the file and the directory containi Save preset - + ä¿å­˜é¢„ç½® Click here, if you want to save current VST-plugin preset program. @@ -3386,7 +4798,7 @@ Please make sure you have read-permission to the file and the directory containi Save preset - + ä¿å­˜é¢„ç½® Click here, if you want to save current VST-plugin preset program. @@ -3405,21 +4817,7 @@ Please make sure you have read-permission to the file and the directory containi VstPlugin Loading plugin - - - - Please wait while loading VST-plugin... - - - - Failed loading VST-plugin - Falha ao carregar plugin VST - - - The VST-plugin %1 could not be loaded for some reason. -If it runs with other VST-software under Linux, please contact an LMMS-developer! - O plugin VST não pode ser carregado por alguma razão. -Se ele rodar com outro programa VST no Linux, por favor entre em contato com um desenvolvedor do LMMS! + 载入æ’ä»¶ Open Preset @@ -3461,6 +4859,268 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um .fxb + + Please wait while loading VST plugin... + + + + Failed loading VST plugin + + + + The VST plugin %1 could not be loaded for some reason. + + + + + 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 + + + + 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 @@ -3478,11 +5138,11 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um Bandwidth - + 带宽 FM Gain - + FM 增益 Resonance Center Frequency @@ -3533,7 +5193,7 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um Bandwidth: - + 带宽: BW @@ -3570,70 +5230,48 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um audioFileProcessor - - Reverse sample - Amostra reversa - Amplify - Amplificar + Start of sample - Início da amostra + End of sample - Fim da amostra + - Loop - + Reverse sample + å转采样 Stutter - - - bassBoosterControlDialog - FREQ + Loopback point - Frequency: + Loop mode + å¾ªçŽ¯æ¨¡å¼ + + + Interpolation mode - GAIN + None - Gain: + Linear - RATIO - - - - Ratio: - - - - - bassBoosterControls - - Frequency - - - - Gain - - - - Ratio + Sinc @@ -3641,83 +5279,87 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um bbEditor Beat+Bassline Editor - Editor de Batida+Baixo + 节æ‹+低音线编辑器 Play/pause current beat/bassline (Space) - Tocar/pausar a batida/baixo atual (Espaço) + 播放/æš‚åœå½“å‰èŠ‚æ‹/低音线(空格) Add beat/bassline - Adicionar batida/baixo + 添加节æ‹/低音线 Add automation-track - + æ·»åŠ è‡ªåŠ¨è½¨é“ 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. - + ç‚¹å‡»è¿™é‡Œåœæ­¢æ’­å‘当å‰èŠ‚æ‹/低音线。 Remove steps - Remover passo + 移除音阶 Add steps - Adicionar passo + 添加音阶 bbTCOView Open in Beat+Bassline-Editor - Abrir no editor de Batida/Baixo + 在节æ‹+低音线编辑器中打开 Reset name - Restaurar nome + é‡ç½®åç§° Change name - Mudar nome + 修改åç§° Change color - Mudar cor + 改å˜é¢œè‰² + + + Reset color to default + é‡ç½®é¢œè‰² bbTrack Beat/Bassline %1 - Batida/Baixo %1 + 节æ‹/低音线 %1 Clone of %1 - + %1 的副本 bitInvader Samplelength - + 采样长度 bitInvaderView Sample Length - + 采样长度 Sine wave @@ -3729,27 +5371,27 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um Saw wave - + 锯齿波 Square wave - + 方波 White noise wave - + 白噪音 User defined wave - + 用户自定义波形 Smooth - + 平滑 Click here to smooth waveform. - + 点击这里平滑波形。 Interpolation @@ -3757,7 +5399,7 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um Normalize - + 标准化 Draw your own waveform here by dragging your mouse on this graph. @@ -3788,165 +5430,293 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um + + 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 + + + exportProjectDialog 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! - Não é possível abrir o arquivo %1 para gravação. -Por favor certifique-se que você tem permissão para gravação no arquivo e se o arquivo se encontra no diretório e tente novamente! + 无法打开文件 %1 写入数æ®ã€‚ +请确ä¿ä½ æ‹¥æœ‰å¯¹æ–‡ä»¶ä»¥åŠå­˜å‚¨æ–‡ä»¶çš„目录的写æƒé™ï¼Œç„¶åŽé‡è¯•ï¼ Error - + 错误 Error while determining file-encoder device. Please try to choose a different output format. - + 寻找文件编ç è®¾å¤‡æ—¶å‡ºé”™ã€‚请使用å¦å¤–一ç§è¾“出格å¼ã€‚ Rendering: %1% - + 渲染中:%1% Export project to %1 - Exportar projeto para %1 + 导出项目到 %1 fader Please enter a new value between %1 and %2: - Por favor entre com um novo valor entre %1 e %2: - - - - fileBrowser - - Browser - - - - - 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... - - - - --- Factory files --- - + 请输入一个介于 %1 å’Œ %2 之间的值: graphModel Graph - + 图形 kickerInstrument Start frequency - + 起始频率 End frequency - - - - Decay - - - - Distortion - + 结æŸé¢‘率 Gain + 增益 + + + Length + 长度 + + + Distortion Start + + Distortion End + + + + Envelope Slope + 包络线倾斜度 + + + Noise + 噪音 + + + Click + 力度 + + + Frequency Slope + 频率倾斜度 + + + Start from note + 从哪个音符开始 + + + End to note + åˆ°å“ªä¸ªéŸ³ç¬¦ç»“æŸ + kickerInstrumentView Start frequency: - + 起始频率: End frequency: - - - - Decay: - Deterioração: - - - Distortion: - + 结æŸé¢‘率: Gain: - + 增益: + + + Frequency Slope: + 频率倾斜度: + + + Envelope Length: + 包络长度: + + + Envelope Slope: + 包络线倾斜度: + + + Click: + 力度: + + + Noise: + 噪音: + + + Distortion Start: + 起始失真度: + + + Distortion End: + 结æŸå¤±çœŸåº¦ï¼š knob &Help - Aj&uda - - - Please enter a new value between %1 and %2: - Por favor entre com um novo valor entre %1 e %2: + 帮助(&H) Please enter a new value between -96.0 dBV and 6.0 dBV: - + 请输入介于96.0 dBV å’Œ 6.0 dBV之间的值: + + + Please enter a new value between %1 and %2: + 请输入介于%1å’Œ%2之间的值: 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. @@ -3966,18 +5736,18 @@ Double clicking any of the plugins will bring up information on the ports. Type: - Tipo: + 类型 ladspaDescription Plugins - + æ’ä»¶ Description - + æè¿° @@ -4024,11 +5794,11 @@ Double clicking any of the plugins will bring up information on the ports. Input - + 输入 Output - + 输出 Toggled @@ -4044,7 +5814,7 @@ Double clicking any of the plugins will bring up information on the ports. Yes - + 是 @@ -4067,11 +5837,11 @@ Double clicking any of the plugins will bring up information on the ports. Distortion - + 失真 Waveform - + 波形 Slide Decay @@ -4110,7 +5880,7 @@ Double clicking any of the plugins will bring up information on the ports. Decay: - Deterioração: + è¡°å‡ï¼š 303-es-que, 24dB/octave, 3 pole filter @@ -4126,7 +5896,7 @@ Double clicking any of the plugins will bring up information on the ports. Saw wave - + 锯齿波 Click here for a saw-wave. @@ -4142,7 +5912,7 @@ Double clicking any of the plugins will bring up information on the ports. Square wave - + 方波 Click here for a square-wave. @@ -4174,7 +5944,7 @@ Double clicking any of the plugins will bring up information on the ports. White noise wave - + 白噪音 Click here for an exponential wave. @@ -4184,6 +5954,38 @@ Double clicking any of the plugins will bring up information on the ports.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 @@ -4205,11 +6007,11 @@ Double clicking any of the plugins will bring up information on the ports. Distortion - + 失真 Waveform - + 波形 Slide Decay @@ -4260,11 +6062,11 @@ Double clicking any of the plugins will bring up information on the ports. Decay: - Deterioração: + è¡°å‡ï¼š DEC - DET + 303-es-que, 24dB/octave, 3 pole filter @@ -4577,7 +6379,7 @@ Double clicking any of the plugins will bring up information on the ports. Close - + 关闭 Close VST effect knob-controller window. @@ -4608,7 +6410,7 @@ Double clicking any of the plugins will bring up information on the ports. Close - + 关闭 Close VST plugin knob-controller window. @@ -4619,7 +6421,7 @@ Double clicking any of the plugins will bring up information on the ports.nineButtonSelector &Help - Aj&uda + @@ -4745,22 +6547,22 @@ Double clicking any of the plugins will bring up information on the ports.organicInstrument Distortion - + 失真 Volume - + éŸ³é‡ organicInstrumentView Distortion: - + 失真: Volume: - + 音é‡ï¼š Randomise @@ -4772,19 +6574,35 @@ Double clicking any of the plugins will bring up information on the ports. Osc %1 volume: - Volume Osc %1: + Osc %1 panning: - Panning Osc %1: - - - Osc %1 fine detuning left: - Detom fino esquerdo Osc %1: + cents - centavos + 音分 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: + @@ -4831,7 +6649,7 @@ Double clicking any of the plugins will bring up information on the ports. Right Output level - + å³å£°é“输出电平 Left Output level @@ -4875,7 +6693,7 @@ Double clicking any of the plugins will bring up information on the ports. Bass - + 低音 Shift Register width @@ -4978,7 +6796,7 @@ Double clicking any of the plugins will bring up information on the ports. Bass - + 低音 Sweep Direction @@ -5053,228 +6871,15 @@ Double clicking any of the plugins will bring up information on the ports. - - pattern - - Cannot freeze pattern - Não é possível congelar padrão - - - The pattern currently cannot be freezed because you're in play-mode. Please stop and try again! - O padrão atualmente não pode ser congelado porque você está no modo tocar (play-mode). Por favor pare e tente novamente! - - - - patternFreezeStatusDialog - - Freezing pattern... - Congelando padrão... - - - Cancel - Cancelar - - - - patternView - - double-click to open this pattern in piano-roll -use mouse wheel to set volume of a step - - - - Open in piano-roll - Abrir nas teclas do piano - - - Clear all notes - Limpar todas as notas - - - Reset name - Restaurar nome - - - Change name - Mudar nome - - - Refreeze - Re-congelar - - - Freeze - Congelar - - - Unfreeze - Descongelar - - - Add steps - Adicionar passo - - - Remove steps - Remover passo - - - - PianoRoll - - Play/pause current pattern (Space) - Tocar/pausar padrão atual (Espaço) - - - Record notes from MIDI-device/channel-piano - Gravar notas do dispositivo MIDI/canal do piano - - - Stop playing of current pattern (Space) - Parar de tocar o padrão atual (Espaço) - - - Cut selected notes (Ctrl+X) - Recortar notas selecionadas (Ctrl+X) - - - Copy selected notes (Ctrl+C) - Copiar notas selecionadas (Ctrl+C) - - - Paste notes from clipboard (Ctrl+V) - Colar notas da área de transferência (Ctrl+V) - - - Piano-Roll - no pattern - Teclas do piano - nenhum padrão - - - Piano-Roll - %1 - Teclas do piano - %1 - - - Please open a pattern by double-clicking on it! - Por favor abra um padrão com um duplo clique sobre ele! - - - Record notes from MIDI-device/channel-piano while playing song or BB track - - - - Draw mode (Shift+D) - - - - Erase mode (Shift+E) - - - - Select mode (Shift+S) - - - - Last note - - - - 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. - - - - 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. - - - - Note lock - - - - Note Volume - - - - Note Panning - - - - 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 Ctrl 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 Ctrl 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. - - - - Mark/unmark current semitone - - - - Mark current scale - - - - Mark current chord - - - - Unmark all - - - - No scale - - - - No chord - - - pluginBrowser - - Instrument plugins - Plugins de instrumentos - - - three powerful oscillators you can modulate in several ways - três osciladores poderosos que você pode modular de várias maneiras - no description - + 没有æè¿° + + + Instrument plugins + ä¹å™¨æ’ä»¶ Incomplete monophonic imitation tb303 @@ -5294,43 +6899,27 @@ use mouse wheel to set volume of a step List installed LADSPA plugins - + 列出已安装的 LADSPA æ’ä»¶ Filter for importing FL Studio projects into LMMS - - versatile kick- & bassdrum-synthesizer - - GUS-compatible patch instrument - - plugin for using arbitrary VST-effects inside LMMS. - - Additive Synthesizer for organ-like sounds - - plugin for boosting bass - - Tuneful things to bang on - - simple sampler with various settings for using samples (e.g. drums) in an instrument-track - - VST-host for using VST(i)-plugins within LMMS - + LMMSçš„VST(i)æ’件宿主 Vibrating string modeler @@ -5346,7 +6935,7 @@ use mouse wheel to set volume of a step Instrument browser - + ä¹å™¨æµè§ˆå™¨ Drag an instrument into either the Song-Editor, the Beat+Bassline Editor or into an existing instrument track. @@ -5359,7 +6948,7 @@ This chip was used in the Commodore 64 computer. Player for SoundFont files - + 在工程中使用SoundFont Emulation of GameBoy (TM) APU @@ -5367,7 +6956,7 @@ This chip was used in the Commodore 64 computer. Customizable wavetable synthesizer - + å¯è‡ªå®šåˆ¶çš„æ³¢è¡¨åˆæˆå™¨ Embedded ZynAddSubFX @@ -5385,24 +6974,80 @@ This chip was used in the Commodore 64 computer. LMMS port of sfxr + + plugin for processing dynamics in a flexible way + + + + plugin for waveshaping + + + + Versatile drum synthesizer + + + + 4-oscillator modulatable wavetable synth + + + + A native amplifier plugin + + + + plugin for using arbitrary VST effects inside LMMS. + + + + Monstrous 3-oscillator synth with modulation matrix + + + + Three powerful oscillators you can modulate in several ways + + + + Boost your bass the fast and simple way + + + + A NES-like synthesizer + + + + Graphical spectrum analyzer plugin + + + + Simple sampler with various settings for using samples (e.g. drums) in an instrument-track + + + + Carla Rack Instrument + + + + Carla Patchbay Instrument + + projectNotes Project notes - Notas do projeto + 工程注释 Put down your project notes here. - Faça suas anotações aqui. + 在这里写下你的工程注释。 Edit Actions - Ações de edição + 编辑功能 &Undo - Des&fazer + 撤销(&U) Ctrl+Z @@ -5410,7 +7055,7 @@ This chip was used in the Commodore 64 computer. &Redo - &Refazer + é‡åšï¼ˆ&R) Ctrl+Y @@ -5418,7 +7063,7 @@ This chip was used in the Commodore 64 computer. &Copy - &Copiar + å¤åˆ¶ï¼ˆ&C) Ctrl+C @@ -5426,7 +7071,7 @@ This chip was used in the Commodore 64 computer. Cu&t - Recor&tar + 剪切(&T) Ctrl+X @@ -5434,7 +7079,7 @@ This chip was used in the Commodore 64 computer. &Paste - C&olar + 粘贴(&P) Ctrl+V @@ -5442,11 +7087,11 @@ This chip was used in the Commodore 64 computer. Format Actions - Ações de formatação + æ ¼å¼åŠŸèƒ½ &Bold - &Negrito + 加粗(&B) Ctrl+B @@ -5454,7 +7099,7 @@ This chip was used in the Commodore 64 computer. &Italic - &Itálico + 斜体(&I) Ctrl+I @@ -5462,7 +7107,7 @@ This chip was used in the Commodore 64 computer. &Underline - S&ublinhado + 下划线(&U) Ctrl+U @@ -5470,7 +7115,7 @@ This chip was used in the Commodore 64 computer. &Left - &Esquerda + 左对é½ï¼ˆ&L) Ctrl+L @@ -5478,7 +7123,7 @@ This chip was used in the Commodore 64 computer. C&enter - C&entro + 居中(&E) Ctrl+E @@ -5486,7 +7131,7 @@ This chip was used in the Commodore 64 computer. &Right - Di&reita + å³å¯¹é½ï¼ˆ&R) Ctrl+R @@ -5494,7 +7139,7 @@ This chip was used in the Commodore 64 computer. &Justify - &Justificar + 匀é½ï¼ˆ&J) Ctrl+J @@ -5502,97 +7147,53 @@ This chip was used in the Commodore 64 computer. &Color... - &Cor... + 颜色(&C)... renameDialog Rename... - Renomear... + é‡å‘½å... setupDialog Setup LMMS - Configurar LMMS + 设置LMMS General settings - Configurações gerais + 常规设置 BUFFER SIZE - TAMANHO DO BUFFER + ç¼“å†²åŒºå¤§å° Reset to default-value - Restaurar o valor padrão + é‡ç½®ä¸ºé»˜è®¤å€¼ MISC - MISC - - - Audio settings - Configurações de Ãudio - - - AUDIO INTERFACE - INTERFACE DE ÃUDIO - - - MIDI settings - Configurações do 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! - Por favor note que a maioria das mudanças não terão efeito antes de reiniciar o LMMS! - - - 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. - Aqui você pode ajustar o tamanho do buffer interno usado pelo LMMS. Valores menores resultam em menor latência mas talvez causem soms inscutáveis ou má performance, especialmente em computadores atigos ou sistema com kernel não compilados para trabalhar em tempo real. - - - 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. - Aqui você pode selecionar sua interface de áudio preferida. Dependendo das configurações do sistema durante a compilação, você poderá escolher entre ALSA, JACK, OSS e outros. Abaixo você verá uma caixa que oferece controles para ajustar a interface de áudio selecionada. - - - 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. - Aqui você pode selecionar sua interface de MIDI preferida. Dependendo das configurações do sistema durante a compilação, você poderá escolher entre ALSA, OSS e outros. Abaixo você verá uma caixa que oferece controles para ajustar a interface de MIDI selecionada. + æ‚项 Enable tooltips - + å¯ç”¨å·¥å…·æç¤º Show restart warning after changing settings - + 在改å˜è®¾ç½®åŽæ˜¾ç¤ºé‡å¯è­¦å‘Š Display volume as dBV - + éŸ³é‡æ˜¾ç¤ºä¸ºdBV Compress project files per default - + 默认压缩项目文件 HQ-mode for output audio-device @@ -5600,84 +7201,129 @@ This chip was used in the Commodore 64 computer. LMMS working directory - + LMMS工作目录 VST-plugin directory - + VSTæ’件目录 Artwork directory - + æ’图目录 FL Studio installation directory - + FL Studio安装目录 STK rawwave directory - + STK rawwave 目录 Performance settings - + 性能设置 UI effects vs. performance - + 界é¢ç‰¹æ•ˆ vs 性能 + + + 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 FL Studio installation directory - + 选择 FL Studio 安装目录 Choose LADSPA plugin directory - + 选择 LADSPA æ’件目录 Choose STK rawwave directory + 选择 STK rawwave 目录 + + + 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. Paths - + 路径 LADSPA plugin paths - + LADSPA æ’件路径 Default Soundfont File - + 默认 SoundFont 文件 Background artwork - + 背景图片 Choose default SoundFont - + 选择默认的 SoundFont Choose background artwork - + 选择背景图片 One instrument track window mode @@ -5685,38 +7331,38 @@ Latency: %2 ms Compact track buttons - + 紧凑化轨é“图标 Sync VST plugins to host playback - + åŒæ­¥ VST æ’件和主机回放 Enable note labels in piano roll - + 在钢ç´çª—ä¸­æ˜¾ç¤ºéŸ³å· Enable waveform display by default - + 默认å¯ç”¨æ³¢å½¢å›¾ Smooth scroll in Song Editor - + 歌曲编辑器中å¯ç”¨å¹³æ»‘滚动 Enable auto save feature - + å¯ç”¨è‡ªåЍä¿å­˜åŠŸèƒ½ Show playback cursor in AudioFileProcessor - + 在 AudioFileProcessor 中显示回放光标 sf2Instrument Bank - + 库 Patch @@ -5724,31 +7370,31 @@ Latency: %2 ms Gain - + 增益 Reverb - + æ··å“ Reverb Roomsize - + æ··å“ç©ºé—´å¤§å° Reverb Damping - + æ··å“阻尼 Reverb Width - + æ··å“宽度 Reverb Level - + æ··å“级别 Chorus - + åˆå”± Chorus Lines @@ -5756,66 +7402,66 @@ Latency: %2 ms Chorus Level - + åˆå”±ç”µå¹³ Chorus Speed - + åˆå”±é€Ÿåº¦ Chorus Depth - + åˆå”±æ·±åº¦ 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: @@ -5827,49 +7473,49 @@ Latency: %2 ms 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 @@ -5880,31 +7526,31 @@ Latency: %2 ms sidInstrumentView Volume: - + 音é‡ï¼š Resonance: - + 共鸣: Cutoff frequency: - + 频谱刀频率: High-Pass filter - + 高通滤波器 Band-Pass filter - + 带通滤波器 Low-Pass filter - + 低通滤波器 Voice3 Off - + 声音 3 å…³ MOS6581 SID @@ -5916,7 +7562,7 @@ Latency: %2 ms Attack: - Ataque: + 打进声: Attack rate determines how rapidly the output of Voice %1 rises from zero to peak amplitude. @@ -5924,7 +7570,7 @@ Latency: %2 ms Decay: - Deterioração: + è¡°å‡ï¼š Decay rate determines how rapidly the output falls from the peak amplitude to the selected Sustain level. @@ -5932,7 +7578,7 @@ Latency: %2 ms Sustain: - Sustentação: + 振幅æŒå¹³ï¼š Output of Voice %1 will remain at the selected Sustain amplitude as long as the note is held. @@ -5940,7 +7586,7 @@ Latency: %2 ms Release: - Libera: + 声音消失: The output of of Voice %1 will fall from Sustain amplitude to zero amplitude at the selected Release rate. @@ -5976,11 +7622,11 @@ Latency: %2 ms Noise - + 噪音 Sync - + åŒæ­¥ Sync synchronizes the fundamental frequency of Oscillator %1 with the fundamental frequency of Oscillator %2 producing "Hard Sync" effects. @@ -6015,217 +7661,71 @@ Latency: %2 ms song Tempo - + èŠ‚å¥ Master volume - + ä¸»éŸ³é‡ Master pitch - + 主音高 Project saved - + 工程已ä¿å­˜ The project %1 is now saved. - + 工程 %1 å·²ä¿å­˜ã€‚ Project NOT saved. - Projeto NÃO salvo. + 工程 **没有** ä¿å­˜ã€‚ The project %1 was not saved! - + 工程%1没有ä¿å­˜ï¼ Import file - Importar arquivo + 导入文件 untitled - sem nome + 有标题 Select file for project-export... - Selecione o arquivo para exportar o projeto... + 为工程导出选择文件... Empty project - + 空工程 This project is empty so exporting makes no sense. Please put some items into Song Editor first! - + 这个工程是空的所以就算导出也没有æ„义,请在歌曲编辑器中加入一点声音å§ï¼ MIDI sequences - + MIDI 音åºå™¨ FL Studio projects - + FL Studio 工程 All file types - + 所有类型 Hydrogen projects - + Hydrogen工程 Select directory for writing exported tracks... - - - - - SongEditor - - Song-Editor - Editor de música - - - Play song (Space) - Tocar música (Espaço) - - - Stop song (Space) - Parar música (Espaço) - - - Add beat/bassline - Adicionar batida/baixo - - - Add sample-track - Adicionar trlha de amostra - - - 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. - Clique aqui se você quer tocar toda a música. A música iniciará no posição do marcador (verde). Você pode move-lo enquanto estiver tocando. - - - Click here, if you want to stop playing of your song. The song-position-marker will be set to the start of your song. - Clique aqui se você quer parar de tocar a música. O marcador de posição (verde), será ajustado para o início da música. - - - Could not open file - Não é possível abrir o arquivo - - - Could not write file - Não é possivel gravar o arquivo - - - Add automation-track - - - - Draw mode - - - - Edit mode (select and move) - - - - Record samples from Audio-device - - - - Record samples from Audio-device while playing song or BB track - - - - 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/BPM - - - tempo of song - tempo 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). - - - - High quality mode - Modo de alta qualidade - - - Master volume - - - - master volume - - - - Master pitch - - - - master pitch - lance (pitch) mestre - - - 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. - - - - - spectrumAnalyzerControlDialog - - Linear spectrum - - - - Linear Y axis - - - - - spectrumAnalyzerControls - - Linear spectrum - - - - Linear Y-axis - - - - Channel mode - + 选择写入导出音轨的目录... @@ -6250,190 +7750,204 @@ Latency: %2 ms 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 - + 从å³åˆ°å³ timeLine Enable/disable auto-scrolling - Ativa/desativa auto-rolagem + å¯ç”¨/ç¦ç”¨è‡ªåŠ¨æ»šåŠ¨ Enable/disable loop-points - Ativa/desativa pontos de loop + å¯ç”¨/ç¦ç”¨å¾ªçŽ¯ç‚¹ After stopping go back to begin - Quando parar volta para o começo + åœæ­¢åŽå‰å¾€å¼€å¤´ After stopping go back to position at which playing was started - Quando parar volta para a posição que estava quando começou a tocar + åœæ­¢åŽå‰å¾€æ’­æ”¾å¼€å§‹çš„地方 After stopping keep position - Quando parar mantém a posição + åœæ­¢åŽä¿æŒä½ç½®ä¸å˜ Hint - + æç¤º Press <Ctrl> to disable magnetic loop points. - + ç£æ€§å¸é™„是指在一个完整音符的边缘å¸é™„。 + æŒ‰ä½ <Ctrl> ç¦ç”¨ç£æ€§å¸é™„。 Hold <Shift> to move the begin loop point; Press <Ctrl> to disable magnetic loop points. - + æŒ‰ä½ <Shift> ç§»åŠ¨èµ·å§‹å¾ªçŽ¯ç‚¹ï¼›æŒ‰ä½ <Ctrl> ç¦ç”¨ç£æ€§å¸é™„。 track Muted - + é™éŸ³ Solo - + ç‹¬å¥ trackContentObject Muted - + é™éŸ³ trackContentObjectView Current position - + 当å‰ä½ç½® Hint - + æç¤º Press <Ctrl> and drag to make a copy. - + æŒ‰ä½ <Ctrl> 并拖动以创建副本。 Current length - + 当å‰é•¿åº¦ Press <Ctrl> for free resizing. - + æŒ‰ä½ <Ctrl> 自由调整大å°ã€‚ %1:%2 (%3:%4 to %5:%6) - + %1:%2 (%3:%4 到 %5:%6) Delete (middle mousebutton) - + 删除 (鼠标中键) Cut - Recortar + 剪切 Copy - Copiar + å¤åˆ¶ Paste - Colar + 粘贴 Mute/unmute (<Ctrl> + middle click) - + é™éŸ³/å–æ¶ˆé™éŸ³ (<Ctrl> + 鼠标中键) trackOperationsWidget Press <Ctrl> while clicking on move-grip to begin a new drag'n'drop-action. - + 未按照原文翻译,因为实际æ“作就是按ä½ctrlå¤åˆ¶å¹¶ç§»åŠ¨æ­¤é€šé“ + æŒ‰ä½ <Ctrl> çš„åŒæ—¶æ‹–动移动柄å¤åˆ¶å¹¶ç§»åŠ¨æ­¤è½¨é“。 Actions for this track - + 对此轨é“å¯è¿›è¡Œçš„æ“ä½œ Mute - + é™éŸ³ Mute this track - + é™éŸ³æ­¤è½¨é“ Solo - + ç‹¬å¥ Clone this track - Clonar esta trilha + å…‹éš†æ­¤è½¨é“ Remove this track - Remover esta trilha + ç§»é™¤æ­¤è½¨é“ + + + Clear this track + æ¸…é™¤æ­¤è½¨é“ + + + Turn all recording on + 打开所有录制 + + + Turn all recording off + 关闭所有录制 vestigeInstrument + + Loading plugin + 载入æ’ä»¶ + + + Please wait while loading VST-plugin... + 请等待VSTæ’件加载完æˆ... + Failed loading VST-plugin - Falha ao carregar plugin VST + 加载VSTæ’件失败 The VST-plugin %1 could not be loaded for some reason. If it runs with other VST-software under Linux, please contact an LMMS-developer! - O plugin VST não pode ser carregado por alguma razão. -Se ele rodar com outro programa VST no Linux, por favor entre em contato com um desenvolvedor do LMMS! - - - Loading plugin - - - - Please wait while loading VST-plugin... - + VSTæ’ä»¶%1由于æŸäº›åŽŸå› ä¸èƒ½åŠ è½½ +如果它在Linux下的其他VST宿主中è¿è¡Œæ­£å¸¸ï¼Œè¯·è”ç³»LMMSå¼€å‘è€…ï¼ @@ -6456,11 +7970,11 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um Pan %1 - + 声相 %1 Detune %1 - + åŽ»è° %1 Fuzziness %1 @@ -6468,7 +7982,7 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um Length %1 - + 长度 %1 Impulse %1 @@ -6476,14 +7990,14 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um Octave %1 - + 八度音 %1 vibedView Volume: - + 音é‡ï¼š The 'V' knob sets the volume of the selected string. @@ -6499,7 +8013,7 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um Pick position: - Escolher posição: + 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. @@ -6507,7 +8021,7 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um Pickup position: - Coletar posição: + 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. @@ -6523,7 +8037,7 @@ Se ele rodar com outro programa VST no Linux, por favor entre em contato com um 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. @@ -6595,7 +8109,7 @@ The LED in the lower right corner of the waveform editor determines whether the Click here to enable/disable waveform. - + 点击这里å¯ç”¨/ç¦ç”¨æ³¢å½¢ã€‚ String @@ -6615,39 +8129,39 @@ The LED in the lower right corner of the waveform editor determines whether the Saw wave - + 锯齿波 Square wave - + 方波 White noise wave - + 白噪音 User defined wave - + 用户自定义波形 Smooth - + 平滑 Click here to smooth waveform. - + 点击这里平滑波形。 Normalize - + 标准化 Click here to normalize waveform. - + 点击这里标准化波形。 &Help - Aj&uda + 帮助(&H) Use a sine-wave for current oscillator. @@ -6678,11 +8192,11 @@ The LED in the lower right corner of the waveform editor determines whether the visualizationWidget click to enable/disable visualization of master-output - Clique para habilitar/desabilitar a visualização da saída mestre + 点击å¯ç”¨/ç¦ç”¨è§†è§‰åŒ–主输出 Click to enable - + 点击å¯ç”¨ @@ -6732,4 +8246,74 @@ The LED in the lower right corner of the waveform editor determines whether the + + 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 + + Input gain + 输入增益 + + + Output gain + 输出增益 + + diff --git a/data/nsis_branding.bmp b/data/nsis_branding.bmp index 901497e2c..a7e75e3c1 100644 Binary files a/data/nsis_branding.bmp and b/data/nsis_branding.bmp differ diff --git a/data/presets/AudioFileProcessor/Bass-Mania.xpf b/data/presets/AudioFileProcessor/Bass-Mania.xpf index bb5304b32..4a92c0028 100644 --- a/data/presets/AudioFileProcessor/Bass-Mania.xpf +++ b/data/presets/AudioFileProcessor/Bass-Mania.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/AudioFileProcessor/Erazor.xpf b/data/presets/AudioFileProcessor/Erazor.xpf index 8afc90920..f106c27f8 100644 --- a/data/presets/AudioFileProcessor/Erazor.xpf +++ b/data/presets/AudioFileProcessor/Erazor.xpf @@ -1,30 +1,52 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf b/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf index 40396720d..f9f11ef8b 100644 --- a/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf +++ b/data/presets/AudioFileProcessor/Fat-Reversed-Kick.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - + + + + + + - - + + + diff --git a/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf b/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf index 08d756aa5..6a9da93ce 100644 --- a/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf +++ b/data/presets/AudioFileProcessor/Kick-4-your-Subwoofer.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - + + + + + + - - + + + diff --git a/data/presets/AudioFileProcessor/SString.xpf b/data/presets/AudioFileProcessor/SString.xpf index c20693764..1def1d719 100644 --- a/data/presets/AudioFileProcessor/SString.xpf +++ b/data/presets/AudioFileProcessor/SString.xpf @@ -1,47 +1,82 @@ - - - + + + - - - - + + + + - - - - + + + + - - - - - - + + + + + + + + + + + - - + + - - + + - - + + + + + + + + + + + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + - - + + - + diff --git a/data/presets/AudioFileProcessor/orion.xpf b/data/presets/AudioFileProcessor/orion.xpf index 05c6e4071..101286b29 100644 --- a/data/presets/AudioFileProcessor/orion.xpf +++ b/data/presets/AudioFileProcessor/orion.xpf @@ -1,40 +1,54 @@ - - - + + + - - - - + + + + - - - - + + + + - - - - - - + + + + + + + + + + + + + + + - - + + - - + + + + + + + - - + + - - + + - + diff --git a/data/presets/BitInvader/alien_strings.xpf b/data/presets/BitInvader/alien_strings.xpf index 62c5163f8..d29fdca10 100644 --- a/data/presets/BitInvader/alien_strings.xpf +++ b/data/presets/BitInvader/alien_strings.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/beehive.xpf b/data/presets/BitInvader/beehive.xpf index a4c5840e4..b03ba92f5 100644 --- a/data/presets/BitInvader/beehive.xpf +++ b/data/presets/BitInvader/beehive.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/bell.xpf b/data/presets/BitInvader/bell.xpf index ce2abec88..a5346e212 100644 --- a/data/presets/BitInvader/bell.xpf +++ b/data/presets/BitInvader/bell.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/cello.xpf b/data/presets/BitInvader/cello.xpf index 44990bb68..50ef327d9 100644 --- a/data/presets/BitInvader/cello.xpf +++ b/data/presets/BitInvader/cello.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/drama.xpf b/data/presets/BitInvader/drama.xpf index 7ed801dff..fc564fa58 100644 --- a/data/presets/BitInvader/drama.xpf +++ b/data/presets/BitInvader/drama.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/epiano.xpf b/data/presets/BitInvader/epiano.xpf index c6e6e22e0..e2ed18dee 100644 --- a/data/presets/BitInvader/epiano.xpf +++ b/data/presets/BitInvader/epiano.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/invaders_must_die.xpf b/data/presets/BitInvader/invaders_must_die.xpf new file mode 100644 index 000000000..78c50c360 --- /dev/null +++ b/data/presets/BitInvader/invaders_must_die.xpf @@ -0,0 +1,38 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/BitInvader/pluck.xpf b/data/presets/BitInvader/pluck.xpf index 37409049c..b71974e4e 100644 --- a/data/presets/BitInvader/pluck.xpf +++ b/data/presets/BitInvader/pluck.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/soft_pad.xpf b/data/presets/BitInvader/soft_pad.xpf index c82e0510f..63803acb8 100644 --- a/data/presets/BitInvader/soft_pad.xpf +++ b/data/presets/BitInvader/soft_pad.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/spacefx.xpf b/data/presets/BitInvader/spacefx.xpf index 8e7b93fcb..b10f47377 100644 --- a/data/presets/BitInvader/spacefx.xpf +++ b/data/presets/BitInvader/spacefx.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/subbass.xpf b/data/presets/BitInvader/subbass.xpf index d4d93734f..50ebb46c6 100644 --- a/data/presets/BitInvader/subbass.xpf +++ b/data/presets/BitInvader/subbass.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/sweep_pad.xpf b/data/presets/BitInvader/sweep_pad.xpf index e4f4ee48c..c2e6a5c52 100644 --- a/data/presets/BitInvader/sweep_pad.xpf +++ b/data/presets/BitInvader/sweep_pad.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/toy_piano.xpf b/data/presets/BitInvader/toy_piano.xpf index 3976affe3..0fed791d1 100644 --- a/data/presets/BitInvader/toy_piano.xpf +++ b/data/presets/BitInvader/toy_piano.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/BitInvader/wah_synth.xpf b/data/presets/BitInvader/wah_synth.xpf index ee8877b7c..e8e68c538 100644 --- a/data/presets/BitInvader/wah_synth.xpf +++ b/data/presets/BitInvader/wah_synth.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/Kicker/Clap.xpf b/data/presets/Kicker/Clap.xpf new file mode 100644 index 000000000..d354051ce --- /dev/null +++ b/data/presets/Kicker/Clap.xpf @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Kicker/HihatClosed.xpf b/data/presets/Kicker/HihatClosed.xpf new file mode 100644 index 000000000..66dd8e7ac --- /dev/null +++ b/data/presets/Kicker/HihatClosed.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Kicker/HihatOpen.xpf b/data/presets/Kicker/HihatOpen.xpf new file mode 100644 index 000000000..c0f0aa692 --- /dev/null +++ b/data/presets/Kicker/HihatOpen.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Kicker/Shaker.xpf b/data/presets/Kicker/Shaker.xpf new file mode 100644 index 000000000..13eee953e --- /dev/null +++ b/data/presets/Kicker/Shaker.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Kicker/SnareLong.xpf b/data/presets/Kicker/SnareLong.xpf new file mode 100644 index 000000000..b8b2f9d88 --- /dev/null +++ b/data/presets/Kicker/SnareLong.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Kicker/TrapKick.xpf b/data/presets/Kicker/TrapKick.xpf new file mode 100644 index 000000000..a8ad8976d --- /dev/null +++ b/data/presets/Kicker/TrapKick.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/LB302/AcidLead.xpf b/data/presets/LB302/AcidLead.xpf new file mode 100644 index 000000000..e264f9573 --- /dev/null +++ b/data/presets/LB302/AcidLead.xpf @@ -0,0 +1,40 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/LB302/AngryLead.xpf b/data/presets/LB302/AngryLead.xpf new file mode 100644 index 000000000..9d9955895 --- /dev/null +++ b/data/presets/LB302/AngryLead.xpf @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/LB302/DroneArp.xpf b/data/presets/LB302/DroneArp.xpf new file mode 100644 index 000000000..93b65595b --- /dev/null +++ b/data/presets/LB302/DroneArp.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/LB302/GoodOldTimes.xpf b/data/presets/LB302/GoodOldTimes.xpf index 70ef45beb..45fb67102 100644 --- a/data/presets/LB302/GoodOldTimes.xpf +++ b/data/presets/LB302/GoodOldTimes.xpf @@ -1,21 +1,21 @@ - + - + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/data/presets/LB302/Oh Synth.xpf b/data/presets/LB302/Oh Synth.xpf index 5b548c16c..5241fe5fd 100644 --- a/data/presets/LB302/Oh Synth.xpf +++ b/data/presets/LB302/Oh Synth.xpf @@ -1,20 +1,19 @@ - + - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + diff --git a/data/presets/LB302/STrash.xpf b/data/presets/LB302/STrash.xpf index f001b9b55..bd928e63c 100644 --- a/data/presets/LB302/STrash.xpf +++ b/data/presets/LB302/STrash.xpf @@ -1,49 +1,49 @@ - + - + - - - - + + + + - - - - + + + + - - - - - - + + + + + + - - + + - - + + - - + + - - + + - - + + - - + + - - + + diff --git a/data/presets/Monstro/Growl.xpf b/data/presets/Monstro/Growl.xpf new file mode 100644 index 000000000..97a098637 --- /dev/null +++ b/data/presets/Monstro/Growl.xpf @@ -0,0 +1,84 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Monstro/HorrorLead.xpf b/data/presets/Monstro/HorrorLead.xpf new file mode 100644 index 000000000..867693d91 --- /dev/null +++ b/data/presets/Monstro/HorrorLead.xpf @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Monstro/Phat.xpf b/data/presets/Monstro/Phat.xpf new file mode 100644 index 000000000..5615f0229 --- /dev/null +++ b/data/presets/Monstro/Phat.xpf @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Monstro/ScaryBell.xpf b/data/presets/Monstro/ScaryBell.xpf new file mode 100644 index 000000000..00466696f --- /dev/null +++ b/data/presets/Monstro/ScaryBell.xpf @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Nescaline/Chomp.xpf b/data/presets/Nescaline/Chomp.xpf new file mode 100644 index 000000000..9dea1898e --- /dev/null +++ b/data/presets/Nescaline/Chomp.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Nescaline/Detune_lead.xpf b/data/presets/Nescaline/Detune_lead.xpf new file mode 100644 index 000000000..cc06165ff --- /dev/null +++ b/data/presets/Nescaline/Detune_lead.xpf @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Nescaline/Engine_overheats.xpf b/data/presets/Nescaline/Engine_overheats.xpf new file mode 100644 index 000000000..49176aef6 --- /dev/null +++ b/data/presets/Nescaline/Engine_overheats.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Nescaline/Fireball_flick.xpf b/data/presets/Nescaline/Fireball_flick.xpf new file mode 100644 index 000000000..b61c17375 --- /dev/null +++ b/data/presets/Nescaline/Fireball_flick.xpf @@ -0,0 +1,29 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Nescaline/Mega_weapon.xpf b/data/presets/Nescaline/Mega_weapon.xpf new file mode 100644 index 000000000..f5f0c26ae --- /dev/null +++ b/data/presets/Nescaline/Mega_weapon.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/OpulenZ/Bagpipe.xpf b/data/presets/OpulenZ/Bagpipe.xpf index 15aae06ac..e572498f4 100644 --- a/data/presets/OpulenZ/Bagpipe.xpf +++ b/data/presets/OpulenZ/Bagpipe.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Bells.xpf b/data/presets/OpulenZ/Bells.xpf index aade9bd6c..e7279a7fe 100644 --- a/data/presets/OpulenZ/Bells.xpf +++ b/data/presets/OpulenZ/Bells.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Brass.xpf b/data/presets/OpulenZ/Brass.xpf index f995fb96e..553bdb5bc 100644 --- a/data/presets/OpulenZ/Brass.xpf +++ b/data/presets/OpulenZ/Brass.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Bubbly_days.xpf b/data/presets/OpulenZ/Bubbly_days.xpf index 97aa93e83..92e008284 100644 --- a/data/presets/OpulenZ/Bubbly_days.xpf +++ b/data/presets/OpulenZ/Bubbly_days.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Cheesy_synth.xpf b/data/presets/OpulenZ/Cheesy_synth.xpf index d30fce903..2c6d47306 100644 --- a/data/presets/OpulenZ/Cheesy_synth.xpf +++ b/data/presets/OpulenZ/Cheesy_synth.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Clarinet.xpf b/data/presets/OpulenZ/Clarinet.xpf index ec3357c53..3301318a2 100644 --- a/data/presets/OpulenZ/Clarinet.xpf +++ b/data/presets/OpulenZ/Clarinet.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Combo_organ.xpf b/data/presets/OpulenZ/Combo_organ.xpf index 92550e15c..21e2d8a62 100644 --- a/data/presets/OpulenZ/Combo_organ.xpf +++ b/data/presets/OpulenZ/Combo_organ.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Epiano.xpf b/data/presets/OpulenZ/Epiano.xpf index cbfa3ea9a..dea947763 100644 --- a/data/presets/OpulenZ/Epiano.xpf +++ b/data/presets/OpulenZ/Epiano.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Funky.xpf b/data/presets/OpulenZ/Funky.xpf index e1c2baa47..166537fbd 100644 --- a/data/presets/OpulenZ/Funky.xpf +++ b/data/presets/OpulenZ/Funky.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Halo_pad.xpf b/data/presets/OpulenZ/Halo_pad.xpf index d3769abe2..a20fa050f 100644 --- a/data/presets/OpulenZ/Halo_pad.xpf +++ b/data/presets/OpulenZ/Halo_pad.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Harp.xpf b/data/presets/OpulenZ/Harp.xpf index e5c686d93..75b54d303 100644 --- a/data/presets/OpulenZ/Harp.xpf +++ b/data/presets/OpulenZ/Harp.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Organ_leslie.xpf b/data/presets/OpulenZ/Organ_leslie.xpf index 9f46ffed0..a1c5c024e 100644 --- a/data/presets/OpulenZ/Organ_leslie.xpf +++ b/data/presets/OpulenZ/Organ_leslie.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Pad.xpf b/data/presets/OpulenZ/Pad.xpf index 636ce3628..f35911cc1 100644 --- a/data/presets/OpulenZ/Pad.xpf +++ b/data/presets/OpulenZ/Pad.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Square.xpf b/data/presets/OpulenZ/Square.xpf index 8c40992e4..ad0aaca52 100644 --- a/data/presets/OpulenZ/Square.xpf +++ b/data/presets/OpulenZ/Square.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/OpulenZ/Vibraphone.xpf b/data/presets/OpulenZ/Vibraphone.xpf index b41cd40e6..c0e3ad55e 100644 --- a/data/presets/OpulenZ/Vibraphone.xpf +++ b/data/presets/OpulenZ/Vibraphone.xpf @@ -1,16 +1,16 @@ - + - + - + - - - + + + diff --git a/data/presets/Organic/Pwnage.xpf b/data/presets/Organic/Pwnage.xpf new file mode 100644 index 000000000..51401f5d6 --- /dev/null +++ b/data/presets/Organic/Pwnage.xpf @@ -0,0 +1,146 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Organic/Rubberband.xpf b/data/presets/Organic/Rubberband.xpf new file mode 100644 index 000000000..1dd0a1941 --- /dev/null +++ b/data/presets/Organic/Rubberband.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Organic/organ_blues.xpf b/data/presets/Organic/organ_blues.xpf index 4f102cc04..a35bbfda8 100644 --- a/data/presets/Organic/organ_blues.xpf +++ b/data/presets/Organic/organ_blues.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/Organic/organ_risingsun.xpf b/data/presets/Organic/organ_risingsun.xpf index 346b59562..b5dc75906 100644 --- a/data/presets/Organic/organ_risingsun.xpf +++ b/data/presets/Organic/organ_risingsun.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/Organic/organ_swish.xpf b/data/presets/Organic/organ_swish.xpf index 3917962bc..569230f5b 100644 --- a/data/presets/Organic/organ_swish.xpf +++ b/data/presets/Organic/organ_swish.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/Organic/pad_ethereal.xpf b/data/presets/Organic/pad_ethereal.xpf index e0aa2854d..a40168882 100644 --- a/data/presets/Organic/pad_ethereal.xpf +++ b/data/presets/Organic/pad_ethereal.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/Organic/pad_rich.xpf b/data/presets/Organic/pad_rich.xpf index 62d8de950..b59501600 100644 --- a/data/presets/Organic/pad_rich.xpf +++ b/data/presets/Organic/pad_rich.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/Organic/pad_sweep.xpf b/data/presets/Organic/pad_sweep.xpf index ed2c7f87e..9b000e499 100644 --- a/data/presets/Organic/pad_sweep.xpf +++ b/data/presets/Organic/pad_sweep.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/Organic/puresine.xpf b/data/presets/Organic/puresine.xpf index 3e0d6c0f6..0c77ca9ca 100644 --- a/data/presets/Organic/puresine.xpf +++ b/data/presets/Organic/puresine.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/Organic/sequencer_64.xpf b/data/presets/Organic/sequencer_64.xpf index 3d3fab9fe..c1f8fc223 100644 --- a/data/presets/Organic/sequencer_64.xpf +++ b/data/presets/Organic/sequencer_64.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - - + + + + + + + - - - - + + + + + diff --git a/data/presets/SID/Bass.xpf b/data/presets/SID/Bass.xpf new file mode 100644 index 000000000..c5f605c8f --- /dev/null +++ b/data/presets/SID/Bass.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/SID/CheesyGuitar.xpf b/data/presets/SID/CheesyGuitar.xpf new file mode 100644 index 000000000..756e14afc --- /dev/null +++ b/data/presets/SID/CheesyGuitar.xpf @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/SID/Lead.xpf b/data/presets/SID/Lead.xpf new file mode 100644 index 000000000..be81b2948 --- /dev/null +++ b/data/presets/SID/Lead.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/SID/MadMind.xpf b/data/presets/SID/MadMind.xpf new file mode 100644 index 000000000..5375d5b00 --- /dev/null +++ b/data/presets/SID/MadMind.xpf @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/SID/Overdrive.xpf b/data/presets/SID/Overdrive.xpf new file mode 100644 index 000000000..ef4b51a90 --- /dev/null +++ b/data/presets/SID/Overdrive.xpf @@ -0,0 +1,57 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/SID/Pad.xpf b/data/presets/SID/Pad.xpf new file mode 100644 index 000000000..2a03b3f43 --- /dev/null +++ b/data/presets/SID/Pad.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/AmazingBubbles.xpf b/data/presets/TripleOscillator/AmazingBubbles.xpf index 3201f3d49..d06bd61ca 100644 --- a/data/presets/TripleOscillator/AmazingBubbles.xpf +++ b/data/presets/TripleOscillator/AmazingBubbles.xpf @@ -1,18 +1,21 @@ - - + + - - - - - - - - - + + + + + + + + + - - - - + + + + + + + diff --git a/data/presets/TripleOscillator/AnalogBell.xpf b/data/presets/TripleOscillator/AnalogBell.xpf new file mode 100644 index 000000000..18f4d2baa --- /dev/null +++ b/data/presets/TripleOscillator/AnalogBell.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/AnalogDreamz.xpf b/data/presets/TripleOscillator/AnalogDreamz.xpf index cdec62d94..0af114cb9 100644 --- a/data/presets/TripleOscillator/AnalogDreamz.xpf +++ b/data/presets/TripleOscillator/AnalogDreamz.xpf @@ -1,18 +1,21 @@ - - + + - - - - - - - - - + + + + + + + + + - - - - + + + + + + + diff --git a/data/presets/TripleOscillator/AnalogTimes.xpf b/data/presets/TripleOscillator/AnalogTimes.xpf index 48d257122..0717947ed 100644 --- a/data/presets/TripleOscillator/AnalogTimes.xpf +++ b/data/presets/TripleOscillator/AnalogTimes.xpf @@ -1,18 +1,21 @@ - - + + - - - - - - - - - + + + + + + + + + - - - - + + + + + + + diff --git a/data/presets/TripleOscillator/AnalogTimes2.xpf b/data/presets/TripleOscillator/AnalogTimes2.xpf deleted file mode 100644 index 0be1051f9..000000000 --- a/data/presets/TripleOscillator/AnalogTimes2.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Analogous.xpf b/data/presets/TripleOscillator/Analogous.xpf index 7091d8288..ec5c61a60 100644 --- a/data/presets/TripleOscillator/Analogous.xpf +++ b/data/presets/TripleOscillator/Analogous.xpf @@ -1,18 +1,21 @@ - - + + - - - - - - - - - + + + + + + + + + - - - - + + + + + + + diff --git a/data/presets/TripleOscillator/ArpKing.xpf b/data/presets/TripleOscillator/ArpKing.xpf deleted file mode 100644 index c8bf6d19a..000000000 --- a/data/presets/TripleOscillator/ArpKing.xpf +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Arpeggio.xpf b/data/presets/TripleOscillator/Arpeggio.xpf new file mode 100644 index 000000000..32300966f --- /dev/null +++ b/data/presets/TripleOscillator/Arpeggio.xpf @@ -0,0 +1,17 @@ + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/ArpeggioPing.xpf b/data/presets/TripleOscillator/ArpeggioPing.xpf new file mode 100644 index 000000000..5da4c30d8 --- /dev/null +++ b/data/presets/TripleOscillator/ArpeggioPing.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Arpeggio_1.xpf b/data/presets/TripleOscillator/Arpeggio_1.xpf deleted file mode 100644 index 51fc3e83d..000000000 --- a/data/presets/TripleOscillator/Arpeggio_1.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Arpeggio_2.xpf b/data/presets/TripleOscillator/Arpeggio_2.xpf deleted file mode 100644 index 5e12cee81..000000000 --- a/data/presets/TripleOscillator/Arpeggio_2.xpf +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Bell.xpf b/data/presets/TripleOscillator/Bell.xpf index 41e6a992b..1d7044980 100644 --- a/data/presets/TripleOscillator/Bell.xpf +++ b/data/presets/TripleOscillator/Bell.xpf @@ -1,18 +1,34 @@ - - + + - - - - - - - - - + + + + + + + + + - - - - + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/BellArp.xpf b/data/presets/TripleOscillator/BellArp.xpf new file mode 100644 index 000000000..63f4edb06 --- /dev/null +++ b/data/presets/TripleOscillator/BellArp.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Bell_2.xpf b/data/presets/TripleOscillator/Bell_2.xpf deleted file mode 100644 index 300249f96..000000000 --- a/data/presets/TripleOscillator/Bell_2.xpf +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/BlandModBass.xpf b/data/presets/TripleOscillator/BlandModBass.xpf new file mode 100644 index 000000000..3160bd097 --- /dev/null +++ b/data/presets/TripleOscillator/BlandModBass.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/BrokenToy.xpf b/data/presets/TripleOscillator/BrokenToy.xpf new file mode 100644 index 000000000..ed0ac370e --- /dev/null +++ b/data/presets/TripleOscillator/BrokenToy.xpf @@ -0,0 +1,50 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/ChurchOrgan.xpf b/data/presets/TripleOscillator/ChurchOrgan.xpf index 1c3c9ee3b..ac7a54f13 100644 --- a/data/presets/TripleOscillator/ChurchOrgan.xpf +++ b/data/presets/TripleOscillator/ChurchOrgan.xpf @@ -1,21 +1,21 @@ - + - + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/data/presets/TripleOscillator/CryingPads.xpf b/data/presets/TripleOscillator/CryingPads.xpf new file mode 100644 index 000000000..441dce3c7 --- /dev/null +++ b/data/presets/TripleOscillator/CryingPads.xpf @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/DeathBass.xpf b/data/presets/TripleOscillator/DeathBass.xpf deleted file mode 100644 index 2364e614f..000000000 --- a/data/presets/TripleOscillator/DeathBass.xpf +++ /dev/null @@ -1,28 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/DetunedGhost.xpf b/data/presets/TripleOscillator/DetunedGhost.xpf new file mode 100644 index 000000000..4f180b6e3 --- /dev/null +++ b/data/presets/TripleOscillator/DetunedGhost.xpf @@ -0,0 +1,37 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/DirtyReece.xpf b/data/presets/TripleOscillator/DirtyReece.xpf new file mode 100644 index 000000000..d574c7299 --- /dev/null +++ b/data/presets/TripleOscillator/DirtyReece.xpf @@ -0,0 +1,83 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Distorted-FM-Bass.xpf b/data/presets/TripleOscillator/Distorted-FM-Bass.xpf deleted file mode 100644 index 0ce86c465..000000000 --- a/data/presets/TripleOscillator/Distorted-FM-Bass.xpf +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/DistortedPMBass.xpf b/data/presets/TripleOscillator/DistortedPMBass.xpf new file mode 100644 index 000000000..970235507 --- /dev/null +++ b/data/presets/TripleOscillator/DistortedPMBass.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Drums_HardKick.xpf b/data/presets/TripleOscillator/Drums_HardKick.xpf new file mode 100644 index 000000000..64bd31949 --- /dev/null +++ b/data/presets/TripleOscillator/Drums_HardKick.xpf @@ -0,0 +1,108 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Drums_HihatC.xpf b/data/presets/TripleOscillator/Drums_HihatC.xpf new file mode 100644 index 000000000..3b4dd5735 --- /dev/null +++ b/data/presets/TripleOscillator/Drums_HihatC.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Drums_HihatO.xpf b/data/presets/TripleOscillator/Drums_HihatO.xpf new file mode 100644 index 000000000..19258c57a --- /dev/null +++ b/data/presets/TripleOscillator/Drums_HihatO.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Drums_Kick.xpf b/data/presets/TripleOscillator/Drums_Kick.xpf new file mode 100644 index 000000000..d18e0ed17 --- /dev/null +++ b/data/presets/TripleOscillator/Drums_Kick.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Drums_Snare.xpf b/data/presets/TripleOscillator/Drums_Snare.xpf new file mode 100644 index 000000000..50731bf56 --- /dev/null +++ b/data/presets/TripleOscillator/Drums_Snare.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Dull-Bell-Arp.xpf b/data/presets/TripleOscillator/Dull-Bell-Arp.xpf deleted file mode 100644 index 790484a85..000000000 --- a/data/presets/TripleOscillator/Dull-Bell-Arp.xpf +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/DullBell.xpf b/data/presets/TripleOscillator/DullBell.xpf new file mode 100644 index 000000000..549689e4e --- /dev/null +++ b/data/presets/TripleOscillator/DullBell.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/E-Organ.xpf b/data/presets/TripleOscillator/E-Organ.xpf index f42320e3d..b04ba010d 100644 --- a/data/presets/TripleOscillator/E-Organ.xpf +++ b/data/presets/TripleOscillator/E-Organ.xpf @@ -1,21 +1,21 @@ - + - + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/data/presets/TripleOscillator/E-Organ2.xpf b/data/presets/TripleOscillator/E-Organ2.xpf index 469646b04..4ef8e1ac5 100644 --- a/data/presets/TripleOscillator/E-Organ2.xpf +++ b/data/presets/TripleOscillator/E-Organ2.xpf @@ -1,23 +1,27 @@ - + - + - - - - + + + + - - - - + + + + - - - - - - + + + + + + + + + + diff --git a/data/presets/TripleOscillator/ElectricOboe.xpf b/data/presets/TripleOscillator/ElectricOboe.xpf new file mode 100644 index 000000000..a68b66bbb --- /dev/null +++ b/data/presets/TripleOscillator/ElectricOboe.xpf @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Erazzor.xpf b/data/presets/TripleOscillator/Erazzor.xpf index 4d3c5cedd..5619b1e7a 100644 --- a/data/presets/TripleOscillator/Erazzor.xpf +++ b/data/presets/TripleOscillator/Erazzor.xpf @@ -1,68 +1,120 @@ - - - + + + - - - - + + + + - - - - + + + + - - - - - - + + + + + + + + + - - + + - - + + + + + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + - - + + - - + + + + + + + + + + + - - + + - - + + + + + + + - - + + - - + + + + + + + + + + + + + - - + + - - + + - + diff --git a/data/presets/TripleOscillator/Fat-FMish-Bells.xpf b/data/presets/TripleOscillator/Fat-FMish-Bells.xpf deleted file mode 100644 index 0c9b4b45a..000000000 --- a/data/presets/TripleOscillator/Fat-FMish-Bells.xpf +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Fat-TB303-Arp.xpf b/data/presets/TripleOscillator/Fat-TB303-Arp.xpf deleted file mode 100644 index 570fab565..000000000 --- a/data/presets/TripleOscillator/Fat-TB303-Arp.xpf +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Fat.xpf b/data/presets/TripleOscillator/Fat.xpf deleted file mode 100644 index c15f67f53..000000000 --- a/data/presets/TripleOscillator/Fat.xpf +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/FatCheese.xpf b/data/presets/TripleOscillator/FatCheese.xpf index 523463971..748b4dfe3 100644 --- a/data/presets/TripleOscillator/FatCheese.xpf +++ b/data/presets/TripleOscillator/FatCheese.xpf @@ -1,16 +1,21 @@ - - + + - - - - - - - + + + + + + + + + - - - - + + + + + + + diff --git a/data/presets/TripleOscillator/FatPMArp.xpf b/data/presets/TripleOscillator/FatPMArp.xpf new file mode 100644 index 000000000..ad11a8952 --- /dev/null +++ b/data/presets/TripleOscillator/FatPMArp.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/FatTB303Arp.xpf b/data/presets/TripleOscillator/FatTB303Arp.xpf new file mode 100644 index 000000000..33bb2d8f6 --- /dev/null +++ b/data/presets/TripleOscillator/FatTB303Arp.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/FutureBass.xpf b/data/presets/TripleOscillator/FutureBass.xpf index 9c4b432fc..84f4541e0 100644 --- a/data/presets/TripleOscillator/FutureBass.xpf +++ b/data/presets/TripleOscillator/FutureBass.xpf @@ -1,17 +1,21 @@ - - + + - - - - - - - + + + + + + + + + - - - - - + + + + + + + diff --git a/data/presets/TripleOscillator/FuzzyAnalogBass.xpf b/data/presets/TripleOscillator/FuzzyAnalogBass.xpf new file mode 100644 index 000000000..78b176dfd --- /dev/null +++ b/data/presets/TripleOscillator/FuzzyAnalogBass.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Garfunkel.xpf b/data/presets/TripleOscillator/Garfunkel.xpf new file mode 100644 index 000000000..d2f66d1fe --- /dev/null +++ b/data/presets/TripleOscillator/Garfunkel.xpf @@ -0,0 +1,71 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/GhostBoy.xpf b/data/presets/TripleOscillator/GhostBoy.xpf new file mode 100644 index 000000000..32f33964c --- /dev/null +++ b/data/presets/TripleOscillator/GhostBoy.xpf @@ -0,0 +1,80 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Gong.xpf b/data/presets/TripleOscillator/Gong.xpf deleted file mode 100644 index df28ca6f0..000000000 --- a/data/presets/TripleOscillator/Gong.xpf +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Harmonium.xpf b/data/presets/TripleOscillator/Harmonium.xpf index 8ef8ae155..a90325093 100644 --- a/data/presets/TripleOscillator/Harmonium.xpf +++ b/data/presets/TripleOscillator/Harmonium.xpf @@ -1,21 +1,21 @@ - - + + - - - - + + + + - - - - + + + + - - - - + + + + - + diff --git a/data/presets/TripleOscillator/Harp-of-a-Fairy.xpf b/data/presets/TripleOscillator/Harp-of-a-Fairy.xpf index a124ebc5f..c248b9c48 100644 --- a/data/presets/TripleOscillator/Harp-of-a-Fairy.xpf +++ b/data/presets/TripleOscillator/Harp-of-a-Fairy.xpf @@ -1,18 +1,19 @@ - + - + - - - - - - - - - + + + + + + + + + - - - + + + + diff --git a/data/presets/TripleOscillator/Harpsichord.xpf b/data/presets/TripleOscillator/Harpsichord.xpf deleted file mode 100644 index 55bc14b77..000000000 --- a/data/presets/TripleOscillator/Harpsichord.xpf +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/HiPad.xpf b/data/presets/TripleOscillator/HiPad.xpf index 5d618d50c..d61892e45 100644 --- a/data/presets/TripleOscillator/HiPad.xpf +++ b/data/presets/TripleOscillator/HiPad.xpf @@ -1,18 +1,19 @@ - + - + - - - - - - - - - + + + + + + + + + - - - + + + + diff --git a/data/presets/TripleOscillator/HugeGrittyBass.xpf b/data/presets/TripleOscillator/HugeGrittyBass.xpf new file mode 100644 index 000000000..ab752fbff --- /dev/null +++ b/data/presets/TripleOscillator/HugeGrittyBass.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Jupiter.xpf b/data/presets/TripleOscillator/Jupiter.xpf index 360bbdc6e..86b59aac5 100644 --- a/data/presets/TripleOscillator/Jupiter.xpf +++ b/data/presets/TripleOscillator/Jupiter.xpf @@ -1,21 +1,21 @@ - - + + - - - - + + + + - - - - + + + + - - - - + + + + - + diff --git a/data/presets/TripleOscillator/Kick.xpf b/data/presets/TripleOscillator/Kick.xpf deleted file mode 100644 index d59d9593c..000000000 --- a/data/presets/TripleOscillator/Kick.xpf +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Kick2.xpf b/data/presets/TripleOscillator/Kick2.xpf deleted file mode 100644 index 2893c32d2..000000000 --- a/data/presets/TripleOscillator/Kick2.xpf +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/LFO-party.xpf b/data/presets/TripleOscillator/LFO-party.xpf index a817cc85b..f5d9b1baa 100644 --- a/data/presets/TripleOscillator/LFO-party.xpf +++ b/data/presets/TripleOscillator/LFO-party.xpf @@ -1,21 +1,21 @@ - + - + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/data/presets/TripleOscillator/LovelyDream.xpf b/data/presets/TripleOscillator/LovelyDream.xpf index f17412a42..589640975 100644 --- a/data/presets/TripleOscillator/LovelyDream.xpf +++ b/data/presets/TripleOscillator/LovelyDream.xpf @@ -1,18 +1,19 @@ - + - + - - - - - - - - - + + + + + + + + + - - - + + + + diff --git a/data/presets/TripleOscillator/MoogArpeggio.xpf b/data/presets/TripleOscillator/MoogArpeggio.xpf index c5a22326d..d2f280c1b 100644 --- a/data/presets/TripleOscillator/MoogArpeggio.xpf +++ b/data/presets/TripleOscillator/MoogArpeggio.xpf @@ -1,21 +1,21 @@ - + - + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/data/presets/TripleOscillator/MoveYourBody.xpf b/data/presets/TripleOscillator/MoveYourBody.xpf index 16e9dd9ef..fb67237bd 100644 --- a/data/presets/TripleOscillator/MoveYourBody.xpf +++ b/data/presets/TripleOscillator/MoveYourBody.xpf @@ -1,17 +1,21 @@ - - + + - - - - - - - + + + + + + + + + - - - - - + + + + + + + diff --git a/data/presets/TripleOscillator/OldComputerGames.xpf b/data/presets/TripleOscillator/OldComputerGames.xpf index 18a21d4a4..674bef674 100644 --- a/data/presets/TripleOscillator/OldComputerGames.xpf +++ b/data/presets/TripleOscillator/OldComputerGames.xpf @@ -1,34 +1,97 @@ - - + + - - - - + + + + - - - - + + + + - - - - - - + + + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + + + + + - - + + + + + + + + + + - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + diff --git a/data/presets/TripleOscillator/PM-FMstring.xpf b/data/presets/TripleOscillator/PM-FMstring.xpf new file mode 100644 index 000000000..1433f3c47 --- /dev/null +++ b/data/presets/TripleOscillator/PM-FMstring.xpf @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/PMFMFTWbass.xpf b/data/presets/TripleOscillator/PMFMFTWbass.xpf new file mode 100644 index 000000000..d81b55601 --- /dev/null +++ b/data/presets/TripleOscillator/PMFMFTWbass.xpf @@ -0,0 +1,62 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/PMbass.xpf b/data/presets/TripleOscillator/PMbass.xpf new file mode 100644 index 000000000..2e63d7136 --- /dev/null +++ b/data/presets/TripleOscillator/PMbass.xpf @@ -0,0 +1,75 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/PercussiveBass.xpf b/data/presets/TripleOscillator/PercussiveBass.xpf new file mode 100644 index 000000000..4afb1d0de --- /dev/null +++ b/data/presets/TripleOscillator/PercussiveBass.xpf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Play-some-rock.xpf b/data/presets/TripleOscillator/Play-some-rock.xpf index 51f8ad2c6..2ee19a7b2 100644 --- a/data/presets/TripleOscillator/Play-some-rock.xpf +++ b/data/presets/TripleOscillator/Play-some-rock.xpf @@ -1,17 +1,36 @@ - - + + - - - - - - - + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/PluckArpeggio.xpf b/data/presets/TripleOscillator/PluckArpeggio.xpf index 146b592ae..44ce26c8e 100644 --- a/data/presets/TripleOscillator/PluckArpeggio.xpf +++ b/data/presets/TripleOscillator/PluckArpeggio.xpf @@ -1,21 +1,21 @@ - + - + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/data/presets/TripleOscillator/PluckBass.xpf b/data/presets/TripleOscillator/PluckBass.xpf new file mode 100644 index 000000000..51c5de329 --- /dev/null +++ b/data/presets/TripleOscillator/PluckBass.xpf @@ -0,0 +1,45 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Plucked.xpf b/data/presets/TripleOscillator/Plucked.xpf deleted file mode 100644 index 506fac3be..000000000 --- a/data/presets/TripleOscillator/Plucked.xpf +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/PowerStrings.xpf b/data/presets/TripleOscillator/PowerStrings.xpf index c74354933..0ef375097 100644 --- a/data/presets/TripleOscillator/PowerStrings.xpf +++ b/data/presets/TripleOscillator/PowerStrings.xpf @@ -1,27 +1,56 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/RaveBass.xpf b/data/presets/TripleOscillator/RaveBass.xpf index 219e728a1..21fc6e90c 100644 --- a/data/presets/TripleOscillator/RaveBass.xpf +++ b/data/presets/TripleOscillator/RaveBass.xpf @@ -1,21 +1,21 @@ - + - + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/data/presets/TripleOscillator/Ravemania.xpf b/data/presets/TripleOscillator/Ravemania.xpf index b9fed4da7..cab609fc5 100644 --- a/data/presets/TripleOscillator/Ravemania.xpf +++ b/data/presets/TripleOscillator/Ravemania.xpf @@ -1,23 +1,21 @@ - - + + - - - - - - - - - - - + + + + + + + + + - - - - + + + + - + diff --git a/data/presets/TripleOscillator/ResoBass.xpf b/data/presets/TripleOscillator/ResoBass.xpf index 7243e3080..85a785c6e 100644 --- a/data/presets/TripleOscillator/ResoBass.xpf +++ b/data/presets/TripleOscillator/ResoBass.xpf @@ -1,18 +1,21 @@ - - + + - - - - - - - - - + + + + + + + + + - - - - + + + + + + + diff --git a/data/presets/TripleOscillator/ResonantPad.xpf b/data/presets/TripleOscillator/ResonantPad.xpf index 2cfa8ce6c..0e375c846 100644 --- a/data/presets/TripleOscillator/ResonantPad.xpf +++ b/data/presets/TripleOscillator/ResonantPad.xpf @@ -1,18 +1,21 @@ - - + + - - - - - - - - - + + + + + + + + + - - - - + + + + + + + diff --git a/data/presets/TripleOscillator/RockOrgan.xpf b/data/presets/TripleOscillator/RockOrgan.xpf deleted file mode 100644 index 14a2afd46..000000000 --- a/data/presets/TripleOscillator/RockOrgan.xpf +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Rough!.xpf b/data/presets/TripleOscillator/Rough!.xpf index 7136878da..38e5d364a 100644 --- a/data/presets/TripleOscillator/Rough!.xpf +++ b/data/presets/TripleOscillator/Rough!.xpf @@ -1,18 +1,21 @@ - - + + - - - - - - - - - + + + + + + + + + - - - - + + + + + + + diff --git a/data/presets/TripleOscillator/SBass.xpf b/data/presets/TripleOscillator/SBass.xpf deleted file mode 100644 index ae45def69..000000000 --- a/data/presets/TripleOscillator/SBass.xpf +++ /dev/null @@ -1,54 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/SBass2.xpf b/data/presets/TripleOscillator/SBass2.xpf deleted file mode 100644 index b0df645d7..000000000 --- a/data/presets/TripleOscillator/SBass2.xpf +++ /dev/null @@ -1,36 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/SEGuitar.xpf b/data/presets/TripleOscillator/SEGuitar.xpf index 9fe6f8ded..543c4f412 100644 --- a/data/presets/TripleOscillator/SEGuitar.xpf +++ b/data/presets/TripleOscillator/SEGuitar.xpf @@ -1,61 +1,102 @@ - - - + + + - - - - + + + + - - - - + + + + - - - - - - + + + + + + + + + - - + + - - + + + + + - - + + - - + + + + + + + + + + + + + + + + + + + + + + + - - + + - - + + + + + + + + + + + - - + + - - + + + + + + + - - + + - - + + - + diff --git a/data/presets/TripleOscillator/SawLead.xpf b/data/presets/TripleOscillator/SawLead.xpf deleted file mode 100644 index 6a172401e..000000000 --- a/data/presets/TripleOscillator/SawLead.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/SawReso.xpf b/data/presets/TripleOscillator/SawReso.xpf index b3c9570fe..2c631d663 100644 --- a/data/presets/TripleOscillator/SawReso.xpf +++ b/data/presets/TripleOscillator/SawReso.xpf @@ -1,17 +1,21 @@ - - + + - - - - - - - + + + + + + + + + - - + + + + - + diff --git a/data/presets/TripleOscillator/Short1.xpf b/data/presets/TripleOscillator/Short1.xpf deleted file mode 100644 index c5ba117a7..000000000 --- a/data/presets/TripleOscillator/Short1.xpf +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Short2.xpf b/data/presets/TripleOscillator/Short2.xpf deleted file mode 100644 index 66c42eb53..000000000 --- a/data/presets/TripleOscillator/Short2.xpf +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Short3.xpf b/data/presets/TripleOscillator/Short3.xpf deleted file mode 100644 index 74dc078fa..000000000 --- a/data/presets/TripleOscillator/Short3.xpf +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Short4.xpf b/data/presets/TripleOscillator/Short4.xpf deleted file mode 100644 index 4a6a98f4b..000000000 --- a/data/presets/TripleOscillator/Short4.xpf +++ /dev/null @@ -1,18 +0,0 @@ - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/Snare.xpf b/data/presets/TripleOscillator/Snare.xpf deleted file mode 100644 index ce06bd856..000000000 --- a/data/presets/TripleOscillator/Snare.xpf +++ /dev/null @@ -1,30 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/SoftBass.xpf b/data/presets/TripleOscillator/SoftBass.xpf deleted file mode 100644 index 544aab578..000000000 --- a/data/presets/TripleOscillator/SoftBass.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/SoftStrings.xpf b/data/presets/TripleOscillator/SoftStrings.xpf deleted file mode 100644 index b27f67324..000000000 --- a/data/presets/TripleOscillator/SoftStrings.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/SpaceBass.xpf b/data/presets/TripleOscillator/SpaceBass.xpf index 4298b320a..aeb43286d 100644 --- a/data/presets/TripleOscillator/SpaceBass.xpf +++ b/data/presets/TripleOscillator/SpaceBass.xpf @@ -1,18 +1,19 @@ - + - + - - - - - - - - - + + + + + + + + + - - - + + + + diff --git a/data/presets/TripleOscillator/Square.xpf b/data/presets/TripleOscillator/Square.xpf index e1ee82776..cbd455e0f 100644 --- a/data/presets/TripleOscillator/Square.xpf +++ b/data/presets/TripleOscillator/Square.xpf @@ -1,21 +1,21 @@ - + - + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/data/presets/TripleOscillator/SquarePing.xpf b/data/presets/TripleOscillator/SquarePing.xpf new file mode 100644 index 000000000..c4a1999dd --- /dev/null +++ b/data/presets/TripleOscillator/SquarePing.xpf @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/SuperSawLead.xpf b/data/presets/TripleOscillator/SuperSawLead.xpf new file mode 100644 index 000000000..916bde548 --- /dev/null +++ b/data/presets/TripleOscillator/SuperSawLead.xpf @@ -0,0 +1,44 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/Supernova.xpf b/data/presets/TripleOscillator/Supernova.xpf index 9349e90dc..01837983b 100644 --- a/data/presets/TripleOscillator/Supernova.xpf +++ b/data/presets/TripleOscillator/Supernova.xpf @@ -1,61 +1,110 @@ - - + + - - - - + + + + - - - - + + + + - - - - - - + + + + + + - - + + + + + + + + + + + - - + + - - + + + + + + + + + + + - - + + - - + + - - + + - - + + + + + + + + + + + + + - - + + - - + + + + - - + + + + + + + + + + + + + + + + + + + + - + diff --git a/data/presets/TripleOscillator/TB303-Arpeggio.xpf b/data/presets/TripleOscillator/TB303-Arpeggio.xpf deleted file mode 100644 index 69fa74cbd..000000000 --- a/data/presets/TripleOscillator/TB303-Arpeggio.xpf +++ /dev/null @@ -1,21 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - diff --git a/data/presets/TripleOscillator/TB303.xpf b/data/presets/TripleOscillator/TB303.xpf index 023754598..e5c1229ee 100644 --- a/data/presets/TripleOscillator/TB303.xpf +++ b/data/presets/TripleOscillator/TB303.xpf @@ -1,21 +1,21 @@ - + - + - - - - + + + + - - - - + + + + - - - - + + + + diff --git a/data/presets/TripleOscillator/TINTNpad.xpf b/data/presets/TripleOscillator/TINTNpad.xpf new file mode 100644 index 000000000..840ee358f --- /dev/null +++ b/data/presets/TripleOscillator/TINTNpad.xpf @@ -0,0 +1,52 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/TheFirstOne.xpf b/data/presets/TripleOscillator/TheFirstOne.xpf index b13996230..741b07f3a 100644 --- a/data/presets/TripleOscillator/TheFirstOne.xpf +++ b/data/presets/TripleOscillator/TheFirstOne.xpf @@ -1,18 +1,19 @@ - + - + - - - - - - - - - + + + + + + + + + - - - + + + + diff --git a/data/presets/TripleOscillator/TheMaster.xpf b/data/presets/TripleOscillator/TheMaster.xpf index f51d88848..c54787a19 100644 --- a/data/presets/TripleOscillator/TheMaster.xpf +++ b/data/presets/TripleOscillator/TheMaster.xpf @@ -1,17 +1,31 @@ - - + + - - - - - - - + + + + + + + + + - - - - - + + + + + + + + + + + + + + + + + diff --git a/data/presets/TripleOscillator/WarmStack.xpf b/data/presets/TripleOscillator/WarmStack.xpf index 7dc3a2785..fb903295c 100644 --- a/data/presets/TripleOscillator/WarmStack.xpf +++ b/data/presets/TripleOscillator/WarmStack.xpf @@ -1,31 +1,61 @@ - - + + - - - - + + + + - - - - + + + + - - - - - - + + + + + + + + + + + + + + + + + - - + + + + + + + + + + + + + - - + + + + + + + + + + - + diff --git a/data/presets/TripleOscillator/Whistle.xpf b/data/presets/TripleOscillator/Whistle.xpf index 2faefc562..3d03f5e56 100644 --- a/data/presets/TripleOscillator/Whistle.xpf +++ b/data/presets/TripleOscillator/Whistle.xpf @@ -1,18 +1,19 @@ - + - + - - - - - - - - - + + + + + + + + + - - - + + + + diff --git a/data/presets/TripleOscillator/Xylophon.xpf b/data/presets/TripleOscillator/Xylophon.xpf index ca5503cf3..73c92c55b 100644 --- a/data/presets/TripleOscillator/Xylophon.xpf +++ b/data/presets/TripleOscillator/Xylophon.xpf @@ -1,16 +1,17 @@ - + - + - - - - - - - + + + + + + + - - - + + + + diff --git a/data/presets/Vibed/Harpsichord.xpf b/data/presets/Vibed/Harpsichord.xpf index f9834baac..b7c617c9b 100644 --- a/data/presets/Vibed/Harpsichord.xpf +++ b/data/presets/Vibed/Harpsichord.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - + + + + + + - - + + + diff --git a/data/presets/Vibed/SadPad.xpf b/data/presets/Vibed/SadPad.xpf index 43d64ace9..2ef17698b 100644 --- a/data/presets/Vibed/SadPad.xpf +++ b/data/presets/Vibed/SadPad.xpf @@ -1,17 +1,18 @@ - + - + - - - - - - + + + + + + - - + + + diff --git a/data/presets/Watsyn/Epic_lead.xpf b/data/presets/Watsyn/Epic_lead.xpf new file mode 100644 index 000000000..a1747eadc --- /dev/null +++ b/data/presets/Watsyn/Epic_lead.xpf @@ -0,0 +1,48 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Watsyn/Phase_bass.xpf b/data/presets/Watsyn/Phase_bass.xpf new file mode 100644 index 000000000..641c59c5b --- /dev/null +++ b/data/presets/Watsyn/Phase_bass.xpf @@ -0,0 +1,21 @@ + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/Watsyn/Pulse.xpf b/data/presets/Watsyn/Pulse.xpf new file mode 100644 index 000000000..129a584d2 --- /dev/null +++ b/data/presets/Watsyn/Pulse.xpf @@ -0,0 +1,34 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Arpeggios/0068-Glass Arpeggio1.xiz b/data/presets/ZynAddSubFX/Arpeggios/0068-Glass Arpeggio1.xiz new file mode 100644 index 000000000..6e3bd476c Binary files /dev/null and b/data/presets/ZynAddSubFX/Arpeggios/0068-Glass Arpeggio1.xiz differ diff --git a/data/presets/ZynAddSubFX/Arpeggios/0069-Glass Arpeggio2.xiz b/data/presets/ZynAddSubFX/Arpeggios/0069-Glass Arpeggio2.xiz new file mode 100644 index 000000000..b5690f589 Binary files /dev/null and b/data/presets/ZynAddSubFX/Arpeggios/0069-Glass Arpeggio2.xiz differ diff --git a/data/presets/ZynAddSubFX/Brass/0067-Brass Pad1.xiz b/data/presets/ZynAddSubFX/Brass/0067-Brass Pad1.xiz new file mode 100644 index 000000000..d6d51a085 Binary files /dev/null and b/data/presets/ZynAddSubFX/Brass/0067-Brass Pad1.xiz differ diff --git a/data/presets/ZynAddSubFX/Brass/0068-Brass Pad2.xiz b/data/presets/ZynAddSubFX/Brass/0068-Brass Pad2.xiz new file mode 100644 index 000000000..9072a1626 Binary files /dev/null and b/data/presets/ZynAddSubFX/Brass/0068-Brass Pad2.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0001-Xylophone.xiz b/data/presets/ZynAddSubFX/Collection/0001-Xylophone.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0001-Xylophone.xiz rename to data/presets/ZynAddSubFX/Collection/0001-Xylophone.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0002-Vibraphone.xiz b/data/presets/ZynAddSubFX/Collection/0002-Vibraphone.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0002-Vibraphone.xiz rename to data/presets/ZynAddSubFX/Collection/0002-Vibraphone.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0003-Soft Vibes.xiz b/data/presets/ZynAddSubFX/Collection/0003-Soft Vibes.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0003-Soft Vibes.xiz rename to data/presets/ZynAddSubFX/Collection/0003-Soft Vibes.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0004-Simple Chimes.xiz b/data/presets/ZynAddSubFX/Collection/0004-Simple Chimes.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0004-Simple Chimes.xiz rename to data/presets/ZynAddSubFX/Collection/0004-Simple Chimes.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0005-Silver Bell.xiz b/data/presets/ZynAddSubFX/Collection/0005-Silver Bell.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0005-Silver Bell.xiz rename to data/presets/ZynAddSubFX/Collection/0005-Silver Bell.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0006-Soft Hammer.xiz b/data/presets/ZynAddSubFX/Collection/0006-Soft Hammer.xiz new file mode 100644 index 000000000..2896e1b3a Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0006-Soft Hammer.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0007-Ethereal.xiz b/data/presets/ZynAddSubFX/Collection/0007-Ethereal.xiz new file mode 100644 index 000000000..1a13971f1 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0007-Ethereal.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0008-Metal Drips.xiz b/data/presets/ZynAddSubFX/Collection/0008-Metal Drips.xiz new file mode 100644 index 000000000..6a9e75ba6 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0008-Metal Drips.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0009-Trem Lead.xiz b/data/presets/ZynAddSubFX/Collection/0009-Trem Lead.xiz new file mode 100644 index 000000000..72c308bf3 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0009-Trem Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0012-Trem Synth Piano 3.xiz b/data/presets/ZynAddSubFX/Collection/0010-Trem Synth Piano 3.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0012-Trem Synth Piano 3.xiz rename to data/presets/ZynAddSubFX/Collection/0010-Trem Synth Piano 3.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0033-Trem Synth.xiz b/data/presets/ZynAddSubFX/Collection/0011-Trem Synth.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0033-Trem Synth.xiz rename to data/presets/ZynAddSubFX/Collection/0011-Trem Synth.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0012-Simple Square.xiz b/data/presets/ZynAddSubFX/Collection/0012-Simple Square.xiz new file mode 100644 index 000000000..f126c62a7 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0012-Simple Square.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0013-Full Square.xiz b/data/presets/ZynAddSubFX/Collection/0013-Full Square.xiz new file mode 100644 index 000000000..c8dc15d0f Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0013-Full Square.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0014-Super Square.xiz b/data/presets/ZynAddSubFX/Collection/0014-Super Square.xiz new file mode 100644 index 000000000..e1899b5e0 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0014-Super Square.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0018-Steel Wire.xiz b/data/presets/ZynAddSubFX/Collection/0015-Steel Wire.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0018-Steel Wire.xiz rename to data/presets/ZynAddSubFX/Collection/0015-Steel Wire.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0016-Echo Bubbles.xiz b/data/presets/ZynAddSubFX/Collection/0016-Echo Bubbles.xiz new file mode 100644 index 000000000..01bf4fdbb Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0016-Echo Bubbles.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0017-Fantasia.xiz b/data/presets/ZynAddSubFX/Collection/0017-Fantasia.xiz new file mode 100644 index 000000000..79a506b6b Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0017-Fantasia.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0018-Sub Delay.xiz b/data/presets/ZynAddSubFX/Collection/0018-Sub Delay.xiz new file mode 100644 index 000000000..a176a797b Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0018-Sub Delay.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0019-Soft.xiz b/data/presets/ZynAddSubFX/Collection/0019-Soft.xiz new file mode 100644 index 000000000..e2d332664 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0019-Soft.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0020-Ultra Soft.xiz b/data/presets/ZynAddSubFX/Collection/0020-Ultra Soft.xiz new file mode 100644 index 000000000..c8d4dfacf Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0020-Ultra Soft.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0021-Whistle.xiz b/data/presets/ZynAddSubFX/Collection/0021-Whistle.xiz new file mode 100644 index 000000000..2b143597a Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0021-Whistle.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0022-Wipe Whistle.xiz b/data/presets/ZynAddSubFX/Collection/0022-Wipe Whistle.xiz new file mode 100644 index 000000000..d02ca2c1c Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0022-Wipe Whistle.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0023-Ghost Whistle.xiz b/data/presets/ZynAddSubFX/Collection/0023-Ghost Whistle.xiz new file mode 100644 index 000000000..4cfb6bb2a Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0023-Ghost Whistle.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0029-Full Strings.xiz b/data/presets/ZynAddSubFX/Collection/0024-Full Strings.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0029-Full Strings.xiz rename to data/presets/ZynAddSubFX/Collection/0024-Full Strings.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0030-Slow Strings.xiz b/data/presets/ZynAddSubFX/Collection/0025-Slow Strings.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0030-Slow Strings.xiz rename to data/presets/ZynAddSubFX/Collection/0025-Slow Strings.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0032-Pizzicato Strings.xiz b/data/presets/ZynAddSubFX/Collection/0026-Pizzicato Strings.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0032-Pizzicato Strings.xiz rename to data/presets/ZynAddSubFX/Collection/0026-Pizzicato Strings.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0027-Sweep Synth.xiz b/data/presets/ZynAddSubFX/Collection/0027-Sweep Synth.xiz new file mode 100644 index 000000000..cf77fdb80 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0027-Sweep Synth.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0034-Warm Synth.xiz b/data/presets/ZynAddSubFX/Collection/0028-Warm Synth.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0034-Warm Synth.xiz rename to data/presets/ZynAddSubFX/Collection/0028-Warm Synth.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0035-Hard Synth.xiz b/data/presets/ZynAddSubFX/Collection/0029-Hard Synth.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0035-Hard Synth.xiz rename to data/presets/ZynAddSubFX/Collection/0029-Hard Synth.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0030-Bright Synth.xiz b/data/presets/ZynAddSubFX/Collection/0030-Bright Synth.xiz new file mode 100644 index 000000000..d2ffd8c80 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0030-Bright Synth.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0037-Multi Synth.xiz b/data/presets/ZynAddSubFX/Collection/0031-Multi Synth.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0037-Multi Synth.xiz rename to data/presets/ZynAddSubFX/Collection/0031-Multi Synth.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0038-Slow Saw.xiz b/data/presets/ZynAddSubFX/Collection/0032-Slow Saw.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0038-Slow Saw.xiz rename to data/presets/ZynAddSubFX/Collection/0032-Slow Saw.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0039-Medium Saw.xiz b/data/presets/ZynAddSubFX/Collection/0033-Medium Saw.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0039-Medium Saw.xiz rename to data/presets/ZynAddSubFX/Collection/0033-Medium Saw.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0040-Hard Saw.xiz b/data/presets/ZynAddSubFX/Collection/0034-Hard Saw.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0040-Hard Saw.xiz rename to data/presets/ZynAddSubFX/Collection/0034-Hard Saw.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0041-Voiced Saw.xiz b/data/presets/ZynAddSubFX/Collection/0035-Voiced Saw.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0041-Voiced Saw.xiz rename to data/presets/ZynAddSubFX/Collection/0035-Voiced Saw.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0036-Sweep Saw.xiz b/data/presets/ZynAddSubFX/Collection/0036-Sweep Saw.xiz new file mode 100644 index 000000000..9e2b8a8a5 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0036-Sweep Saw.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0037-Stereo Sweep Saw.xiz b/data/presets/ZynAddSubFX/Collection/0037-Stereo Sweep Saw.xiz new file mode 100644 index 000000000..d05cb0624 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0037-Stereo Sweep Saw.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0044-Wipe Synth.xiz b/data/presets/ZynAddSubFX/Collection/0038-Wipe Synth.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0044-Wipe Synth.xiz rename to data/presets/ZynAddSubFX/Collection/0038-Wipe Synth.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0045-Hard Stereo Sweep Synth.xiz b/data/presets/ZynAddSubFX/Collection/0039-Hard Stereo Sweep Synth.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0045-Hard Stereo Sweep Synth.xiz rename to data/presets/ZynAddSubFX/Collection/0039-Hard Stereo Sweep Synth.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0040-Master Synth Low.xiz b/data/presets/ZynAddSubFX/Collection/0040-Master Synth Low.xiz new file mode 100644 index 000000000..61a2ede7e Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0040-Master Synth Low.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0041-Master Synth High.xiz b/data/presets/ZynAddSubFX/Collection/0041-Master Synth High.xiz new file mode 100644 index 000000000..23cc40b45 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0041-Master Synth High.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0048-Sharp Synth.xiz b/data/presets/ZynAddSubFX/Collection/0042-Sharp Synth.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0048-Sharp Synth.xiz rename to data/presets/ZynAddSubFX/Collection/0042-Sharp Synth.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0050-Fretless Bass.xiz b/data/presets/ZynAddSubFX/Collection/0043-Fretless Bass.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0050-Fretless Bass.xiz rename to data/presets/ZynAddSubFX/Collection/0043-Fretless Bass.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0051-Decay Bass.xiz b/data/presets/ZynAddSubFX/Collection/0044-Decay Bass.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0051-Decay Bass.xiz rename to data/presets/ZynAddSubFX/Collection/0044-Decay Bass.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0052-Steel Bass.xiz b/data/presets/ZynAddSubFX/Collection/0045-Steel Bass.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0052-Steel Bass.xiz rename to data/presets/ZynAddSubFX/Collection/0045-Steel Bass.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0053-Synth Bass.xiz b/data/presets/ZynAddSubFX/Collection/0046-Synth Bass.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0053-Synth Bass.xiz rename to data/presets/ZynAddSubFX/Collection/0046-Synth Bass.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0047-Distorted Bass.xiz b/data/presets/ZynAddSubFX/Collection/0047-Distorted Bass.xiz new file mode 100644 index 000000000..d5662cf15 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0047-Distorted Bass.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0048-Variable Reed.xiz b/data/presets/ZynAddSubFX/Collection/0048-Variable Reed.xiz new file mode 100644 index 000000000..6d3651aa0 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0048-Variable Reed.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0049-Reed Organ.xiz b/data/presets/ZynAddSubFX/Collection/0049-Reed Organ.xiz new file mode 100644 index 000000000..d317731f6 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0049-Reed Organ.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0050-Soft Organ.xiz b/data/presets/ZynAddSubFX/Collection/0050-Soft Organ.xiz new file mode 100644 index 000000000..f3379f352 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0050-Soft Organ.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0051-Thin Pipe.xiz b/data/presets/ZynAddSubFX/Collection/0051-Thin Pipe.xiz new file mode 100644 index 000000000..8703c4f52 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0051-Thin Pipe.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0052-Great Organ.xiz b/data/presets/ZynAddSubFX/Collection/0052-Great Organ.xiz new file mode 100644 index 000000000..65d529b5d Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0052-Great Organ.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0053-64ft Organ.xiz b/data/presets/ZynAddSubFX/Collection/0053-64ft Organ.xiz new file mode 100644 index 000000000..fe2d4eeb7 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0053-64ft Organ.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0062-Hammond Organ.xiz b/data/presets/ZynAddSubFX/Collection/0054-Hammond Organ.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0062-Hammond Organ.xiz rename to data/presets/ZynAddSubFX/Collection/0054-Hammond Organ.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0055-Percussion Organ.xiz b/data/presets/ZynAddSubFX/Collection/0055-Percussion Organ.xiz new file mode 100644 index 000000000..0b4003265 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0055-Percussion Organ.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0064-Sines.xiz b/data/presets/ZynAddSubFX/Collection/0056-Sines.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0064-Sines.xiz rename to data/presets/ZynAddSubFX/Collection/0056-Sines.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0067-Soft Flute.xiz b/data/presets/ZynAddSubFX/Collection/0057-Soft Flute.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0067-Soft Flute.xiz rename to data/presets/ZynAddSubFX/Collection/0057-Soft Flute.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0068-Warm Flute.xiz b/data/presets/ZynAddSubFX/Collection/0058-Warm Flute.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0068-Warm Flute.xiz rename to data/presets/ZynAddSubFX/Collection/0058-Warm Flute.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0071-Ocarina.xiz b/data/presets/ZynAddSubFX/Collection/0059-Ocarina.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0071-Ocarina.xiz rename to data/presets/ZynAddSubFX/Collection/0059-Ocarina.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0060-Beyond.xiz b/data/presets/ZynAddSubFX/Collection/0060-Beyond.xiz new file mode 100644 index 000000000..a8e89877b Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0060-Beyond.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0061-Sweep Pad.xiz b/data/presets/ZynAddSubFX/Collection/0061-Sweep Pad.xiz new file mode 100644 index 000000000..ff889de34 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0061-Sweep Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0062-Sweep Matrix.xiz b/data/presets/ZynAddSubFX/Collection/0062-Sweep Matrix.xiz new file mode 100644 index 000000000..a6106baa4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0062-Sweep Matrix.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0063-Matrix.xiz b/data/presets/ZynAddSubFX/Collection/0063-Matrix.xiz new file mode 100644 index 000000000..13f1c1df4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0063-Matrix.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0064-Slow Deep Matrix.xiz b/data/presets/ZynAddSubFX/Collection/0064-Slow Deep Matrix.xiz new file mode 100644 index 000000000..25bec2c76 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0064-Slow Deep Matrix.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0065-Ice Field.xiz b/data/presets/ZynAddSubFX/Collection/0065-Ice Field.xiz new file mode 100644 index 000000000..d883d0a56 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0065-Ice Field.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0066-Hollow Ice Field.xiz b/data/presets/ZynAddSubFX/Collection/0066-Hollow Ice Field.xiz new file mode 100644 index 000000000..be92531cb Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0066-Hollow Ice Field.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0067-Smooth.xiz b/data/presets/ZynAddSubFX/Collection/0067-Smooth.xiz new file mode 100644 index 000000000..013bf4003 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0067-Smooth.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0068-Rushes.xiz b/data/presets/ZynAddSubFX/Collection/0068-Rushes.xiz new file mode 100644 index 000000000..bb3b30264 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0068-Rushes.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0069-Medium Rushes.xiz b/data/presets/ZynAddSubFX/Collection/0069-Medium Rushes.xiz new file mode 100644 index 000000000..60880c448 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0069-Medium Rushes.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0070-Bright Rushes.xiz b/data/presets/ZynAddSubFX/Collection/0070-Bright Rushes.xiz new file mode 100644 index 000000000..f94599b0e Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0070-Bright Rushes.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0071-Bright Rush Long Tail.xiz b/data/presets/ZynAddSubFX/Collection/0071-Bright Rush Long Tail.xiz new file mode 100644 index 000000000..2e58ddbcc Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0071-Bright Rush Long Tail.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0072-Extended Rushes.xiz b/data/presets/ZynAddSubFX/Collection/0072-Extended Rushes.xiz new file mode 100644 index 000000000..71335d8ef Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0072-Extended Rushes.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0073-Bright Rush Pipe.xiz b/data/presets/ZynAddSubFX/Collection/0073-Bright Rush Pipe.xiz new file mode 100644 index 000000000..23708d252 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0073-Bright Rush Pipe.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0074-Sweep Rushes.xiz b/data/presets/ZynAddSubFX/Collection/0074-Sweep Rushes.xiz new file mode 100644 index 000000000..070ae50c1 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0074-Sweep Rushes.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0075-Breathy Pad.xiz b/data/presets/ZynAddSubFX/Collection/0075-Breathy Pad.xiz new file mode 100644 index 000000000..60539b5d5 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0075-Breathy Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0076-ReedBank.xiz b/data/presets/ZynAddSubFX/Collection/0076-ReedBank.xiz new file mode 100644 index 000000000..6fcbdde4b Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0076-ReedBank.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0077-Voyager.xiz b/data/presets/ZynAddSubFX/Collection/0077-Voyager.xiz new file mode 100644 index 000000000..414727685 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0077-Voyager.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0078-Soft Voyager.xiz b/data/presets/ZynAddSubFX/Collection/0078-Soft Voyager.xiz new file mode 100644 index 000000000..7bb4ee2ea Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0078-Soft Voyager.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0079-Soft Voyager Reverse.xiz b/data/presets/ZynAddSubFX/Collection/0079-Soft Voyager Reverse.xiz new file mode 100644 index 000000000..b56ff8890 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0079-Soft Voyager Reverse.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0096-Echo Choir.xiz b/data/presets/ZynAddSubFX/Collection/0080-Echo Choir.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0096-Echo Choir.xiz rename to data/presets/ZynAddSubFX/Collection/0080-Echo Choir.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0081-Sharp.xiz b/data/presets/ZynAddSubFX/Collection/0081-Sharp.xiz new file mode 100644 index 000000000..2895629e8 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0081-Sharp.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0082-Sharp and Warm.xiz b/data/presets/ZynAddSubFX/Collection/0082-Sharp and Warm.xiz new file mode 100644 index 000000000..290e47cf8 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0082-Sharp and Warm.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0083-Sharp and Deep.xiz b/data/presets/ZynAddSubFX/Collection/0083-Sharp and Deep.xiz new file mode 100644 index 000000000..052a6ae31 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0083-Sharp and Deep.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0099-Sharp Reed.xiz b/data/presets/ZynAddSubFX/Collection/0084-Sharp Reed.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0099-Sharp Reed.xiz rename to data/presets/ZynAddSubFX/Collection/0084-Sharp Reed.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0085-Far Reed.xiz b/data/presets/ZynAddSubFX/Collection/0085-Far Reed.xiz new file mode 100644 index 000000000..0c77ca746 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0085-Far Reed.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0103-Clarinet.xiz b/data/presets/ZynAddSubFX/Collection/0086-Clarinet.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0103-Clarinet.xiz rename to data/presets/ZynAddSubFX/Collection/0086-Clarinet.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0102-Bassoon.xiz b/data/presets/ZynAddSubFX/Collection/0087-Bassoon.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0102-Bassoon.xiz rename to data/presets/ZynAddSubFX/Collection/0087-Bassoon.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0088-Aooww.xiz b/data/presets/ZynAddSubFX/Collection/0088-Aooww.xiz new file mode 100644 index 000000000..06baa349a Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0088-Aooww.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0107-Daooww.xiz b/data/presets/ZynAddSubFX/Collection/0089-Daooww.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0107-Daooww.xiz rename to data/presets/ZynAddSubFX/Collection/0089-Daooww.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0108-Yaooww.xiz b/data/presets/ZynAddSubFX/Collection/0090-Yaooww.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0108-Yaooww.xiz rename to data/presets/ZynAddSubFX/Collection/0090-Yaooww.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0109-Yiee.xiz b/data/presets/ZynAddSubFX/Collection/0091-Yiee.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0109-Yiee.xiz rename to data/presets/ZynAddSubFX/Collection/0091-Yiee.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0110-Eeoow.xiz b/data/presets/ZynAddSubFX/Collection/0092-Eeoow.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0110-Eeoow.xiz rename to data/presets/ZynAddSubFX/Collection/0092-Eeoow.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0112-Overdrive.xiz b/data/presets/ZynAddSubFX/Collection/0093-Overdrive.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0112-Overdrive.xiz rename to data/presets/ZynAddSubFX/Collection/0093-Overdrive.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0113-Overdrive 2.xiz b/data/presets/ZynAddSubFX/Collection/0094-Overdrive 2.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0113-Overdrive 2.xiz rename to data/presets/ZynAddSubFX/Collection/0094-Overdrive 2.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0095-Overdrive 3.xiz b/data/presets/ZynAddSubFX/Collection/0095-Overdrive 3.xiz new file mode 100644 index 000000000..055dde071 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0095-Overdrive 3.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0116-Power Guitar 1.xiz b/data/presets/ZynAddSubFX/Collection/0096-Power Guitar 1.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0116-Power Guitar 1.xiz rename to data/presets/ZynAddSubFX/Collection/0096-Power Guitar 1.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0117-Power Guitar 2.xiz b/data/presets/ZynAddSubFX/Collection/0097-Power Guitar 2.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0117-Power Guitar 2.xiz rename to data/presets/ZynAddSubFX/Collection/0097-Power Guitar 2.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0098-Wet Brass.xiz b/data/presets/ZynAddSubFX/Collection/0098-Wet Brass.xiz new file mode 100644 index 000000000..f46dd44b8 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0098-Wet Brass.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0099-Wet Brass 2.xiz b/data/presets/ZynAddSubFX/Collection/0099-Wet Brass 2.xiz new file mode 100644 index 000000000..1b2b6cb8f Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0099-Wet Brass 2.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0123-Prophesy.xiz b/data/presets/ZynAddSubFX/Collection/0100-Prophesy.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0123-Prophesy.xiz rename to data/presets/ZynAddSubFX/Collection/0100-Prophesy.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0101-Bottle.xiz b/data/presets/ZynAddSubFX/Collection/0101-Bottle.xiz new file mode 100644 index 000000000..d26510c33 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0101-Bottle.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0102-Pan Pipe 32.xiz b/data/presets/ZynAddSubFX/Collection/0102-Pan Pipe 32.xiz new file mode 100644 index 000000000..f3075fb34 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0102-Pan Pipe 32.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0103-Pan Pipe.xiz b/data/presets/ZynAddSubFX/Collection/0103-Pan Pipe.xiz new file mode 100644 index 000000000..a7ac9c6d6 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0103-Pan Pipe.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0104-Pan Pipe 96.xiz b/data/presets/ZynAddSubFX/Collection/0104-Pan Pipe 96.xiz new file mode 100644 index 000000000..461c9f16a Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0104-Pan Pipe 96.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0131-Lite Guitar.xiz b/data/presets/ZynAddSubFX/Collection/0105-Lite Guitar.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0131-Lite Guitar.xiz rename to data/presets/ZynAddSubFX/Collection/0105-Lite Guitar.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0132-Trem Guitar.xiz b/data/presets/ZynAddSubFX/Collection/0106-Trem Guitar.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0132-Trem Guitar.xiz rename to data/presets/ZynAddSubFX/Collection/0106-Trem Guitar.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0133-Smooth Guitar.xiz b/data/presets/ZynAddSubFX/Collection/0107-Smooth Guitar.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0133-Smooth Guitar.xiz rename to data/presets/ZynAddSubFX/Collection/0107-Smooth Guitar.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0134-Nylon Guitar.xiz b/data/presets/ZynAddSubFX/Collection/0108-Nylon Guitar.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0134-Nylon Guitar.xiz rename to data/presets/ZynAddSubFX/Collection/0108-Nylon Guitar.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0109-Tunnel Piano.xiz b/data/presets/ZynAddSubFX/Collection/0109-Tunnel Piano.xiz new file mode 100644 index 000000000..04d23a675 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0109-Tunnel Piano.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0139-Home Piano.xiz b/data/presets/ZynAddSubFX/Collection/0110-Home Piano.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0139-Home Piano.xiz rename to data/presets/ZynAddSubFX/Collection/0110-Home Piano.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0140-Moonlight Piano.xiz b/data/presets/ZynAddSubFX/Collection/0111-Moonlight Piano.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0140-Moonlight Piano.xiz rename to data/presets/ZynAddSubFX/Collection/0111-Moonlight Piano.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0141-Soft Piano1.xiz b/data/presets/ZynAddSubFX/Collection/0112-Soft Piano1.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0141-Soft Piano1.xiz rename to data/presets/ZynAddSubFX/Collection/0112-Soft Piano1.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0142-Soft Piano2.xiz b/data/presets/ZynAddSubFX/Collection/0113-Soft Piano2.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0142-Soft Piano2.xiz rename to data/presets/ZynAddSubFX/Collection/0113-Soft Piano2.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0114-Space Piano.xiz b/data/presets/ZynAddSubFX/Collection/0114-Space Piano.xiz new file mode 100644 index 000000000..d54cda166 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0114-Space Piano.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0115-Space Voice.xiz b/data/presets/ZynAddSubFX/Collection/0115-Space Voice.xiz new file mode 100644 index 000000000..0b09216d2 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0115-Space Voice.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0116-Far Space Voice.xiz b/data/presets/ZynAddSubFX/Collection/0116-Far Space Voice.xiz new file mode 100644 index 000000000..f2e0e840e Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0116-Far Space Voice.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0117-Space Voice 2.xiz b/data/presets/ZynAddSubFX/Collection/0117-Space Voice 2.xiz new file mode 100644 index 000000000..9fe14028f Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0117-Space Voice 2.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0149-Soft Choir.xiz b/data/presets/ZynAddSubFX/Collection/0118-Soft Choir.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0149-Soft Choir.xiz rename to data/presets/ZynAddSubFX/Collection/0118-Soft Choir.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0119-Full Choir.xiz b/data/presets/ZynAddSubFX/Collection/0119-Full Choir.xiz new file mode 100644 index 000000000..c86dc6130 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0119-Full Choir.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0151-Soft Ahh.xiz b/data/presets/ZynAddSubFX/Collection/0120-Soft Ahh.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0151-Soft Ahh.xiz rename to data/presets/ZynAddSubFX/Collection/0120-Soft Ahh.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0152-Breathy Ahh.xiz b/data/presets/ZynAddSubFX/Collection/0121-Breathy Ahh.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0152-Breathy Ahh.xiz rename to data/presets/ZynAddSubFX/Collection/0121-Breathy Ahh.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0122-Another Choir.xiz b/data/presets/ZynAddSubFX/Collection/0122-Another Choir.xiz new file mode 100644 index 000000000..9a0330c3b Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0122-Another Choir.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0123-Light Choir.xiz b/data/presets/ZynAddSubFX/Collection/0123-Light Choir.xiz new file mode 100644 index 000000000..f18cad5a9 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0123-Light Choir.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0155-Super Pad.xiz b/data/presets/ZynAddSubFX/Collection/0124-Super Pad.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0155-Super Pad.xiz rename to data/presets/ZynAddSubFX/Collection/0124-Super Pad.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0156-Hyper Pad.xiz b/data/presets/ZynAddSubFX/Collection/0125-Hyper Pad.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0156-Hyper Pad.xiz rename to data/presets/ZynAddSubFX/Collection/0125-Hyper Pad.xiz diff --git a/data/presets/ZynAddSubFX/Collection/0126-Hyper Matrix.xiz b/data/presets/ZynAddSubFX/Collection/0126-Hyper Matrix.xiz new file mode 100644 index 000000000..7d6690498 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0126-Hyper Matrix.xiz differ diff --git a/data/presets/ZynAddSubFX/Collection/0127-Extreme.xiz b/data/presets/ZynAddSubFX/Collection/0127-Extreme.xiz new file mode 100644 index 000000000..6fb404278 Binary files /dev/null and b/data/presets/ZynAddSubFX/Collection/0127-Extreme.xiz differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0160-Wind and Surf.xiz b/data/presets/ZynAddSubFX/Collection/0128-Wind and Surf.xiz similarity index 100% rename from data/presets/ZynAddSubFX/Collections/WillGodfrey/0160-Wind and Surf.xiz rename to data/presets/ZynAddSubFX/Collection/0128-Wind and Surf.xiz diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0008-Ethereal.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0008-Ethereal.xiz deleted file mode 100644 index e54c49aa4..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0008-Ethereal.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0010-Trem Lead.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0010-Trem Lead.xiz deleted file mode 100644 index 34a936dcd..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0010-Trem Lead.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0015-Simple Square.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0015-Simple Square.xiz deleted file mode 100644 index 85fb4aea2..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0015-Simple Square.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0016-Full Square.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0016-Full Square.xiz deleted file mode 100644 index 96149405e..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0016-Full Square.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0020-Fantasia.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0020-Fantasia.xiz deleted file mode 100644 index e940e7d97..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0020-Fantasia.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0021-Soft.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0021-Soft.xiz deleted file mode 100644 index fd94ef181..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0021-Soft.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0028-Echo Bubbles.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0028-Echo Bubbles.xiz deleted file mode 100644 index 99aefae6a..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0028-Echo Bubbles.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0036-Bright Synth.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0036-Bright Synth.xiz deleted file mode 100644 index 3acbde0be..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0036-Bright Synth.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0042-Matrix.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0042-Matrix.xiz deleted file mode 100644 index 84cb62078..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0042-Matrix.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0043-Sweep Matrix.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0043-Sweep Matrix.xiz deleted file mode 100644 index 2a4e7f4fd..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0043-Sweep Matrix.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0046-Master Synth Low.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0046-Master Synth Low.xiz deleted file mode 100644 index e3247fc52..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0046-Master Synth Low.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0047-Master Synth High.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0047-Master Synth High.xiz deleted file mode 100644 index 20229269f..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0047-Master Synth High.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0057-Sub Delay.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0057-Sub Delay.xiz deleted file mode 100644 index 930dabe6d..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0057-Sub Delay.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0058-Reed Organ.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0058-Reed Organ.xiz deleted file mode 100644 index 783d89354..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0058-Reed Organ.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0059-Soft Organ.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0059-Soft Organ.xiz deleted file mode 100644 index a82e7d4ac..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0059-Soft Organ.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0060-Thin Pipe.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0060-Thin Pipe.xiz deleted file mode 100644 index aa86c2e97..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0060-Thin Pipe.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0061-Great Organ.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0061-Great Organ.xiz deleted file mode 100644 index dcebee3a7..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0061-Great Organ.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0073-Variable Reed.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0073-Variable Reed.xiz deleted file mode 100644 index 480b23924..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0073-Variable Reed.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0075-Smooth.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0075-Smooth.xiz deleted file mode 100644 index beb54c71c..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0075-Smooth.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0077-Whistle.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0077-Whistle.xiz deleted file mode 100644 index 22d663053..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0077-Whistle.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0078-Ghost Whistle.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0078-Ghost Whistle.xiz deleted file mode 100644 index 9b8c13f88..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0078-Ghost Whistle.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0079-Ice Field.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0079-Ice Field.xiz deleted file mode 100644 index 653f4e5ba..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0079-Ice Field.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0080-Hollow Ice Field.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0080-Hollow Ice Field.xiz deleted file mode 100644 index 5d6f366b0..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0080-Hollow Ice Field.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0081-Beyond.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0081-Beyond.xiz deleted file mode 100644 index b3b8c0c94..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0081-Beyond.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0083-Sweep Pad.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0083-Sweep Pad.xiz deleted file mode 100644 index dd7a2e6f6..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0083-Sweep Pad.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0084-Breathy Pad.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0084-Breathy Pad.xiz deleted file mode 100644 index 8250e5994..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0084-Breathy Pad.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0085-Bottle.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0085-Bottle.xiz deleted file mode 100644 index f41b88c52..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0085-Bottle.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0086-ReedBank.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0086-ReedBank.xiz deleted file mode 100644 index a2d317fe7..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0086-ReedBank.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0087-Sweep Rushes.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0087-Sweep Rushes.xiz deleted file mode 100644 index f673d5edc..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0087-Sweep Rushes.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0088-Rushes.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0088-Rushes.xiz deleted file mode 100644 index 6070f0dd7..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0088-Rushes.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0089-Medium Rushes.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0089-Medium Rushes.xiz deleted file mode 100644 index 277dbe7ab..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0089-Medium Rushes.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0090-Bright Rushes.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0090-Bright Rushes.xiz deleted file mode 100644 index 9215de1fd..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0090-Bright Rushes.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0091-Bright Rush Pipe.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0091-Bright Rush Pipe.xiz deleted file mode 100644 index 2e149d88b..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0091-Bright Rush Pipe.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0092-Bright Rush Long Tail.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0092-Bright Rush Long Tail.xiz deleted file mode 100644 index 9e0361ac0..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0092-Bright Rush Long Tail.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0093-Voyager.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0093-Voyager.xiz deleted file mode 100644 index 71863f2a8..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0093-Voyager.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0094-Soft Voyager.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0094-Soft Voyager.xiz deleted file mode 100644 index 78b6d0322..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0094-Soft Voyager.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0095-Soft Voyager Reverse.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0095-Soft Voyager Reverse.xiz deleted file mode 100644 index 460cef203..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0095-Soft Voyager Reverse.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0097-Sharp.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0097-Sharp.xiz deleted file mode 100644 index a1a73848a..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0097-Sharp.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0098-Sharp and Deep.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0098-Sharp and Deep.xiz deleted file mode 100644 index ce16f0a1e..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0098-Sharp and Deep.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0100-Far Reed.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0100-Far Reed.xiz deleted file mode 100644 index 9f41c3a93..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0100-Far Reed.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0106-Aooww.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0106-Aooww.xiz deleted file mode 100644 index 200f8ba0c..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0106-Aooww.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0114-Overdrive 3.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0114-Overdrive 3.xiz deleted file mode 100644 index 69b2aaca4..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0114-Overdrive 3.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0120-Wet Brass.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0120-Wet Brass.xiz deleted file mode 100644 index b8d88f2f6..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0120-Wet Brass.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0125-Pan Pipe 32.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0125-Pan Pipe 32.xiz deleted file mode 100644 index 23c1d5fa4..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0125-Pan Pipe 32.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0126-Pan Pipe.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0126-Pan Pipe.xiz deleted file mode 100644 index 8d64bab00..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0126-Pan Pipe.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0127-Pan Pipe 96.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0127-Pan Pipe 96.xiz deleted file mode 100644 index cd3dd87f0..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0127-Pan Pipe 96.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0143-Space Piano.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0143-Space Piano.xiz deleted file mode 100644 index 45080929e..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0143-Space Piano.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0146-Space Voice.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0146-Space Voice.xiz deleted file mode 100644 index 771050c4c..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0146-Space Voice.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0147-Space Voice 2.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0147-Space Voice 2.xiz deleted file mode 100644 index 961dc90ed..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0147-Space Voice 2.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0150-Full Choir.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0150-Full Choir.xiz deleted file mode 100644 index 86dfda653..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0150-Full Choir.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0157-Hyper Matrix.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0157-Hyper Matrix.xiz deleted file mode 100644 index 2cf15ec14..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0157-Hyper Matrix.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0158-Extreme.xiz b/data/presets/ZynAddSubFX/Collections/WillGodfrey/0158-Extreme.xiz deleted file mode 100644 index 144215f4b..000000000 Binary files a/data/presets/ZynAddSubFX/Collections/WillGodfrey/0158-Extreme.xiz and /dev/null differ diff --git a/data/presets/ZynAddSubFX/Collections/WillGodfrey/README b/data/presets/ZynAddSubFX/Collections/WillGodfrey/README deleted file mode 100644 index cd5cba209..000000000 --- a/data/presets/ZynAddSubFX/Collections/WillGodfrey/README +++ /dev/null @@ -1,4 +0,0 @@ -Downloaded at http://www.musically.me.uk/Collection.zip on May 4th 2009. - -License: GPLv2 or later (as specified at http://www.musically.me.uk/stuff.html) - diff --git a/data/presets/ZynAddSubFX/Companion/.bankdir b/data/presets/ZynAddSubFX/Companion/.bankdir new file mode 100644 index 000000000..e69de29bb diff --git a/data/presets/ZynAddSubFX/Companion/0004-Muffled Bells.xiz b/data/presets/ZynAddSubFX/Companion/0004-Muffled Bells.xiz new file mode 100644 index 000000000..0dc90b761 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0004-Muffled Bells.xiz @@ -0,0 +1,1616 @@ + + + + + + + + + + + + + + + + + +Muffled Bells +Will J Godfrey +GPL V 2 or later +Originally derived from Paul's Bells 3 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0006-Tinkle Bell.xiz b/data/presets/ZynAddSubFX/Companion/0006-Tinkle Bell.xiz new file mode 100644 index 000000000..09027a5fc --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0006-Tinkle Bell.xiz @@ -0,0 +1,7207 @@ + + + + + + + + + + + + + + + + + +Tinkle Bell +Will Godfrey +GPL V2 or later +Derived from Benji Flamings Mellow Bell +Silver Bell with a little extra zing :) + + + + + + + +Benji Bell + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0010-Metal Sweep.xiz b/data/presets/ZynAddSubFX/Companion/0010-Metal Sweep.xiz new file mode 100644 index 000000000..9fb12f99b --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0010-Metal Sweep.xiz @@ -0,0 +1,7204 @@ + + + + + + + + + + + + + + + + + +Metal Sweep +Will J Godfrey +GPL V2 or later +Derived from Paul's Plucked1 + +Responds to pitch modulation + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0011-Slow Steel.xiz b/data/presets/ZynAddSubFX/Companion/0011-Slow Steel.xiz new file mode 100644 index 000000000..abd0f7496 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0011-Slow Steel.xiz @@ -0,0 +1,8065 @@ + + + + + + + + + + + + + + + + + +Slow Steel +Will J Godfrey +GPL V2 or later +Derived from Pauls Clean Guitar1 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0013-Bright Metal.xiz b/data/presets/ZynAddSubFX/Companion/0013-Bright Metal.xiz new file mode 100644 index 000000000..ffcd0c5ee --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0013-Bright Metal.xiz @@ -0,0 +1,7281 @@ + + + + + + + + + + + + + + + + + +Bright Metal +Will Godfrey +GPL V 2 or later +Works best mid range +high velocity + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0016-Soft Metal.xiz b/data/presets/ZynAddSubFX/Companion/0016-Soft Metal.xiz new file mode 100644 index 000000000..6baaa4694 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0016-Soft Metal.xiz @@ -0,0 +1,7262 @@ + + + + + + + + + + + + + + + + + +Soft Metal +Will J Godfrey +GPL V 2 or later +Best for mid and low pitches + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0019-Warm Square Swell.xiz b/data/presets/ZynAddSubFX/Companion/0019-Warm Square Swell.xiz new file mode 100644 index 000000000..de21b0768 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0019-Warm Square Swell.xiz @@ -0,0 +1,7219 @@ + + + + + + + + + + + + + + + + + +Warm Square Swell +Will J Godfrey +GPL V 2 or later + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0021-Bubbles.xiz b/data/presets/ZynAddSubFX/Companion/0021-Bubbles.xiz new file mode 100644 index 000000000..663758dc5 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0021-Bubbles.xiz @@ -0,0 +1,7175 @@ + + + + + + + + + + + + + + + + + +Bubbles +Will J Godfrey +GPL V 2 or later + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0024-Solo.xiz b/data/presets/ZynAddSubFX/Companion/0024-Solo.xiz new file mode 100644 index 000000000..6ad1bfecf --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0024-Solo.xiz @@ -0,0 +1,7206 @@ + + + + + + + + + + + + + + + + + +Solo +Will J Godfrey +GPL V2 or later + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0025-Wind Whistle.xiz b/data/presets/ZynAddSubFX/Companion/0025-Wind Whistle.xiz new file mode 100644 index 000000000..f503e33a7 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0025-Wind Whistle.xiz @@ -0,0 +1,8098 @@ + + + + + + + + + + + + + + + + + +Wind Whistle +Will J Godfrey +GPL V 2 or later +Works best with middle to upper pitches + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0038-Smooth Saw.xiz b/data/presets/ZynAddSubFX/Companion/0038-Smooth Saw.xiz new file mode 100644 index 000000000..c01c90fd8 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0038-Smooth Saw.xiz @@ -0,0 +1,1565 @@ + + + + + + + + + + + + + + + + + +Smooth Saw +Will J Godfrey +GPL V 2 or later + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0041-Buzz.xiz b/data/presets/ZynAddSubFX/Companion/0041-Buzz.xiz new file mode 100644 index 000000000..8e900a355 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0041-Buzz.xiz @@ -0,0 +1,7178 @@ + + + + + + + + + + + + + + + + + +Buzz +Will J Godfrey +GPL V 2 or later + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0045-Bite.xiz b/data/presets/ZynAddSubFX/Companion/0045-Bite.xiz new file mode 100644 index 000000000..bb28ac1d2 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0045-Bite.xiz @@ -0,0 +1,8602 @@ + + + + + + + + + + + + + + + + + +Bite +Will J Godfrey +GPL V 2 or later + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0055-Thick Bass.xiz b/data/presets/ZynAddSubFX/Companion/0055-Thick Bass.xiz new file mode 100644 index 000000000..764d83fbf --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0055-Thick Bass.xiz @@ -0,0 +1,7149 @@ + + + + + + + + + + + + + + + + + +Thick Bass +Will Godfrey +GPL V2 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0057-Ultra Bass.xiz b/data/presets/ZynAddSubFX/Companion/0057-Ultra Bass.xiz new file mode 100644 index 000000000..0e165c12d --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0057-Ultra Bass.xiz @@ -0,0 +1,14223 @@ + + + + + + + + + + + + + + + + + +Ultra Bass +Will J Godfrey +GPL V 2 or later +Also works as a nice lead instrument! + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0060-Stopped Pipe.xiz b/data/presets/ZynAddSubFX/Companion/0060-Stopped Pipe.xiz new file mode 100644 index 000000000..64c918475 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0060-Stopped Pipe.xiz @@ -0,0 +1,1627 @@ + + + + + + + + + + + + + + + + + +Stopped Pipe +Will Godfrey +GPL V2 or later +Based on Paul's Church Organ 4 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0074-Smooth Expanded.xiz b/data/presets/ZynAddSubFX/Companion/0074-Smooth Expanded.xiz new file mode 100644 index 000000000..cc060f775 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0074-Smooth Expanded.xiz @@ -0,0 +1,7988 @@ + + + + + + + + + + + + + + + + + +Smooth Expanded +Will Godfrey +GPL V 2 or later +Now has a slow long tail. +Only really noticable on lower notes. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0092-Wind Pipes.xiz b/data/presets/ZynAddSubFX/Companion/0092-Wind Pipes.xiz new file mode 100644 index 000000000..ee378aea4 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0092-Wind Pipes.xiz @@ -0,0 +1,950 @@ + + + + + + + + + + + + + + + + + +Wind Pipes +Will J Godfrey +GPL V 2 or later + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0106-Harpsichord.xiz b/data/presets/ZynAddSubFX/Companion/0106-Harpsichord.xiz new file mode 100644 index 000000000..489d98da8 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0106-Harpsichord.xiz @@ -0,0 +1,7178 @@ + + + + + + + + + + + + + + + + + +Harpsichord +Will J Godfrey +GPL V2 or later + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0107-Cathedral Harp.xiz b/data/presets/ZynAddSubFX/Companion/0107-Cathedral Harp.xiz new file mode 100644 index 000000000..615ead422 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0107-Cathedral Harp.xiz @@ -0,0 +1,7205 @@ + + + + + + + + + + + + + + + + + +Cathedral Pad +Will J Godfrey +GPL V2 or later + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0108-Angel Harp.xiz b/data/presets/ZynAddSubFX/Companion/0108-Angel Harp.xiz new file mode 100644 index 000000000..011acd807 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0108-Angel Harp.xiz @@ -0,0 +1,8012 @@ + + + + + + + + + + + + + + + + + +Angel Harp +Will J Godfrey +GPL V2 or later +Has a long tail. +Works best on very long slow notes. + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0116-Soprano.xiz b/data/presets/ZynAddSubFX/Companion/0116-Soprano.xiz new file mode 100644 index 000000000..52947eff1 --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0116-Soprano.xiz @@ -0,0 +1,1509 @@ + + + + + + + + + + + + + + + + + +Soprano +Will J Godfrey +GPL V2 or later + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Companion/0119-Ghost Choir.xiz b/data/presets/ZynAddSubFX/Companion/0119-Ghost Choir.xiz new file mode 100644 index 000000000..4b2af23cd --- /dev/null +++ b/data/presets/ZynAddSubFX/Companion/0119-Ghost Choir.xiz @@ -0,0 +1,8065 @@ + + + + + + + + + + + + + + + + + +Ghost Choir +Will J Godfrey +GPL V2 or later + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/.bankdir b/data/presets/ZynAddSubFX/Cormi_Noise/.bankdir new file mode 100644 index 000000000..e69de29bb diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0002-Sparo_01.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0002-Sparo_01.xiz new file mode 100644 index 000000000..25dcd860c Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0002-Sparo_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0003-Laser_01.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0003-Laser_01.xiz new file mode 100644 index 000000000..0d6b3162c Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0003-Laser_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0005-Elettrico.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0005-Elettrico.xiz new file mode 100644 index 000000000..863ff9743 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0005-Elettrico.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0006-Ronzio_01.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0006-Ronzio_01.xiz new file mode 100644 index 000000000..6d7a8b997 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0006-Ronzio_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0007-Ronzio_02.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0007-Ronzio_02.xiz new file mode 100644 index 000000000..d555cb569 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0007-Ronzio_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0008-Ronzio_03.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0008-Ronzio_03.xiz new file mode 100644 index 000000000..d11c5826d Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0008-Ronzio_03.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0010-Interferenze.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0010-Interferenze.xiz new file mode 100644 index 000000000..93104e8d1 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0010-Interferenze.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0012-Passa_astronave.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0012-Passa_astronave.xiz new file mode 100644 index 000000000..b0e042f97 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0012-Passa_astronave.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0013-Passa_asteroide.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0013-Passa_asteroide.xiz new file mode 100644 index 000000000..10c390ca6 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0013-Passa_asteroide.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0015-Nave.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0015-Nave.xiz new file mode 100644 index 000000000..2db39567e Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0015-Nave.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0017-Strano_01.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0017-Strano_01.xiz new file mode 100644 index 000000000..1ca2fd0d4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0017-Strano_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0018-Strano_02.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0018-Strano_02.xiz new file mode 100644 index 000000000..73394117f Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0018-Strano_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0020-Acqua.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0020-Acqua.xiz new file mode 100644 index 000000000..007a20959 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0020-Acqua.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0021-Asteroide.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0021-Asteroide.xiz new file mode 100644 index 000000000..ecbcb4ce1 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0021-Asteroide.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0024-tastiera.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0024-tastiera.xiz new file mode 100644 index 000000000..921fcbfc7 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0024-tastiera.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0026-beepA.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0026-beepA.xiz new file mode 100644 index 000000000..b49da1651 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0026-beepA.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0027-beepB.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0027-beepB.xiz new file mode 100644 index 000000000..343ead26f Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0027-beepB.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0028-beepC.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0028-beepC.xiz new file mode 100644 index 000000000..539f5bcda Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0028-beepC.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0033-buao.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0033-buao.xiz new file mode 100644 index 000000000..32bf80aec Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0033-buao.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0034-creepy.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0034-creepy.xiz new file mode 100644 index 000000000..075d45915 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0034-creepy.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0036-Trillo.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0036-Trillo.xiz new file mode 100644 index 000000000..467cb529f Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0036-Trillo.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0037-Trillo1.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0037-Trillo1.xiz new file mode 100644 index 000000000..a2bea52b4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0037-Trillo1.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0038-Trillo2.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0038-Trillo2.xiz new file mode 100644 index 000000000..951b6685e Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0038-Trillo2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0039-Trillo5.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0039-Trillo5.xiz new file mode 100644 index 000000000..a3e3afacd Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0039-Trillo5.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0041-Scherzo.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0041-Scherzo.xiz new file mode 100644 index 000000000..cbe812b7c Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0041-Scherzo.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0043-Grave.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0043-Grave.xiz new file mode 100644 index 000000000..474b85a88 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0043-Grave.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0045-Fischia_01.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0045-Fischia_01.xiz new file mode 100644 index 000000000..50a2e24b5 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0045-Fischia_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0046-Fischia_02.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0046-Fischia_02.xiz new file mode 100644 index 000000000..661c5752c Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0046-Fischia_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0047-Fischia_03.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0047-Fischia_03.xiz new file mode 100644 index 000000000..296ece274 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0047-Fischia_03.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0049-Resonance Pad2.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0049-Resonance Pad2.xiz new file mode 100644 index 000000000..0d16814c0 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0049-Resonance Pad2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0050-Resonance Pad2.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0050-Resonance Pad2.xiz new file mode 100644 index 000000000..3db0c7bc9 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0050-Resonance Pad2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0052-ImpossibleDream1.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0052-ImpossibleDream1.xiz new file mode 100644 index 000000000..be0d3cba8 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0052-ImpossibleDream1.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0053-ImpossibleDream4.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0053-ImpossibleDream4.xiz new file mode 100644 index 000000000..46ff14edc Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0053-ImpossibleDream4.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0054-Delayed Echo.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0054-Delayed Echo.xiz new file mode 100644 index 000000000..90d705793 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0054-Delayed Echo.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0057-Glass_01.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0057-Glass_01.xiz new file mode 100644 index 000000000..4288c272f Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0057-Glass_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0059-Tremulo_01.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0059-Tremulo_01.xiz new file mode 100644 index 000000000..70e2f5f2e Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0059-Tremulo_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Noise/0061-Campane.xiz b/data/presets/ZynAddSubFX/Cormi_Noise/0061-Campane.xiz new file mode 100644 index 000000000..a9f85362b Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Noise/0061-Campane.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0001-Bassoon.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0001-Bassoon.xiz new file mode 100644 index 000000000..2512518ca Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0001-Bassoon.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0002-Bassoon2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0002-Bassoon2.xiz new file mode 100644 index 000000000..0a84334ef Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0002-Bassoon2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0003-Bassoon3.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0003-Bassoon3.xiz new file mode 100644 index 000000000..cc87fb2ff Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0003-Bassoon3.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0004-Volo.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0004-Volo.xiz new file mode 100644 index 000000000..973917d8b Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0004-Volo.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0006-Arpeggio_01.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0006-Arpeggio_01.xiz new file mode 100644 index 000000000..5fbfe1293 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0006-Arpeggio_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0007-Arpeggio_02.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0007-Arpeggio_02.xiz new file mode 100644 index 000000000..70358ac08 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0007-Arpeggio_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0008-Arpeggio_03.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0008-Arpeggio_03.xiz new file mode 100644 index 000000000..558a0c946 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0008-Arpeggio_03.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0009-Glass Arpeggio2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0009-Glass Arpeggio2.xiz new file mode 100644 index 000000000..df76d55f8 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0009-Glass Arpeggio2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0011-abracadabra.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0011-abracadabra.xiz new file mode 100644 index 000000000..737f99ec0 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0011-abracadabra.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0012-Ghost Whistle.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0012-Ghost Whistle.xiz new file mode 100644 index 000000000..eb93ca5b0 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0012-Ghost Whistle.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0013-Spazio1.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0013-Spazio1.xiz new file mode 100644 index 000000000..d83f080b0 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0013-Spazio1.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0014-Spazio2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0014-Spazio2.xiz new file mode 100644 index 000000000..fad36753a Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0014-Spazio2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0015-Space Synth.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0015-Space Synth.xiz new file mode 100644 index 000000000..8d978f3e1 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0015-Space Synth.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0016-SpaceAtmo.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0016-SpaceAtmo.xiz new file mode 100644 index 000000000..707614fcd Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0016-SpaceAtmo.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0017-friendly sines.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0017-friendly sines.xiz new file mode 100644 index 000000000..688b67e8a Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0017-friendly sines.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0019-Acquoso_1.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0019-Acquoso_1.xiz new file mode 100644 index 000000000..2c77e6d1f Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0019-Acquoso_1.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0020-Acquoso_5.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0020-Acquoso_5.xiz new file mode 100644 index 000000000..1a9d8dd8c Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0020-Acquoso_5.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0021-Acquoso_6.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0021-Acquoso_6.xiz new file mode 100644 index 000000000..6557d1653 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0021-Acquoso_6.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0023-Fagotto_01.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0023-Fagotto_01.xiz new file mode 100644 index 000000000..a3d03b6f8 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0023-Fagotto_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0024-Fagotto_02.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0024-Fagotto_02.xiz new file mode 100644 index 000000000..6a76b9184 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0024-Fagotto_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0025-Fagotto_03.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0025-Fagotto_03.xiz new file mode 100644 index 000000000..c50745892 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0025-Fagotto_03.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0027-Delicato_01.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0027-Delicato_01.xiz new file mode 100644 index 000000000..2a344f6b7 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0027-Delicato_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0028-Delicato_02.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0028-Delicato_02.xiz new file mode 100644 index 000000000..a413fb753 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0028-Delicato_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0029-Delicato_03.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0029-Delicato_03.xiz new file mode 100644 index 000000000..5bd257cac Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0029-Delicato_03.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0031-Wah_dolce_1.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0031-Wah_dolce_1.xiz new file mode 100644 index 000000000..5fa8551c7 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0031-Wah_dolce_1.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0032-Wah_dolce_2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0032-Wah_dolce_2.xiz new file mode 100644 index 000000000..02c9f061a Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0032-Wah_dolce_2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0033-Long Space Choir 2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0033-Long Space Choir 2.xiz new file mode 100644 index 000000000..6aa3e2cb7 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0033-Long Space Choir 2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0034-Choir Pad4.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0034-Choir Pad4.xiz new file mode 100644 index 000000000..d04ab4656 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0034-Choir Pad4.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0035-Ancient_Echos.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0035-Ancient_Echos.xiz new file mode 100644 index 000000000..49889c5cd Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0035-Ancient_Echos.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0036-Campane.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0036-Campane.xiz new file mode 100644 index 000000000..a875d8799 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0036-Campane.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0037-Chorus.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0037-Chorus.xiz new file mode 100644 index 000000000..3f850ed89 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0037-Chorus.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0038-HellVoice.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0038-HellVoice.xiz new file mode 100644 index 000000000..8e38c3d19 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0038-HellVoice.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0039-Chorus2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0039-Chorus2.xiz new file mode 100644 index 000000000..a13fbf5de Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0039-Chorus2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0041-DarkNight.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0041-DarkNight.xiz new file mode 100644 index 000000000..ecb118bae Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0041-DarkNight.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0042-LightDawn.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0042-LightDawn.xiz new file mode 100644 index 000000000..4c774e2ff Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0042-LightDawn.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0043-Fiiuu.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0043-Fiiuu.xiz new file mode 100644 index 000000000..da79ceca7 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0043-Fiiuu.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0045-Spazio_profondo1.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0045-Spazio_profondo1.xiz new file mode 100644 index 000000000..f5307ff01 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0045-Spazio_profondo1.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0046-Spazio_Profondo2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0046-Spazio_Profondo2.xiz new file mode 100644 index 000000000..50e5c9e25 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0046-Spazio_Profondo2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0047-Spazio_Profondo3.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0047-Spazio_Profondo3.xiz new file mode 100644 index 000000000..b14c20f33 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0047-Spazio_Profondo3.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0049-DolcePiano_01.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0049-DolcePiano_01.xiz new file mode 100644 index 000000000..45d29d914 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0049-DolcePiano_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0050-DolcePiano_02.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0050-DolcePiano_02.xiz new file mode 100644 index 000000000..5ac631b49 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0050-DolcePiano_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0051-DolcePiano_03.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0051-DolcePiano_03.xiz new file mode 100644 index 000000000..54fb3e44f Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0051-DolcePiano_03.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0053-Ding_01.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0053-Ding_01.xiz new file mode 100644 index 000000000..f0a429072 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0053-Ding_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0054-Ding_02.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0054-Ding_02.xiz new file mode 100644 index 000000000..2927aa39e Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0054-Ding_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0056-Senza_tempo.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0056-Senza_tempo.xiz new file mode 100644 index 000000000..976d7c29e Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0056-Senza_tempo.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0057-Senza_tempo_2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0057-Senza_tempo_2.xiz new file mode 100644 index 000000000..fe1b71a7b Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0057-Senza_tempo_2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0058-Senza_tempo_3.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0058-Senza_tempo_3.xiz new file mode 100644 index 000000000..70f737f09 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0058-Senza_tempo_3.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0059-Senza_tempo_4.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0059-Senza_tempo_4.xiz new file mode 100644 index 000000000..ddd9b54dc Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0059-Senza_tempo_4.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0060-Senza_tempo_5.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0060-Senza_tempo_5.xiz new file mode 100644 index 000000000..5efcb0b98 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0060-Senza_tempo_5.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0062-Sospirato_01.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0062-Sospirato_01.xiz new file mode 100644 index 000000000..162485cb7 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0062-Sospirato_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0063-Sospirato_02.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0063-Sospirato_02.xiz new file mode 100644 index 000000000..a8eb884da Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0063-Sospirato_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0064-Sospirato_03.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0064-Sospirato_03.xiz new file mode 100644 index 000000000..0b633f695 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0064-Sospirato_03.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0065-Synth_piano_03.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0065-Synth_piano_03.xiz new file mode 100644 index 000000000..25f88894d Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0065-Synth_piano_03.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0066-Synth_Piano_02.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0066-Synth_Piano_02.xiz new file mode 100644 index 000000000..ecf970d35 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0066-Synth_Piano_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0068-Piano.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0068-Piano.xiz new file mode 100644 index 000000000..c886a6b49 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0068-Piano.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0069-Pianola.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0069-Pianola.xiz new file mode 100644 index 000000000..04d63cf22 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0069-Pianola.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0070-clavicembalo.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0070-clavicembalo.xiz new file mode 100644 index 000000000..af7b1a443 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0070-clavicembalo.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0072-Zufolo_1.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0072-Zufolo_1.xiz new file mode 100644 index 000000000..c14c29863 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0072-Zufolo_1.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0073-Zufolo_2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0073-Zufolo_2.xiz new file mode 100644 index 000000000..6dbb5e012 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0073-Zufolo_2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0074-Zufolo_3.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0074-Zufolo_3.xiz new file mode 100644 index 000000000..ef85ac540 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0074-Zufolo_3.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0075-Zufolo_4.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0075-Zufolo_4.xiz new file mode 100644 index 000000000..3aed0929f Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0075-Zufolo_4.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0076-Pinkollo.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0076-Pinkollo.xiz new file mode 100644 index 000000000..572457fa4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0076-Pinkollo.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0078-Tremulo_01.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0078-Tremulo_01.xiz new file mode 100644 index 000000000..9241dfd1b Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0078-Tremulo_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0079-Tremulo_02.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0079-Tremulo_02.xiz new file mode 100644 index 000000000..9ea916a7e Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0079-Tremulo_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0081-Organetto_01.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0081-Organetto_01.xiz new file mode 100644 index 000000000..931c8bc07 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0081-Organetto_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0082-Organetto_02.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0082-Organetto_02.xiz new file mode 100644 index 000000000..41d0abf5e Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0082-Organetto_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0084-Organo_01.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0084-Organo_01.xiz new file mode 100644 index 000000000..3e11bcad2 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0084-Organo_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0085-Organo_02.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0085-Organo_02.xiz new file mode 100644 index 000000000..61a8140bb Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0085-Organo_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0086-Organo_03.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0086-Organo_03.xiz new file mode 100644 index 000000000..ae82fa340 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0086-Organo_03.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0087-Harp 3.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0087-Harp 3.xiz new file mode 100644 index 000000000..36a7b2dee Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0087-Harp 3.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0088-Harp4.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0088-Harp4.xiz new file mode 100644 index 000000000..d39bdc00c Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0088-Harp4.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0090-Dolcino_01.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0090-Dolcino_01.xiz new file mode 100644 index 000000000..367ddc87b Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0090-Dolcino_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0091-Dolcino_02.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0091-Dolcino_02.xiz new file mode 100644 index 000000000..a5b26eb6c Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0091-Dolcino_02.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0092-Dolcino_03.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0092-Dolcino_03.xiz new file mode 100644 index 000000000..7c283bb15 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0092-Dolcino_03.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0093-Dolcino_04.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0093-Dolcino_04.xiz new file mode 100644 index 000000000..84682b377 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0093-Dolcino_04.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0095-Accordian.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0095-Accordian.xiz new file mode 100644 index 000000000..0a7f8c67e Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0095-Accordian.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0096-padNice.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0096-padNice.xiz new file mode 100644 index 000000000..f7f443de8 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0096-padNice.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0097-k.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0097-k.xiz new file mode 100644 index 000000000..177c803f9 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0097-k.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0098-z.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0098-z.xiz new file mode 100644 index 000000000..0a3b34928 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0098-z.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0099-a.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0099-a.xiz new file mode 100644 index 000000000..80cadfbf4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0099-a.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0100-Steel Rhodes.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0100-Steel Rhodes.xiz new file mode 100644 index 000000000..8f8480ba1 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0100-Steel Rhodes.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0101-Sweet_Night.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0101-Sweet_Night.xiz new file mode 100644 index 000000000..5dc0a54fa Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0101-Sweet_Night.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0102-Sweet_Night_2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0102-Sweet_Night_2.xiz new file mode 100644 index 000000000..79378a33a Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0102-Sweet_Night_2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0103-Gocce.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0103-Gocce.xiz new file mode 100644 index 000000000..83608cf75 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0103-Gocce.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0104-Ice Rhodes2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0104-Ice Rhodes2.xiz new file mode 100644 index 000000000..869246a09 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0104-Ice Rhodes2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0105-Voluttuoso.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0105-Voluttuoso.xiz new file mode 100644 index 000000000..ce7cdece8 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0105-Voluttuoso.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0106-Entropia.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0106-Entropia.xiz new file mode 100644 index 000000000..0e28f2d60 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0106-Entropia.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0108-Arcano.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0108-Arcano.xiz new file mode 100644 index 000000000..ff02336dd Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0108-Arcano.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0109-Arcano2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0109-Arcano2.xiz new file mode 100644 index 000000000..459c8edcc Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0109-Arcano2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0110-Arcano3.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0110-Arcano3.xiz new file mode 100644 index 000000000..ae4325c8f Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0110-Arcano3.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0112-Glass_01.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0112-Glass_01.xiz new file mode 100644 index 000000000..0ce32db02 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0112-Glass_01.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0113-Glass_02a.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0113-Glass_02a.xiz new file mode 100644 index 000000000..17c4a659a Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0113-Glass_02a.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0114-Glass_02b.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0114-Glass_02b.xiz new file mode 100644 index 000000000..4e294220a Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0114-Glass_02b.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0115-Glass_03.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0115-Glass_03.xiz new file mode 100644 index 000000000..978650dc4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0115-Glass_03.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0116-Glass_04.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0116-Glass_04.xiz new file mode 100644 index 000000000..2822e7c9b Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0116-Glass_04.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0119-Arcadia_1.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0119-Arcadia_1.xiz new file mode 100644 index 000000000..57b7445b9 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0119-Arcadia_1.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0120-Arcadia_2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0120-Arcadia_2.xiz new file mode 100644 index 000000000..ba0644429 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0120-Arcadia_2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0121-Arcadia_3.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0121-Arcadia_3.xiz new file mode 100644 index 000000000..06ffc1661 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0121-Arcadia_3.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0122-Arcadia_4.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0122-Arcadia_4.xiz new file mode 100644 index 000000000..d56fe5367 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0122-Arcadia_4.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0124-Armonica.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0124-Armonica.xiz new file mode 100644 index 000000000..26e4fd2ec Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0124-Armonica.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0125-Fanfara.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0125-Fanfara.xiz new file mode 100644 index 000000000..f39d8daa9 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0125-Fanfara.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0126-Polvere.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0126-Polvere.xiz new file mode 100644 index 000000000..fe4b19d03 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0126-Polvere.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0127-Comb Filter.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0127-Comb Filter.xiz new file mode 100644 index 000000000..8f2c47708 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0127-Comb Filter.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0128-Synth Pad 5.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0128-Synth Pad 5.xiz new file mode 100644 index 000000000..72e2fdd16 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0128-Synth Pad 5.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0129-Bello.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0129-Bello.xiz new file mode 100644 index 000000000..c0e3e0a18 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0129-Bello.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0130-abbellimento.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0130-abbellimento.xiz new file mode 100644 index 000000000..4299483eb Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0130-abbellimento.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0131-Carino.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0131-Carino.xiz new file mode 100644 index 000000000..02c1ef8e4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0131-Carino.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0132-Cigno.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0132-Cigno.xiz new file mode 100644 index 000000000..f6b35c349 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0132-Cigno.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0133-fluido.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0133-fluido.xiz new file mode 100644 index 000000000..94704e008 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0133-fluido.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0136-Romantico.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0136-Romantico.xiz new file mode 100644 index 000000000..4f35d51ec Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0136-Romantico.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0137-Romantico2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0137-Romantico2.xiz new file mode 100644 index 000000000..a69af5b4e Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0137-Romantico2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0138-romanticone.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0138-romanticone.xiz new file mode 100644 index 000000000..367112cf9 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0138-romanticone.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0139-Emptyness3.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0139-Emptyness3.xiz new file mode 100644 index 000000000..81e58f32a Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0139-Emptyness3.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0140-Foglie.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0140-Foglie.xiz new file mode 100644 index 000000000..e73adcd8a Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0140-Foglie.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0142-Solitudine.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0142-Solitudine.xiz new file mode 100644 index 000000000..b2be370bb Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0142-Solitudine.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0144-Inquietudine.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0144-Inquietudine.xiz new file mode 100644 index 000000000..9e1d73338 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0144-Inquietudine.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0145-c.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0145-c.xiz new file mode 100644 index 000000000..9f38808ad Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0145-c.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0146-Ancestrale.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0146-Ancestrale.xiz new file mode 100644 index 000000000..c0c48bbdc Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0146-Ancestrale.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0147-Attesa.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0147-Attesa.xiz new file mode 100644 index 000000000..6aabbc883 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0147-Attesa.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0148-vento.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0148-vento.xiz new file mode 100644 index 000000000..85e024ca5 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0148-vento.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0149-pioggia.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0149-pioggia.xiz new file mode 100644 index 000000000..29852c727 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0149-pioggia.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0150-nebbia.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0150-nebbia.xiz new file mode 100644 index 000000000..011f3c28b Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0150-nebbia.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0151-Memory.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0151-Memory.xiz new file mode 100644 index 000000000..b10b761f7 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0151-Memory.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0152-Memory2.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0152-Memory2.xiz new file mode 100644 index 000000000..453fe018c Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0152-Memory2.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0153-Memory3.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0153-Memory3.xiz new file mode 100644 index 000000000..aefd1fe1d Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0153-Memory3.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0155-contorno.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0155-contorno.xiz new file mode 100644 index 000000000..75a1aad01 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0155-contorno.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0156-fantasia.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0156-fantasia.xiz new file mode 100644 index 000000000..9e68faba3 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0156-fantasia.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0157-nostalgia.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0157-nostalgia.xiz new file mode 100644 index 000000000..7ecc7b668 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0157-nostalgia.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0158-patetico.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0158-patetico.xiz new file mode 100644 index 000000000..0b04f649b Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0158-patetico.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/0159-Destino.xiz b/data/presets/ZynAddSubFX/Cormi_Sound/0159-Destino.xiz new file mode 100644 index 000000000..08079a410 Binary files /dev/null and b/data/presets/ZynAddSubFX/Cormi_Sound/0159-Destino.xiz differ diff --git a/data/presets/ZynAddSubFX/Cormi_Sound/ReadMe.txt b/data/presets/ZynAddSubFX/Cormi_Sound/ReadMe.txt new file mode 100644 index 000000000..1a82faa9e --- /dev/null +++ b/data/presets/ZynAddSubFX/Cormi_Sound/ReadMe.txt @@ -0,0 +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 diff --git a/data/presets/ZynAddSubFX/Guitar/0065-Clean Guitar1.xiz b/data/presets/ZynAddSubFX/Guitar/0065-Clean Guitar1.xiz index 98f1c2b3f..4233f4fbf 100644 Binary files a/data/presets/ZynAddSubFX/Guitar/0065-Clean Guitar1.xiz and b/data/presets/ZynAddSubFX/Guitar/0065-Clean Guitar1.xiz differ diff --git a/data/presets/ZynAddSubFX/Guitar/0066-Electric Guitar.xiz b/data/presets/ZynAddSubFX/Guitar/0066-Electric Guitar.xiz new file mode 100644 index 000000000..57bdeae89 Binary files /dev/null and b/data/presets/ZynAddSubFX/Guitar/0066-Electric Guitar.xiz differ diff --git a/data/presets/ZynAddSubFX/Guitar/0097-Space Guitar.xiz b/data/presets/ZynAddSubFX/Guitar/0097-Space Guitar.xiz new file mode 100644 index 000000000..4a7802d53 Binary files /dev/null and b/data/presets/ZynAddSubFX/Guitar/0097-Space Guitar.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0001-SquareToSine.xiz b/data/presets/ZynAddSubFX/Laba170bank/0001-SquareToSine.xiz new file mode 100644 index 000000000..63b26b3eb Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0001-SquareToSine.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0002-GaussToSine.xiz b/data/presets/ZynAddSubFX/Laba170bank/0002-GaussToSine.xiz new file mode 100644 index 000000000..eb8603be6 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0002-GaussToSine.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0003-MorphingOrgan.xiz b/data/presets/ZynAddSubFX/Laba170bank/0003-MorphingOrgan.xiz new file mode 100644 index 000000000..104eb6c18 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0003-MorphingOrgan.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0004-ThinLead.xiz b/data/presets/ZynAddSubFX/Laba170bank/0004-ThinLead.xiz new file mode 100644 index 000000000..b3c5bcfa0 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0004-ThinLead.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0005-BrightLead.xiz b/data/presets/ZynAddSubFX/Laba170bank/0005-BrightLead.xiz new file mode 100644 index 000000000..941e01af0 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0005-BrightLead.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0006-GenericLead.xiz b/data/presets/ZynAddSubFX/Laba170bank/0006-GenericLead.xiz new file mode 100644 index 000000000..005c06d43 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0006-GenericLead.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0007-MorphingSuperSaw.xiz b/data/presets/ZynAddSubFX/Laba170bank/0007-MorphingSuperSaw.xiz new file mode 100644 index 000000000..71325814c Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0007-MorphingSuperSaw.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0008-BrassyFlute.xiz b/data/presets/ZynAddSubFX/Laba170bank/0008-BrassyFlute.xiz new file mode 100644 index 000000000..fe62db183 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0008-BrassyFlute.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0009-GenericLead2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0009-GenericLead2.xiz new file mode 100644 index 000000000..6869a874c Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0009-GenericLead2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0027-ShortFlute.xiz b/data/presets/ZynAddSubFX/Laba170bank/0027-ShortFlute.xiz new file mode 100644 index 000000000..be413be69 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0027-ShortFlute.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0028-PianoBell.xiz b/data/presets/ZynAddSubFX/Laba170bank/0028-PianoBell.xiz new file mode 100644 index 000000000..7dbdd8e28 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0028-PianoBell.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0029-PianoHarp.xiz b/data/presets/ZynAddSubFX/Laba170bank/0029-PianoHarp.xiz new file mode 100644 index 000000000..0789d7d33 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0029-PianoHarp.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0030-ScaredPulse.xiz b/data/presets/ZynAddSubFX/Laba170bank/0030-ScaredPulse.xiz new file mode 100644 index 000000000..8337f3903 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0030-ScaredPulse.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0031-Twang2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0031-Twang2.xiz new file mode 100644 index 000000000..b2379adcb Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0031-Twang2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0032-Twang1.xiz b/data/presets/ZynAddSubFX/Laba170bank/0032-Twang1.xiz new file mode 100644 index 000000000..221935a6c Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0032-Twang1.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0037-FatPatch.xiz b/data/presets/ZynAddSubFX/Laba170bank/0037-FatPatch.xiz new file mode 100644 index 000000000..67dd10aad Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0037-FatPatch.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0038-FatPatchSimpler.xiz b/data/presets/ZynAddSubFX/Laba170bank/0038-FatPatchSimpler.xiz new file mode 100644 index 000000000..73916941d Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0038-FatPatchSimpler.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0039-FatPatchSimpler2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0039-FatPatchSimpler2.xiz new file mode 100644 index 000000000..7927e27f0 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0039-FatPatchSimpler2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0046-NoisyGuitar.xiz b/data/presets/ZynAddSubFX/Laba170bank/0046-NoisyGuitar.xiz new file mode 100644 index 000000000..ca9d80bec Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0046-NoisyGuitar.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0047-NoisyGuitar2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0047-NoisyGuitar2.xiz new file mode 100644 index 000000000..f5c3b59e2 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0047-NoisyGuitar2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0048-NoisyGuitar3.xiz b/data/presets/ZynAddSubFX/Laba170bank/0048-NoisyGuitar3.xiz new file mode 100644 index 000000000..22942b01e Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0048-NoisyGuitar3.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0049-guitar-PowerChorder.xiz b/data/presets/ZynAddSubFX/Laba170bank/0049-guitar-PowerChorder.xiz new file mode 100644 index 000000000..8cb082616 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0049-guitar-PowerChorder.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0050-SynGuitarAcoustic1.xiz b/data/presets/ZynAddSubFX/Laba170bank/0050-SynGuitarAcoustic1.xiz new file mode 100644 index 000000000..925ea8fa3 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0050-SynGuitarAcoustic1.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0051-SynGuitarAcoustic2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0051-SynGuitarAcoustic2.xiz new file mode 100644 index 000000000..9f338219b Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0051-SynGuitarAcoustic2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0052-SynGuitarAcoustic3.xiz b/data/presets/ZynAddSubFX/Laba170bank/0052-SynGuitarAcoustic3.xiz new file mode 100644 index 000000000..0cc1eabf5 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0052-SynGuitarAcoustic3.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0054-DevilsFiddle.xiz b/data/presets/ZynAddSubFX/Laba170bank/0054-DevilsFiddle.xiz new file mode 100644 index 000000000..2d3803f20 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0054-DevilsFiddle.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0055-DevilsFiddle2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0055-DevilsFiddle2.xiz new file mode 100644 index 000000000..93c06cce4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0055-DevilsFiddle2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0085-PanFluteSawPad.xiz b/data/presets/ZynAddSubFX/Laba170bank/0085-PanFluteSawPad.xiz new file mode 100644 index 000000000..03d8766fc Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0085-PanFluteSawPad.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0086-BlownPiano.xiz b/data/presets/ZynAddSubFX/Laba170bank/0086-BlownPiano.xiz new file mode 100644 index 000000000..9b9e1cf72 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0086-BlownPiano.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0087-ChoirPatch.xiz b/data/presets/ZynAddSubFX/Laba170bank/0087-ChoirPatch.xiz new file mode 100644 index 000000000..e4aa4e632 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0087-ChoirPatch.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0088-InfraSoundPad.xiz b/data/presets/ZynAddSubFX/Laba170bank/0088-InfraSoundPad.xiz new file mode 100644 index 000000000..c6b6dc07b Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0088-InfraSoundPad.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0089-InfraSound2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0089-InfraSound2.xiz new file mode 100644 index 000000000..770fcc85f Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0089-InfraSound2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0090-Pad-RingModSine.xiz b/data/presets/ZynAddSubFX/Laba170bank/0090-Pad-RingModSine.xiz new file mode 100644 index 000000000..280576bec Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0090-Pad-RingModSine.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0091-FatPad.xiz b/data/presets/ZynAddSubFX/Laba170bank/0091-FatPad.xiz new file mode 100644 index 000000000..70e5d4f67 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0091-FatPad.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0092-VibratingPad.xiz b/data/presets/ZynAddSubFX/Laba170bank/0092-VibratingPad.xiz new file mode 100644 index 000000000..e189a0c3a Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0092-VibratingPad.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0097-AnalogBass.xiz b/data/presets/ZynAddSubFX/Laba170bank/0097-AnalogBass.xiz new file mode 100644 index 000000000..2d83459b4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0097-AnalogBass.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0098-DoublePadBass.xiz b/data/presets/ZynAddSubFX/Laba170bank/0098-DoublePadBass.xiz new file mode 100644 index 000000000..834952c43 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0098-DoublePadBass.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0099-SharpBass1.xiz b/data/presets/ZynAddSubFX/Laba170bank/0099-SharpBass1.xiz new file mode 100644 index 000000000..3df572c6b Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0099-SharpBass1.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0100-SharpBass4.xiz b/data/presets/ZynAddSubFX/Laba170bank/0100-SharpBass4.xiz new file mode 100644 index 000000000..2a944c688 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0100-SharpBass4.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0101-SharpBass5.xiz b/data/presets/ZynAddSubFX/Laba170bank/0101-SharpBass5.xiz new file mode 100644 index 000000000..7d3a033e4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0101-SharpBass5.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0102-PluckedWithTailBassy.xiz b/data/presets/ZynAddSubFX/Laba170bank/0102-PluckedWithTailBassy.xiz new file mode 100644 index 000000000..36a82d5d1 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0102-PluckedWithTailBassy.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0103-PluckedAnalogBass.xiz b/data/presets/ZynAddSubFX/Laba170bank/0103-PluckedAnalogBass.xiz new file mode 100644 index 000000000..c1bd866f8 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0103-PluckedAnalogBass.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0108-NoisyPulseLead.xiz b/data/presets/ZynAddSubFX/Laba170bank/0108-NoisyPulseLead.xiz new file mode 100644 index 000000000..6c1dc0006 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0108-NoisyPulseLead.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0109-NoisyPulseLead2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0109-NoisyPulseLead2.xiz new file mode 100644 index 000000000..a98afd915 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0109-NoisyPulseLead2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0110-wierdSchwoop.xiz b/data/presets/ZynAddSubFX/Laba170bank/0110-wierdSchwoop.xiz new file mode 100644 index 000000000..7de5f9741 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0110-wierdSchwoop.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0111-PoorAccordion.xiz b/data/presets/ZynAddSubFX/Laba170bank/0111-PoorAccordion.xiz new file mode 100644 index 000000000..3bf808c37 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0111-PoorAccordion.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0112-PoorTrumpet.xiz b/data/presets/ZynAddSubFX/Laba170bank/0112-PoorTrumpet.xiz new file mode 100644 index 000000000..258890ee2 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0112-PoorTrumpet.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0113-BassyChirp.xiz b/data/presets/ZynAddSubFX/Laba170bank/0113-BassyChirp.xiz new file mode 100644 index 000000000..380ded466 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0113-BassyChirp.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0114-hoarseorgan.xiz b/data/presets/ZynAddSubFX/Laba170bank/0114-hoarseorgan.xiz new file mode 100644 index 000000000..62e654a3a Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0114-hoarseorgan.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0115-MysticlBells.xiz b/data/presets/ZynAddSubFX/Laba170bank/0115-MysticlBells.xiz new file mode 100644 index 000000000..623ab6a50 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0115-MysticlBells.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0129-chip-SlowSawStrings.xiz b/data/presets/ZynAddSubFX/Laba170bank/0129-chip-SlowSawStrings.xiz new file mode 100644 index 000000000..01e791a99 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0129-chip-SlowSawStrings.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0130-chip-SIDarpSoft.xiz b/data/presets/ZynAddSubFX/Laba170bank/0130-chip-SIDarpSoft.xiz new file mode 100644 index 000000000..26da9aee3 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0130-chip-SIDarpSoft.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0131-chip-SIDarpSharp.xiz b/data/presets/ZynAddSubFX/Laba170bank/0131-chip-SIDarpSharp.xiz new file mode 100644 index 000000000..6e6f1ebba Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0131-chip-SIDarpSharp.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0132-chip-SIDarpSharp2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0132-chip-SIDarpSharp2.xiz new file mode 100644 index 000000000..874172029 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0132-chip-SIDarpSharp2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0133-chip-HarshSaw.xiz b/data/presets/ZynAddSubFX/Laba170bank/0133-chip-HarshSaw.xiz new file mode 100644 index 000000000..d099e97e7 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0133-chip-HarshSaw.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0134-chip-VibratoLead.xiz b/data/presets/ZynAddSubFX/Laba170bank/0134-chip-VibratoLead.xiz new file mode 100644 index 000000000..98c2f6895 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0134-chip-VibratoLead.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0135-chip-VibratoLead2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0135-chip-VibratoLead2.xiz new file mode 100644 index 000000000..a9a73ab44 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0135-chip-VibratoLead2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0136-chip-PWM-VibratoLead.xiz b/data/presets/ZynAddSubFX/Laba170bank/0136-chip-PWM-VibratoLead.xiz new file mode 100644 index 000000000..47e3e5bcc Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0136-chip-PWM-VibratoLead.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0137-chip-PolyDistorted.xiz b/data/presets/ZynAddSubFX/Laba170bank/0137-chip-PolyDistorted.xiz new file mode 100644 index 000000000..a1e39c2c8 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0137-chip-PolyDistorted.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0138-chip-PolyDistorted2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0138-chip-PolyDistorted2.xiz new file mode 100644 index 000000000..7065c72e5 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0138-chip-PolyDistorted2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0146-PluckedWithVibTail.xiz b/data/presets/ZynAddSubFX/Laba170bank/0146-PluckedWithVibTail.xiz new file mode 100644 index 000000000..2b796ab07 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0146-PluckedWithVibTail.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0147-PluckedWithTail2.xiz b/data/presets/ZynAddSubFX/Laba170bank/0147-PluckedWithTail2.xiz new file mode 100644 index 000000000..a93c4dfc4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0147-PluckedWithTail2.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/0148-PluckedWithTail.xiz b/data/presets/ZynAddSubFX/Laba170bank/0148-PluckedWithTail.xiz new file mode 100644 index 000000000..954697913 Binary files /dev/null and b/data/presets/ZynAddSubFX/Laba170bank/0148-PluckedWithTail.xiz differ diff --git a/data/presets/ZynAddSubFX/Laba170bank/descriptions.txt b/data/presets/ZynAddSubFX/Laba170bank/descriptions.txt new file mode 100644 index 000000000..b4df11950 --- /dev/null +++ b/data/presets/ZynAddSubFX/Laba170bank/descriptions.txt @@ -0,0 +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. + +* 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/Misc/0005-Bells 4.xiz b/data/presets/ZynAddSubFX/Misc/0005-Bells 4.xiz new file mode 100644 index 000000000..f5002c4fc Binary files /dev/null and b/data/presets/ZynAddSubFX/Misc/0005-Bells 4.xiz differ diff --git a/data/presets/ZynAddSubFX/Misc/0036-Trash Synth 4.xiz b/data/presets/ZynAddSubFX/Misc/0036-Trash Synth 4.xiz new file mode 100644 index 000000000..9059690c1 Binary files /dev/null and b/data/presets/ZynAddSubFX/Misc/0036-Trash Synth 4.xiz differ diff --git a/data/presets/ZynAddSubFX/Misc/0065-SuperSaw 1.xiz b/data/presets/ZynAddSubFX/Misc/0065-SuperSaw 1.xiz new file mode 100644 index 000000000..c90f61565 Binary files /dev/null and b/data/presets/ZynAddSubFX/Misc/0065-SuperSaw 1.xiz differ diff --git a/data/presets/ZynAddSubFX/Misc/0066-SuperSaw 2.xiz b/data/presets/ZynAddSubFX/Misc/0066-SuperSaw 2.xiz new file mode 100644 index 000000000..d4a8cc7ec Binary files /dev/null and b/data/presets/ZynAddSubFX/Misc/0066-SuperSaw 2.xiz differ diff --git a/data/presets/ZynAddSubFX/Misc/0067-SuperSaw 3.xiz b/data/presets/ZynAddSubFX/Misc/0067-SuperSaw 3.xiz new file mode 100644 index 000000000..871e711cc Binary files /dev/null and b/data/presets/ZynAddSubFX/Misc/0067-SuperSaw 3.xiz differ diff --git a/data/presets/ZynAddSubFX/Misc/0068-SuperSaw 4.xiz b/data/presets/ZynAddSubFX/Misc/0068-SuperSaw 4.xiz new file mode 100644 index 000000000..117d41d61 Binary files /dev/null and b/data/presets/ZynAddSubFX/Misc/0068-SuperSaw 4.xiz differ diff --git a/data/presets/ZynAddSubFX/Misc/0069-SuperSaw 5.xiz b/data/presets/ZynAddSubFX/Misc/0069-SuperSaw 5.xiz new file mode 100644 index 000000000..ba3202d9a Binary files /dev/null and b/data/presets/ZynAddSubFX/Misc/0069-SuperSaw 5.xiz differ diff --git a/data/presets/ZynAddSubFX/Misc/0070-SuperSaw 6.xiz b/data/presets/ZynAddSubFX/Misc/0070-SuperSaw 6.xiz new file mode 100644 index 000000000..5ee055ffc Binary files /dev/null and b/data/presets/ZynAddSubFX/Misc/0070-SuperSaw 6.xiz differ diff --git a/data/presets/ZynAddSubFX/Organ/0012-Organ 12.xiz b/data/presets/ZynAddSubFX/Organ/0012-Organ 12.xiz new file mode 100644 index 000000000..38ae59912 Binary files /dev/null and b/data/presets/ZynAddSubFX/Organ/0012-Organ 12.xiz differ diff --git a/data/presets/ZynAddSubFX/Organ/0040-Church Organ 4.xiz b/data/presets/ZynAddSubFX/Organ/0040-Church Organ 4.xiz new file mode 100644 index 000000000..552773798 Binary files /dev/null and b/data/presets/ZynAddSubFX/Organ/0040-Church Organ 4.xiz differ diff --git a/data/presets/ZynAddSubFX/Pads/0034-Synth Pad 2.xiz b/data/presets/ZynAddSubFX/Pads/0034-Synth Pad 2.xiz index 60258b464..0a2a54810 100644 Binary files a/data/presets/ZynAddSubFX/Pads/0034-Synth Pad 2.xiz and b/data/presets/ZynAddSubFX/Pads/0034-Synth Pad 2.xiz differ diff --git a/data/presets/ZynAddSubFX/Pads/0037-Synth Pad 5.xiz b/data/presets/ZynAddSubFX/Pads/0037-Synth Pad 5.xiz new file mode 100644 index 000000000..d234cc20e Binary files /dev/null and b/data/presets/ZynAddSubFX/Pads/0037-Synth Pad 5.xiz differ diff --git a/data/presets/ZynAddSubFX/Pads/0097-Bell Pad.xiz b/data/presets/ZynAddSubFX/Pads/0097-Bell Pad.xiz new file mode 100644 index 000000000..b8fbe4f41 Binary files /dev/null and b/data/presets/ZynAddSubFX/Pads/0097-Bell Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/Plucked/0065-Plucked Pad1.xiz b/data/presets/ZynAddSubFX/Plucked/0065-Plucked Pad1.xiz new file mode 100644 index 000000000..6c5e365e9 Binary files /dev/null and b/data/presets/ZynAddSubFX/Plucked/0065-Plucked Pad1.xiz differ diff --git a/data/presets/ZynAddSubFX/ReedAndWind/0040-Reed 8.xiz b/data/presets/ZynAddSubFX/ReedAndWind/0040-Reed 8.xiz new file mode 100644 index 000000000..c691527e0 Binary files /dev/null and b/data/presets/ZynAddSubFX/ReedAndWind/0040-Reed 8.xiz differ diff --git a/data/presets/ZynAddSubFX/ReedAndWind/0068-Chorused Flute.xiz b/data/presets/ZynAddSubFX/ReedAndWind/0068-Chorused Flute.xiz new file mode 100644 index 000000000..1eb4136c5 Binary files /dev/null and b/data/presets/ZynAddSubFX/ReedAndWind/0068-Chorused Flute.xiz differ diff --git a/data/presets/ZynAddSubFX/Rhodes/0034-FM Rhodes 2.xiz b/data/presets/ZynAddSubFX/Rhodes/0034-FM Rhodes 2.xiz index 37d914ef8..0489d0ba1 100644 Binary files a/data/presets/ZynAddSubFX/Rhodes/0034-FM Rhodes 2.xiz and b/data/presets/ZynAddSubFX/Rhodes/0034-FM Rhodes 2.xiz differ diff --git a/data/presets/ZynAddSubFX/Rhodes/0067-RhodesPad1.xiz b/data/presets/ZynAddSubFX/Rhodes/0067-RhodesPad1.xiz new file mode 100644 index 000000000..258f51bc4 Binary files /dev/null and b/data/presets/ZynAddSubFX/Rhodes/0067-RhodesPad1.xiz differ diff --git a/data/presets/ZynAddSubFX/Rhodes/0068-RhodesPad2.xiz b/data/presets/ZynAddSubFX/Rhodes/0068-RhodesPad2.xiz new file mode 100644 index 000000000..7161dce60 Binary files /dev/null and b/data/presets/ZynAddSubFX/Rhodes/0068-RhodesPad2.xiz differ diff --git a/data/presets/ZynAddSubFX/Splitted/0001-Strings and Reed1.xiz b/data/presets/ZynAddSubFX/Splitted/0001-Strings and Reed1.xiz new file mode 100644 index 000000000..82f7d2ea5 Binary files /dev/null and b/data/presets/ZynAddSubFX/Splitted/0001-Strings and Reed1.xiz differ diff --git a/data/presets/ZynAddSubFX/Splitted/0002-Strings and Reed2.xiz b/data/presets/ZynAddSubFX/Splitted/0002-Strings and Reed2.xiz new file mode 100644 index 000000000..24dcd3be6 Binary files /dev/null and b/data/presets/ZynAddSubFX/Splitted/0002-Strings and Reed2.xiz differ diff --git a/data/presets/ZynAddSubFX/Splitted/0003-Strings and Flute.xiz b/data/presets/ZynAddSubFX/Splitted/0003-Strings and Flute.xiz new file mode 100644 index 000000000..82d2b5451 Binary files /dev/null and b/data/presets/ZynAddSubFX/Splitted/0003-Strings and Flute.xiz differ diff --git a/data/presets/ZynAddSubFX/Splitted/0033-Choir and Reed.xiz b/data/presets/ZynAddSubFX/Splitted/0033-Choir and Reed.xiz new file mode 100644 index 000000000..acd226fb3 Binary files /dev/null and b/data/presets/ZynAddSubFX/Splitted/0033-Choir and Reed.xiz differ diff --git a/data/presets/ZynAddSubFX/Strings/0010-Strings Pad1.xiz b/data/presets/ZynAddSubFX/Strings/0010-Strings Pad1.xiz new file mode 100644 index 000000000..37b5aa546 Binary files /dev/null and b/data/presets/ZynAddSubFX/Strings/0010-Strings Pad1.xiz differ diff --git a/data/presets/ZynAddSubFX/Strings/0011-Strings Pad2.xiz b/data/presets/ZynAddSubFX/Strings/0011-Strings Pad2.xiz new file mode 100644 index 000000000..fef8a751e Binary files /dev/null and b/data/presets/ZynAddSubFX/Strings/0011-Strings Pad2.xiz differ diff --git a/data/presets/ZynAddSubFX/Strings/0012-Strings Pad3.xiz b/data/presets/ZynAddSubFX/Strings/0012-Strings Pad3.xiz new file mode 100644 index 000000000..1a2d9d091 Binary files /dev/null and b/data/presets/ZynAddSubFX/Strings/0012-Strings Pad3.xiz differ diff --git a/data/presets/ZynAddSubFX/Strings/0013-Strings Pad4.xiz b/data/presets/ZynAddSubFX/Strings/0013-Strings Pad4.xiz new file mode 100644 index 000000000..7d200d3a5 Binary files /dev/null and b/data/presets/ZynAddSubFX/Strings/0013-Strings Pad4.xiz differ diff --git a/data/presets/ZynAddSubFX/Strings/0014-Strings Pad5.xiz b/data/presets/ZynAddSubFX/Strings/0014-Strings Pad5.xiz new file mode 100644 index 000000000..58b539c68 Binary files /dev/null and b/data/presets/ZynAddSubFX/Strings/0014-Strings Pad5.xiz differ diff --git a/data/presets/ZynAddSubFX/Strings/0015-Strings Pad6.xiz b/data/presets/ZynAddSubFX/Strings/0015-Strings Pad6.xiz new file mode 100644 index 000000000..b9bed210d Binary files /dev/null and b/data/presets/ZynAddSubFX/Strings/0015-Strings Pad6.xiz differ diff --git a/data/presets/ZynAddSubFX/Strings/0066-Dual Strings.xiz b/data/presets/ZynAddSubFX/Strings/0066-Dual Strings.xiz index 4e236ba94..1a83fb1c1 100644 Binary files a/data/presets/ZynAddSubFX/Strings/0066-Dual Strings.xiz and b/data/presets/ZynAddSubFX/Strings/0066-Dual Strings.xiz differ diff --git a/data/presets/ZynAddSubFX/Strings/0067-Dual Strings Oct1.xiz b/data/presets/ZynAddSubFX/Strings/0067-Dual Strings Oct1.xiz new file mode 100644 index 000000000..e36b55776 Binary files /dev/null and b/data/presets/ZynAddSubFX/Strings/0067-Dual Strings Oct1.xiz differ diff --git a/data/presets/ZynAddSubFX/Strings/0068-Dual Strings Oct2.xiz b/data/presets/ZynAddSubFX/Strings/0068-Dual Strings Oct2.xiz new file mode 100644 index 000000000..2d93b42ab Binary files /dev/null and b/data/presets/ZynAddSubFX/Strings/0068-Dual Strings Oct2.xiz differ diff --git a/data/presets/ZynAddSubFX/Strings/0073-Morph Strings1.xiz b/data/presets/ZynAddSubFX/Strings/0073-Morph Strings1.xiz new file mode 100644 index 000000000..7e988f094 Binary files /dev/null and b/data/presets/ZynAddSubFX/Strings/0073-Morph Strings1.xiz differ diff --git a/data/presets/ZynAddSubFX/Synth/0006-Pulse Pad 3.xiz b/data/presets/ZynAddSubFX/Synth/0006-Pulse Pad 3.xiz new file mode 100644 index 000000000..a460bdffe Binary files /dev/null and b/data/presets/ZynAddSubFX/Synth/0006-Pulse Pad 3.xiz differ diff --git a/data/presets/ZynAddSubFX/Synth/0065-Computer Lead1.xiz b/data/presets/ZynAddSubFX/Synth/0065-Computer Lead1.xiz new file mode 100644 index 000000000..d11e7bf40 Binary files /dev/null and b/data/presets/ZynAddSubFX/Synth/0065-Computer Lead1.xiz differ diff --git a/data/presets/ZynAddSubFX/Synth/0066-Computer Lead2.xiz b/data/presets/ZynAddSubFX/Synth/0066-Computer Lead2.xiz new file mode 100644 index 000000000..69804a00c Binary files /dev/null and b/data/presets/ZynAddSubFX/Synth/0066-Computer Lead2.xiz differ diff --git a/data/presets/ZynAddSubFX/Synth/0070-Solo Synth 1.xiz b/data/presets/ZynAddSubFX/Synth/0070-Solo Synth 1.xiz new file mode 100644 index 000000000..d043677ae Binary files /dev/null and b/data/presets/ZynAddSubFX/Synth/0070-Solo Synth 1.xiz differ diff --git a/data/presets/ZynAddSubFX/SynthPiano/0043-Saw Piano 1.xiz b/data/presets/ZynAddSubFX/SynthPiano/0043-Saw Piano 1.xiz new file mode 100644 index 000000000..245be87b7 Binary files /dev/null and b/data/presets/ZynAddSubFX/SynthPiano/0043-Saw Piano 1.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0001-Folk Flute.xiz b/data/presets/ZynAddSubFX/olivers-100/0001-Folk Flute.xiz new file mode 100644 index 000000000..d6fd85a1b Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0001-Folk Flute.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0002-Bamboo Flute.xiz b/data/presets/ZynAddSubFX/olivers-100/0002-Bamboo Flute.xiz new file mode 100644 index 000000000..429c11ab8 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0002-Bamboo Flute.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0003-FM Flute.xiz b/data/presets/ZynAddSubFX/olivers-100/0003-FM Flute.xiz new file mode 100644 index 000000000..e3c32857a Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0003-FM Flute.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0004-Triple Osc Flute.xiz b/data/presets/ZynAddSubFX/olivers-100/0004-Triple Osc Flute.xiz new file mode 100644 index 000000000..6394700c8 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0004-Triple Osc Flute.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0005-Soprano Double Reed.xiz b/data/presets/ZynAddSubFX/olivers-100/0005-Soprano Double Reed.xiz new file mode 100644 index 000000000..f65fdd2a0 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0005-Soprano Double Reed.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0006-FM Saxophone.xiz b/data/presets/ZynAddSubFX/olivers-100/0006-FM Saxophone.xiz new file mode 100644 index 000000000..5eb8befee Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0006-FM Saxophone.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0007-FM Saxophone 2.xiz b/data/presets/ZynAddSubFX/olivers-100/0007-FM Saxophone 2.xiz new file mode 100644 index 000000000..b1c049371 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0007-FM Saxophone 2.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0008-Concertina.xiz b/data/presets/ZynAddSubFX/olivers-100/0008-Concertina.xiz new file mode 100644 index 000000000..fed42c306 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0008-Concertina.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0009-FM Brass 1.xiz b/data/presets/ZynAddSubFX/olivers-100/0009-FM Brass 1.xiz new file mode 100644 index 000000000..a8e418854 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0009-FM Brass 1.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0010-FM Brass 2.xiz b/data/presets/ZynAddSubFX/olivers-100/0010-FM Brass 2.xiz new file mode 100644 index 000000000..c36874175 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0010-FM Brass 2.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0011-FM Brass 3.xiz b/data/presets/ZynAddSubFX/olivers-100/0011-FM Brass 3.xiz new file mode 100644 index 000000000..699288974 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0011-FM Brass 3.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0013-Soft Guitar.xiz b/data/presets/ZynAddSubFX/olivers-100/0013-Soft Guitar.xiz new file mode 100644 index 000000000..6f39f38bc Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0013-Soft Guitar.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0014-Dist Jazz Guitar.xiz b/data/presets/ZynAddSubFX/olivers-100/0014-Dist Jazz Guitar.xiz new file mode 100644 index 000000000..2d50e0d7b Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0014-Dist Jazz Guitar.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0015-Dist Jazz Guitar 2.xiz b/data/presets/ZynAddSubFX/olivers-100/0015-Dist Jazz Guitar 2.xiz new file mode 100644 index 000000000..4f0fd00b0 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0015-Dist Jazz Guitar 2.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0016-Banjoey.xiz b/data/presets/ZynAddSubFX/olivers-100/0016-Banjoey.xiz new file mode 100644 index 000000000..5e561c60c Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0016-Banjoey.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0017-Bass Guitar.xiz b/data/presets/ZynAddSubFX/olivers-100/0017-Bass Guitar.xiz new file mode 100644 index 000000000..9264149c6 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0017-Bass Guitar.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0018-Bass Guitar - Slap.xiz b/data/presets/ZynAddSubFX/olivers-100/0018-Bass Guitar - Slap.xiz new file mode 100644 index 000000000..47d691904 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0018-Bass Guitar - Slap.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0019-FM Sitar.xiz b/data/presets/ZynAddSubFX/olivers-100/0019-FM Sitar.xiz new file mode 100644 index 000000000..6aded7396 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0019-FM Sitar.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0021-EP - Twangy.xiz b/data/presets/ZynAddSubFX/olivers-100/0021-EP - Twangy.xiz new file mode 100644 index 000000000..be2b4f1c9 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0021-EP - Twangy.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0022-EP - Muted.xiz b/data/presets/ZynAddSubFX/olivers-100/0022-EP - Muted.xiz new file mode 100644 index 000000000..03a8ca3f8 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0022-EP - Muted.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0023-EP - Brighter.xiz b/data/presets/ZynAddSubFX/olivers-100/0023-EP - Brighter.xiz new file mode 100644 index 000000000..772c23e53 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0023-EP - Brighter.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0024-Far Out EP.xiz b/data/presets/ZynAddSubFX/olivers-100/0024-Far Out EP.xiz new file mode 100644 index 000000000..682cff520 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0024-Far Out EP.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0025-Clavinoid.xiz b/data/presets/ZynAddSubFX/olivers-100/0025-Clavinoid.xiz new file mode 100644 index 000000000..42975f258 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0025-Clavinoid.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0026-Harpsichord.xiz b/data/presets/ZynAddSubFX/olivers-100/0026-Harpsichord.xiz new file mode 100644 index 000000000..0c7eca8a7 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0026-Harpsichord.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0027-Toy Piano.xiz b/data/presets/ZynAddSubFX/olivers-100/0027-Toy Piano.xiz new file mode 100644 index 000000000..4f1c5b55f Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0027-Toy Piano.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0028-Mallets.xiz b/data/presets/ZynAddSubFX/olivers-100/0028-Mallets.xiz new file mode 100644 index 000000000..937d9e06f Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0028-Mallets.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0029-Steel Drums.xiz b/data/presets/ZynAddSubFX/olivers-100/0029-Steel Drums.xiz new file mode 100644 index 000000000..ed9209833 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0029-Steel Drums.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0030-Balinese Chimes.xiz b/data/presets/ZynAddSubFX/olivers-100/0030-Balinese Chimes.xiz new file mode 100644 index 000000000..af080ecf2 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0030-Balinese Chimes.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0031-Muffled Chimes.xiz b/data/presets/ZynAddSubFX/olivers-100/0031-Muffled Chimes.xiz new file mode 100644 index 000000000..e8c25a689 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0031-Muffled Chimes.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0032-Drum Kit.xiz b/data/presets/ZynAddSubFX/olivers-100/0032-Drum Kit.xiz new file mode 100644 index 000000000..33e5a9a85 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0032-Drum Kit.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0033-Big Crunchy.xiz b/data/presets/ZynAddSubFX/olivers-100/0033-Big Crunchy.xiz new file mode 100644 index 000000000..dc0c2cbb5 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0033-Big Crunchy.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0034-Big Flangey.xiz b/data/presets/ZynAddSubFX/olivers-100/0034-Big Flangey.xiz new file mode 100644 index 000000000..a6ae4bb8d Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0034-Big Flangey.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0035-Numanesque.xiz b/data/presets/ZynAddSubFX/olivers-100/0035-Numanesque.xiz new file mode 100644 index 000000000..532ea1984 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0035-Numanesque.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0036-240 Grit Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0036-240 Grit Lead.xiz new file mode 100644 index 000000000..0051ee2a0 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0036-240 Grit Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0037-320 Grit Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0037-320 Grit Lead.xiz new file mode 100644 index 000000000..d4acf524d Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0037-320 Grit Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0038-Gentle Triangle Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0038-Gentle Triangle Lead.xiz new file mode 100644 index 000000000..07b2a833a Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0038-Gentle Triangle Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0039-Sliding Squares Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0039-Sliding Squares Lead.xiz new file mode 100644 index 000000000..a35605ace Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0039-Sliding Squares Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0040-Pheasant Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0040-Pheasant Lead.xiz new file mode 100644 index 000000000..f4843b6bd Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0040-Pheasant Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0041-Plinker Bell.xiz b/data/presets/ZynAddSubFX/olivers-100/0041-Plinker Bell.xiz new file mode 100644 index 000000000..5a718a3d1 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0041-Plinker Bell.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0042-Low pH Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0042-Low pH Lead.xiz new file mode 100644 index 000000000..8391ad2ff Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0042-Low pH Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0043-Hovabotalilfanfeer.xiz b/data/presets/ZynAddSubFX/olivers-100/0043-Hovabotalilfanfeer.xiz new file mode 100644 index 000000000..3b659dfd0 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0043-Hovabotalilfanfeer.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0044-Muted Fanfare.xiz b/data/presets/ZynAddSubFX/olivers-100/0044-Muted Fanfare.xiz new file mode 100644 index 000000000..51d8ed757 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0044-Muted Fanfare.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0045-Bink Bink Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0045-Bink Bink Lead.xiz new file mode 100644 index 000000000..886aa803d Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0045-Bink Bink Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0046-Bogus PWM Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0046-Bogus PWM Lead.xiz new file mode 100644 index 000000000..2852a6036 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0046-Bogus PWM Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0047-Dirty Vibrato Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0047-Dirty Vibrato Lead.xiz new file mode 100644 index 000000000..123421d78 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0047-Dirty Vibrato Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0048-Wichita Whoop.xiz b/data/presets/ZynAddSubFX/olivers-100/0048-Wichita Whoop.xiz new file mode 100644 index 000000000..79c83a3c7 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0048-Wichita Whoop.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0049-Bitey Triangle Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0049-Bitey Triangle Lead.xiz new file mode 100644 index 000000000..b062525fd Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0049-Bitey Triangle Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0050-70s Triangle Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0050-70s Triangle Lead.xiz new file mode 100644 index 000000000..f50738b2a Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0050-70s Triangle Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0051-Agro Odds Lead.xiz b/data/presets/ZynAddSubFX/olivers-100/0051-Agro Odds Lead.xiz new file mode 100644 index 000000000..b98ad0f8c Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0051-Agro Odds Lead.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0052-Soft Synth Brass.xiz b/data/presets/ZynAddSubFX/olivers-100/0052-Soft Synth Brass.xiz new file mode 100644 index 000000000..b5d68a156 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0052-Soft Synth Brass.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0054-Funky Reso Bass.xiz b/data/presets/ZynAddSubFX/olivers-100/0054-Funky Reso Bass.xiz new file mode 100644 index 000000000..da71f23a2 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0054-Funky Reso Bass.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0055-ssaB oseR yknuF.xiz b/data/presets/ZynAddSubFX/olivers-100/0055-ssaB oseR yknuF.xiz new file mode 100644 index 000000000..099f40c54 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0055-ssaB oseR yknuF.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0056-Creeky Reso Base.xiz b/data/presets/ZynAddSubFX/olivers-100/0056-Creeky Reso Base.xiz new file mode 100644 index 000000000..ebae78456 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0056-Creeky Reso Base.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0057-Synth Bass.xiz b/data/presets/ZynAddSubFX/olivers-100/0057-Synth Bass.xiz new file mode 100644 index 000000000..8215f2ad4 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0057-Synth Bass.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0058-Basic Thick Bass.xiz b/data/presets/ZynAddSubFX/olivers-100/0058-Basic Thick Bass.xiz new file mode 100644 index 000000000..964eacb76 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0058-Basic Thick Bass.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0059-Dirt Encrusted Bass.xiz b/data/presets/ZynAddSubFX/olivers-100/0059-Dirt Encrusted Bass.xiz new file mode 100644 index 000000000..91300810e Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0059-Dirt Encrusted Bass.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0060-Punch Bass.xiz b/data/presets/ZynAddSubFX/olivers-100/0060-Punch Bass.xiz new file mode 100644 index 000000000..b1743b870 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0060-Punch Bass.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0061-Formant Bass.xiz b/data/presets/ZynAddSubFX/olivers-100/0061-Formant Bass.xiz new file mode 100644 index 000000000..c6397f011 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0061-Formant Bass.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0065-Osiris Pad.xiz b/data/presets/ZynAddSubFX/olivers-100/0065-Osiris Pad.xiz new file mode 100644 index 000000000..37f5e737a Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0065-Osiris Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0066-Phased Pad.xiz b/data/presets/ZynAddSubFX/olivers-100/0066-Phased Pad.xiz new file mode 100644 index 000000000..c5df6fe74 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0066-Phased Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0067-Growing Pad.xiz b/data/presets/ZynAddSubFX/olivers-100/0067-Growing Pad.xiz new file mode 100644 index 000000000..025048b5c Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0067-Growing Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0068-Vintage Sweep Pad.xiz b/data/presets/ZynAddSubFX/olivers-100/0068-Vintage Sweep Pad.xiz new file mode 100644 index 000000000..a725c84c2 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0068-Vintage Sweep Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0069-Mellow Echo Pad.xiz b/data/presets/ZynAddSubFX/olivers-100/0069-Mellow Echo Pad.xiz new file mode 100644 index 000000000..13f48a3af Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0069-Mellow Echo Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0070-Flanged Wind Pad.xiz b/data/presets/ZynAddSubFX/olivers-100/0070-Flanged Wind Pad.xiz new file mode 100644 index 000000000..070fe34e8 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0070-Flanged Wind Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0071-Warble Pad.xiz b/data/presets/ZynAddSubFX/olivers-100/0071-Warble Pad.xiz new file mode 100644 index 000000000..ea2a5b6ae Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0071-Warble Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0072-Organz from Outta Space.xiz b/data/presets/ZynAddSubFX/olivers-100/0072-Organz from Outta Space.xiz new file mode 100644 index 000000000..9dc7afa3d Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0072-Organz from Outta Space.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0073-Shimmer Swell.xiz b/data/presets/ZynAddSubFX/olivers-100/0073-Shimmer Swell.xiz new file mode 100644 index 000000000..510a4eef5 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0073-Shimmer Swell.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0074-80s Poly 5ths.xiz b/data/presets/ZynAddSubFX/olivers-100/0074-80s Poly 5ths.xiz new file mode 100644 index 000000000..006f6b891 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0074-80s Poly 5ths.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0075-Swell 5ths.xiz b/data/presets/ZynAddSubFX/olivers-100/0075-Swell 5ths.xiz new file mode 100644 index 000000000..32c6e2cc8 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0075-Swell 5ths.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0076-Vastness 5ths.xiz b/data/presets/ZynAddSubFX/olivers-100/0076-Vastness 5ths.xiz new file mode 100644 index 000000000..2e606507b Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0076-Vastness 5ths.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0077-Celestial 5ths.xiz b/data/presets/ZynAddSubFX/olivers-100/0077-Celestial 5ths.xiz new file mode 100644 index 000000000..4a0ddf294 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0077-Celestial 5ths.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0078-Supersaw Snit.xiz b/data/presets/ZynAddSubFX/olivers-100/0078-Supersaw Snit.xiz new file mode 100644 index 000000000..46243b3ce Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0078-Supersaw Snit.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0079-Subtle Supersaw Strings.xiz b/data/presets/ZynAddSubFX/olivers-100/0079-Subtle Supersaw Strings.xiz new file mode 100644 index 000000000..a9c4e59ad Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0079-Subtle Supersaw Strings.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0080-Jarre Strings.xiz b/data/presets/ZynAddSubFX/olivers-100/0080-Jarre Strings.xiz new file mode 100644 index 000000000..517203484 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0080-Jarre Strings.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0081-Phased String Machine.xiz b/data/presets/ZynAddSubFX/olivers-100/0081-Phased String Machine.xiz new file mode 100644 index 000000000..6cfadaffd Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0081-Phased String Machine.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0082-Tronic Strings.xiz b/data/presets/ZynAddSubFX/olivers-100/0082-Tronic Strings.xiz new file mode 100644 index 000000000..fecd5b830 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0082-Tronic Strings.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0083-Tronic Voices.xiz b/data/presets/ZynAddSubFX/olivers-100/0083-Tronic Voices.xiz new file mode 100644 index 000000000..3cefcc654 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0083-Tronic Voices.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0084-Welcome to the 80s.xiz b/data/presets/ZynAddSubFX/olivers-100/0084-Welcome to the 80s.xiz new file mode 100644 index 000000000..bbcc93591 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0084-Welcome to the 80s.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0085-Bright 80s Horn Stab.xiz b/data/presets/ZynAddSubFX/olivers-100/0085-Bright 80s Horn Stab.xiz new file mode 100644 index 000000000..2cc7aec43 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0085-Bright 80s Horn Stab.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0086-Star Voyage Pad.xiz b/data/presets/ZynAddSubFX/olivers-100/0086-Star Voyage Pad.xiz new file mode 100644 index 000000000..72aa82a8a Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0086-Star Voyage Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0087-Breathy Too.xiz b/data/presets/ZynAddSubFX/olivers-100/0087-Breathy Too.xiz new file mode 100644 index 000000000..5c056ddd0 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0087-Breathy Too.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0088-Outer Galaxy Pad.xiz b/data/presets/ZynAddSubFX/olivers-100/0088-Outer Galaxy Pad.xiz new file mode 100644 index 000000000..24066a59a Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0088-Outer Galaxy Pad.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0090-Vintage Unison.xiz b/data/presets/ZynAddSubFX/olivers-100/0090-Vintage Unison.xiz new file mode 100644 index 000000000..5f379ca94 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0090-Vintage Unison.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0091-Breezy Chord.xiz b/data/presets/ZynAddSubFX/olivers-100/0091-Breezy Chord.xiz new file mode 100644 index 000000000..53de24e8c Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0091-Breezy Chord.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0092-Airy Chord.xiz b/data/presets/ZynAddSubFX/olivers-100/0092-Airy Chord.xiz new file mode 100644 index 000000000..26e6dc391 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0092-Airy Chord.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0093-Chimey Chord.xiz b/data/presets/ZynAddSubFX/olivers-100/0093-Chimey Chord.xiz new file mode 100644 index 000000000..0aea8f96a Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0093-Chimey Chord.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0094-Donk Donk Chord.xiz b/data/presets/ZynAddSubFX/olivers-100/0094-Donk Donk Chord.xiz new file mode 100644 index 000000000..0c557fdbb Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0094-Donk Donk Chord.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0097-Passing Comet.xiz b/data/presets/ZynAddSubFX/olivers-100/0097-Passing Comet.xiz new file mode 100644 index 000000000..66666ba47 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0097-Passing Comet.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0098-Sweepy Noisy Pulses.xiz b/data/presets/ZynAddSubFX/olivers-100/0098-Sweepy Noisy Pulses.xiz new file mode 100644 index 000000000..c5cf27bf7 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0098-Sweepy Noisy Pulses.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0099-Robot Overlords.xiz b/data/presets/ZynAddSubFX/olivers-100/0099-Robot Overlords.xiz new file mode 100644 index 000000000..b6dd507bd Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0099-Robot Overlords.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0100-Scrubbed Launch.xiz b/data/presets/ZynAddSubFX/olivers-100/0100-Scrubbed Launch.xiz new file mode 100644 index 000000000..c3f2d0afe Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0100-Scrubbed Launch.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0101-Alien Lawnmower.xiz b/data/presets/ZynAddSubFX/olivers-100/0101-Alien Lawnmower.xiz new file mode 100644 index 000000000..a36d5b8f5 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0101-Alien Lawnmower.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0102-RacecaR.xiz b/data/presets/ZynAddSubFX/olivers-100/0102-RacecaR.xiz new file mode 100644 index 000000000..e98a5d20e Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0102-RacecaR.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0103-Electric Swell.xiz b/data/presets/ZynAddSubFX/olivers-100/0103-Electric Swell.xiz new file mode 100644 index 000000000..95f8b2e47 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0103-Electric Swell.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0104-Classic FM Twang.xiz b/data/presets/ZynAddSubFX/olivers-100/0104-Classic FM Twang.xiz new file mode 100644 index 000000000..94790ec18 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0104-Classic FM Twang.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0105-Ominosity.xiz b/data/presets/ZynAddSubFX/olivers-100/0105-Ominosity.xiz new file mode 100644 index 000000000..618af7e7d Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0105-Ominosity.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0106-Unpleasantly Drunk.xiz b/data/presets/ZynAddSubFX/olivers-100/0106-Unpleasantly Drunk.xiz new file mode 100644 index 000000000..cd410418e Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0106-Unpleasantly Drunk.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0107-Hammering Metal.xiz b/data/presets/ZynAddSubFX/olivers-100/0107-Hammering Metal.xiz new file mode 100644 index 000000000..ee234bb2c Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0107-Hammering Metal.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0108-Boiling Cauldron.xiz b/data/presets/ZynAddSubFX/olivers-100/0108-Boiling Cauldron.xiz new file mode 100644 index 000000000..793be4f91 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0108-Boiling Cauldron.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/0109-Crickets.xiz b/data/presets/ZynAddSubFX/olivers-100/0109-Crickets.xiz new file mode 100644 index 000000000..40450fc4a Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/0109-Crickets.xiz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/README b/data/presets/ZynAddSubFX/olivers-100/README new file mode 100644 index 000000000..2024414ec --- /dev/null +++ b/data/presets/ZynAddSubFX/olivers-100/README @@ -0,0 +1,13 @@ + This is Oliver's hundred, a bank of patch files for ZynAddSubFX. +There are two bonus combination patches provided as parameter files. +I strongly encourage you to adapt these sounds to your own use and +to share your creations. + +Important: many of these sounds have directions which you may view by +selecting "Edit instrument" from the advanced user interface window. +Many of the lead instruments have a vibrato effect controlled by the +modulation wheel. Setting the modulation to zero gives a steady tone, +but a newly initialized voice assumes the modulation wheel is at 64. + +Wishing you well with your musical endeavors, +Christopher Oliver diff --git a/data/presets/ZynAddSubFX/olivers-100/lead-combi.xmz b/data/presets/ZynAddSubFX/olivers-100/lead-combi.xmz new file mode 100644 index 000000000..88c4750e1 Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/lead-combi.xmz differ diff --git a/data/presets/ZynAddSubFX/olivers-100/organ-combi.xmz b/data/presets/ZynAddSubFX/olivers-100/organ-combi.xmz new file mode 100644 index 000000000..f9228b64f Binary files /dev/null and b/data/presets/ZynAddSubFX/olivers-100/organ-combi.xmz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0001-strings_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0001-strings_pad.xiz new file mode 100644 index 000000000..e2e59cd22 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0001-strings_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0002-analog_strings.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0002-analog_strings.xiz new file mode 100644 index 000000000..466ba7a66 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0002-analog_strings.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0003-smooth_strings_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0003-smooth_strings_pad.xiz new file mode 100644 index 000000000..2ece181ed Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0003-smooth_strings_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0004-trance_strings_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0004-trance_strings_pad.xiz new file mode 100644 index 000000000..b98cb471c Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0004-trance_strings_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0005-mega_string.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0005-mega_string.xiz new file mode 100644 index 000000000..cc504e27e Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0005-mega_string.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0007-bass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0007-bass.xiz new file mode 100644 index 000000000..50e853f8b Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0007-bass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0008-bass2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0008-bass2.xiz new file mode 100644 index 000000000..e2b21e65a Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0008-bass2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0009-agressive_bass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0009-agressive_bass.xiz new file mode 100644 index 000000000..12bdd7a83 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0009-agressive_bass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0010-synth_bass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0010-synth_bass.xiz new file mode 100644 index 000000000..f17b155c0 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0010-synth_bass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0011-synth_bass_fat.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0011-synth_bass_fat.xiz new file mode 100644 index 000000000..e3f7f15f4 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0011-synth_bass_fat.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0013-supersaw.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0013-supersaw.xiz new file mode 100644 index 000000000..1376784bb Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0013-supersaw.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0014-supersaw_wihout_release.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0014-supersaw_wihout_release.xiz new file mode 100644 index 000000000..faafeb094 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0014-supersaw_wihout_release.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0015-superpulse.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0015-superpulse.xiz new file mode 100644 index 000000000..8213cf007 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0015-superpulse.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0016-sine_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0016-sine_pad.xiz new file mode 100644 index 000000000..245e1c901 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0016-sine_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0018-organ1.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0018-organ1.xiz new file mode 100644 index 000000000..78a2717a3 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0018-organ1.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0020-pulse_organ.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0020-pulse_organ.xiz new file mode 100644 index 000000000..6417c2571 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0020-pulse_organ.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0021-rock_organ+distorsion.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0021-rock_organ+distorsion.xiz new file mode 100644 index 000000000..5fe92c867 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0021-rock_organ+distorsion.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0022-rock_organ.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0022-rock_organ.xiz new file mode 100644 index 000000000..1473c875a Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0022-rock_organ.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0023-space_organ.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0023-space_organ.xiz new file mode 100644 index 000000000..e086ac6e9 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0023-space_organ.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0024-space_organ2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0024-space_organ2.xiz new file mode 100644 index 000000000..80bdf7078 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0024-space_organ2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0026-bell_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0026-bell_pad.xiz new file mode 100644 index 000000000..eace4f9f9 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0026-bell_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0027-inna_bell_like.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0027-inna_bell_like.xiz new file mode 100644 index 000000000..de92691c8 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0027-inna_bell_like.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0029-hard_pulse.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0029-hard_pulse.xiz new file mode 100644 index 000000000..d21e65c02 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0029-hard_pulse.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0030-power_pulsions_lead.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0030-power_pulsions_lead.xiz new file mode 100644 index 000000000..833b59ab8 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0030-power_pulsions_lead.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0031-wah_sine.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0031-wah_sine.xiz new file mode 100644 index 000000000..2cb868d5b Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0031-wah_sine.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0032-.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0032-.xiz new file mode 100644 index 000000000..66c420d5e Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0032-.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0034-alert_!.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0034-alert_!.xiz new file mode 100644 index 000000000..485d27ad6 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0034-alert_!.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0035-alarm2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0035-alarm2.xiz new file mode 100644 index 000000000..acc3a9b7b Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0035-alarm2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0036-glitch.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0036-glitch.xiz new file mode 100644 index 000000000..38f942de3 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0036-glitch.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0037-the_rain.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0037-the_rain.xiz new file mode 100644 index 000000000..2d6546780 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0037-the_rain.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0038-the_starting_machine.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0038-the_starting_machine.xiz new file mode 100644 index 000000000..927739787 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0038-the_starting_machine.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/0039-thunder.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank/0039-thunder.xiz new file mode 100644 index 000000000..c7e02934f Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank/0039-thunder.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank/README b/data/presets/ZynAddSubFX/the_mysterious_bank/README new file mode 100644 index 000000000..f08f892b3 --- /dev/null +++ b/data/presets/ZynAddSubFX/the_mysterious_bank/README @@ -0,0 +1,4 @@ +The My?terious Bank for ZynAddSubFx +----------------------------------- + +2010 My?terious, sous licence Creative Commons BY diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0001-analog strings.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0001-analog strings.xiz new file mode 100644 index 000000000..02e664ee5 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0001-analog strings.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0003-fingered_bass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0003-fingered_bass.xiz new file mode 100644 index 000000000..6944370ca Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0003-fingered_bass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0004-synth_bass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0004-synth_bass.xiz new file mode 100644 index 000000000..cb828b08c Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0004-synth_bass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0005-synth_bass_2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0005-synth_bass_2.xiz new file mode 100644 index 000000000..c5ef50081 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0005-synth_bass_2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0006-synth_bass_3.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0006-synth_bass_3.xiz new file mode 100644 index 000000000..a157cda10 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0006-synth_bass_3.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0007-synth_bass_4.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0007-synth_bass_4.xiz new file mode 100644 index 000000000..156491d97 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0007-synth_bass_4.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0009-organ1.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0009-organ1.xiz new file mode 100644 index 000000000..82b6d41a7 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0009-organ1.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0010-organ2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0010-organ2.xiz new file mode 100644 index 000000000..6afe9b02a Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0010-organ2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0011-organ3.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0011-organ3.xiz new file mode 100644 index 000000000..b8a8c741b Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0011-organ3.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0012-church_organ.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0012-church_organ.xiz new file mode 100644 index 000000000..becaaa779 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0012-church_organ.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0014-synth_bell.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0014-synth_bell.xiz new file mode 100644 index 000000000..897c504a9 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0014-synth_bell.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0015-rhodes1.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0015-rhodes1.xiz new file mode 100644 index 000000000..afdb40929 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0015-rhodes1.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0016-pseudo_steeldrums.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0016-pseudo_steeldrums.xiz new file mode 100644 index 000000000..07e9f6055 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0016-pseudo_steeldrums.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0017-musicbox.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0017-musicbox.xiz new file mode 100644 index 000000000..b2331d895 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0017-musicbox.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0019-sine_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0019-sine_pad.xiz new file mode 100644 index 000000000..a7042cbd5 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0019-sine_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0020-sine_pad2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0020-sine_pad2.xiz new file mode 100644 index 000000000..be8bd9e88 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0020-sine_pad2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0021-power_dnb.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0021-power_dnb.xiz new file mode 100644 index 000000000..1aa8b9d80 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0021-power_dnb.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0022-fantasy_choir.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0022-fantasy_choir.xiz new file mode 100644 index 000000000..c8fb9fdc6 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0022-fantasy_choir.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0023-heavy_metal_guitar.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0023-heavy_metal_guitar.xiz new file mode 100644 index 000000000..3846dd2c2 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0023-heavy_metal_guitar.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0024-synth_flute.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0024-synth_flute.xiz new file mode 100644 index 000000000..787d504dc Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0024-synth_flute.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0026-kick.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0026-kick.xiz new file mode 100644 index 000000000..67a463a96 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0026-kick.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0027-hithat.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0027-hithat.xiz new file mode 100644 index 000000000..264a31db6 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0027-hithat.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0028-snare.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0028-snare.xiz new file mode 100644 index 000000000..e5218338b Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0028-snare.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0030-canyon_wind.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0030-canyon_wind.xiz new file mode 100644 index 000000000..acbc7b92a Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0030-canyon_wind.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0031-etrange_sound.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0031-etrange_sound.xiz new file mode 100644 index 000000000..3209ec53e Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0031-etrange_sound.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0032-mega_alert.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0032-mega_alert.xiz new file mode 100644 index 000000000..d3ef09d2c Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0032-mega_alert.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0033-new_glitch.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0033-new_glitch.xiz new file mode 100644 index 000000000..bea755114 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0033-new_glitch.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0034-radio.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0034-radio.xiz new file mode 100644 index 000000000..01b9372a2 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0034-radio.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0035-the_drunk_world.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0035-the_drunk_world.xiz new file mode 100644 index 000000000..a381bfd22 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0035-the_drunk_world.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0036-ufo.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0036-ufo.xiz new file mode 100644 index 000000000..d32f697c4 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0036-ufo.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0037-ufo2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0037-ufo2.xiz new file mode 100644 index 000000000..d22ea748d Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0037-ufo2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_2/0038-8_bit_car.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0038-8_bit_car.xiz new file mode 100644 index 000000000..e81fc7a81 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_2/0038-8_bit_car.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0001-soft_strings.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0001-soft_strings.xiz new file mode 100644 index 000000000..6b99ee0bc Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0001-soft_strings.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0002-sines_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0002-sines_pad.xiz new file mode 100644 index 000000000..cce8ae0f1 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0002-sines_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0003-at_saturnus.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0003-at_saturnus.xiz new file mode 100644 index 000000000..b392de1d1 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0003-at_saturnus.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0004-echoes.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0004-echoes.xiz new file mode 100644 index 000000000..69d738c9f Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0004-echoes.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0005-echoes2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0005-echoes2.xiz new file mode 100644 index 000000000..9842e6a86 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0005-echoes2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0007-compad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0007-compad.xiz new file mode 100644 index 000000000..966438022 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0007-compad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0008-padding.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0008-padding.xiz new file mode 100644 index 000000000..27af2965a Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0008-padding.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0009-res_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0009-res_pad.xiz new file mode 100644 index 000000000..163cd59c8 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0009-res_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0010-supersaw.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0010-supersaw.xiz new file mode 100644 index 000000000..892077b26 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0010-supersaw.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0011-portal2_lead.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0011-portal2_lead.xiz new file mode 100644 index 000000000..4ad609980 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0011-portal2_lead.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0013-fantasy_bell.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0013-fantasy_bell.xiz new file mode 100644 index 000000000..a5da6a9ea Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0013-fantasy_bell.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0014-dreaming_bells.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0014-dreaming_bells.xiz new file mode 100644 index 000000000..53e36bc55 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0014-dreaming_bells.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0015-dreaming_bells_dnb.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0015-dreaming_bells_dnb.xiz new file mode 100644 index 000000000..04d66b9ed Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0015-dreaming_bells_dnb.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0016-mega_bell.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0016-mega_bell.xiz new file mode 100644 index 000000000..523e08cb5 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0016-mega_bell.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0017-in_the_space.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0017-in_the_space.xiz new file mode 100644 index 000000000..28e40ccc2 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0017-in_the_space.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0019-a_bass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0019-a_bass.xiz new file mode 100644 index 000000000..c9d5a0e5f Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0019-a_bass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0020-synth_bass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0020-synth_bass.xiz new file mode 100644 index 000000000..52f93e32c Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0020-synth_bass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0021-synth_bass_2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0021-synth_bass_2.xiz new file mode 100644 index 000000000..6feb8e5a4 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0021-synth_bass_2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0022-synth_bass_3.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0022-synth_bass_3.xiz new file mode 100644 index 000000000..37ab79e6e Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0022-synth_bass_3.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0023-dnb_bass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0023-dnb_bass.xiz new file mode 100644 index 000000000..69eb6ddca Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0023-dnb_bass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0024-fat_dnb_bass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0024-fat_dnb_bass.xiz new file mode 100644 index 000000000..e78d72c7c Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0024-fat_dnb_bass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0026-cool_organ.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0026-cool_organ.xiz new file mode 100644 index 000000000..092daf86d Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0026-cool_organ.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0027-cool_organ2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0027-cool_organ2.xiz new file mode 100644 index 000000000..57c7cd5bf Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0027-cool_organ2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0029-new_arpeggio_3.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0029-new_arpeggio_3.xiz new file mode 100644 index 000000000..c1b623d4d Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0029-new_arpeggio_3.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0030-from_new_arp3.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0030-from_new_arp3.xiz new file mode 100644 index 000000000..5b01ec229 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0030-from_new_arp3.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0032-ufo_blues.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0032-ufo_blues.xiz new file mode 100644 index 000000000..2212ced78 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0032-ufo_blues.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0033-ufo_funk.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0033-ufo_funk.xiz new file mode 100644 index 000000000..75cac5d9e Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0033-ufo_funk.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0034-synth_guitar.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0034-synth_guitar.xiz new file mode 100644 index 000000000..13e756490 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0034-synth_guitar.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0035-taped_instrument.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0035-taped_instrument.xiz new file mode 100644 index 000000000..9bd511844 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0035-taped_instrument.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0037-computer.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0037-computer.xiz new file mode 100644 index 000000000..3aa2ea748 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0037-computer.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0038-falling_stars.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0038-falling_stars.xiz new file mode 100644 index 000000000..12a4bcda6 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0038-falling_stars.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_3/0039-real_glitch.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0039-real_glitch.xiz new file mode 100644 index 000000000..05ba70299 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_3/0039-real_glitch.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0001-res_strings_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0001-res_strings_pad.xiz new file mode 100644 index 000000000..f2b7d6798 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0001-res_strings_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0002-another_respad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0002-another_respad.xiz new file mode 100644 index 000000000..3e69878b4 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0002-another_respad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0003-strings_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0003-strings_pad.xiz new file mode 100644 index 000000000..1e3bc2921 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0003-strings_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0004-strings_pad_2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0004-strings_pad_2.xiz new file mode 100644 index 000000000..8b1bcdbc3 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0004-strings_pad_2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0005-synth_strings.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0005-synth_strings.xiz new file mode 100644 index 000000000..415e0aba2 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0005-synth_strings.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0007-from_another_space.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0007-from_another_space.xiz new file mode 100644 index 000000000..885491fe8 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0007-from_another_space.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0008-from_another_galaxy.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0008-from_another_galaxy.xiz new file mode 100644 index 000000000..ec5f72eed Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0008-from_another_galaxy.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0009-from_another_planet.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0009-from_another_planet.xiz new file mode 100644 index 000000000..ec9fcd299 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0009-from_another_planet.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0010-unamed_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0010-unamed_pad.xiz new file mode 100644 index 000000000..78bc6e6eb Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0010-unamed_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0011-arpeggio1.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0011-arpeggio1.xiz new file mode 100644 index 000000000..7bc8fbbaa Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0011-arpeggio1.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0013-metal_bell.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0013-metal_bell.xiz new file mode 100644 index 000000000..b8b202577 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0013-metal_bell.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0014-bell.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0014-bell.xiz new file mode 100644 index 000000000..04bc6b1bf Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0014-bell.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0015-belly.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0015-belly.xiz new file mode 100644 index 000000000..af9227336 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0015-belly.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0016-sine_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0016-sine_pad.xiz new file mode 100644 index 000000000..1ece7539a Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0016-sine_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0017-wil_aow_space.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0017-wil_aow_space.xiz new file mode 100644 index 000000000..907b00581 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0017-wil_aow_space.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0019-bass_pad.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0019-bass_pad.xiz new file mode 100644 index 000000000..c90b77f1a Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0019-bass_pad.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0020-bass_pad_fat.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0020-bass_pad_fat.xiz new file mode 100644 index 000000000..d1591a21b Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0020-bass_pad_fat.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0021-synth_bass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0021-synth_bass.xiz new file mode 100644 index 000000000..24d6bc3ec Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0021-synth_bass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0022-synth_bass_2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0022-synth_bass_2.xiz new file mode 100644 index 000000000..dda99d3ee Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0022-synth_bass_2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0023-hard_bass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0023-hard_bass.xiz new file mode 100644 index 000000000..434c4c671 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0023-hard_bass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0024-pseudo_doublebass.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0024-pseudo_doublebass.xiz new file mode 100644 index 000000000..9e34e4910 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0024-pseudo_doublebass.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0025-synth_bass_3.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0025-synth_bass_3.xiz new file mode 100644 index 000000000..3a1543c12 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0025-synth_bass_3.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0027-funky_lead.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0027-funky_lead.xiz new file mode 100644 index 000000000..f5b29f91b Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0027-funky_lead.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0028-daft_punk_lead.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0028-daft_punk_lead.xiz new file mode 100644 index 000000000..58cc4307f Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0028-daft_punk_lead.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0029-synth_guitar.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0029-synth_guitar.xiz new file mode 100644 index 000000000..ba1104e3c Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0029-synth_guitar.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0031-rhodes.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0031-rhodes.xiz new file mode 100644 index 000000000..8270af85a Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0031-rhodes.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0032-rhodes_2.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0032-rhodes_2.xiz new file mode 100644 index 000000000..8502d825d Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0032-rhodes_2.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0033-80s_rhodes.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0033-80s_rhodes.xiz new file mode 100644 index 000000000..35514f6b7 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0033-80s_rhodes.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0035-organ.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0035-organ.xiz new file mode 100644 index 000000000..893c0958b Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0035-organ.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0036-organ_not_distorted.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0036-organ_not_distorted.xiz new file mode 100644 index 000000000..af2a2e000 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0036-organ_not_distorted.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0037-old_organ.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0037-old_organ.xiz new file mode 100644 index 000000000..01b637e4d Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0037-old_organ.xiz differ diff --git a/data/presets/ZynAddSubFX/the_mysterious_bank_4/0039-jazz_guitar.xiz b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0039-jazz_guitar.xiz new file mode 100644 index 000000000..2f9ac7755 Binary files /dev/null and b/data/presets/ZynAddSubFX/the_mysterious_bank_4/0039-jazz_guitar.xiz differ diff --git a/data/project.icns b/data/project.icns new file mode 100644 index 000000000..930afc217 Binary files /dev/null and b/data/project.icns differ diff --git a/data/projects/CoolSongs/CapDan-ZeroSumGame-OriginalByZakarra.mmpz b/data/projects/CoolSongs/CapDan-ZeroSumGame-OriginalByZakarra.mmpz deleted file mode 100644 index a39347d8e..000000000 Binary files a/data/projects/CoolSongs/CapDan-ZeroSumGame-OriginalByZakarra.mmpz and /dev/null differ diff --git a/data/projects/CoolSongs/CapDan-TwilightArea-OriginalByAlf42red.mmpz b/data/projects/CoolSongs/CapDan/CapDan-TwilightArea-OriginalByAlf42red.mmpz similarity index 100% rename from data/projects/CoolSongs/CapDan-TwilightArea-OriginalByAlf42red.mmpz rename to data/projects/CoolSongs/CapDan/CapDan-TwilightArea-OriginalByAlf42red.mmpz diff --git a/data/projects/CoolSongs/CapDan/CapDan-ZeroSumGame-OriginalByZakarra.mmpz b/data/projects/CoolSongs/CapDan/CapDan-ZeroSumGame-OriginalByZakarra.mmpz new file mode 100644 index 000000000..4e9021de3 Binary files /dev/null and b/data/projects/CoolSongs/CapDan/CapDan-ZeroSumGame-OriginalByZakarra.mmpz differ diff --git a/data/projects/CoolSongs/Popsip-Electric Dancer.mmpz b/data/projects/CoolSongs/Popsip-Electric Dancer.mmpz new file mode 100644 index 000000000..4db5d0d9a Binary files /dev/null and b/data/projects/CoolSongs/Popsip-Electric Dancer.mmpz differ diff --git a/data/projects/CoolSongs/Skiessi-Onion.mmpz b/data/projects/CoolSongs/Skiessi/Skiessi-Onion.mmpz similarity index 100% rename from data/projects/CoolSongs/Skiessi-Onion.mmpz rename to data/projects/CoolSongs/Skiessi/Skiessi-Onion.mmpz diff --git a/data/projects/CoolSongs/Skiessi/Skiessi-RandomProjectNumber14253.mmpz b/data/projects/CoolSongs/Skiessi/Skiessi-RandomProjectNumber14253.mmpz new file mode 100644 index 000000000..26985a53e Binary files /dev/null and b/data/projects/CoolSongs/Skiessi/Skiessi-RandomProjectNumber14253.mmpz differ diff --git a/data/projects/CoolSongs/Skiessi-TurningPoint.mmpz b/data/projects/CoolSongs/Skiessi/Skiessi-TurningPoint.mmpz similarity index 100% rename from data/projects/CoolSongs/Skiessi-TurningPoint.mmpz rename to data/projects/CoolSongs/Skiessi/Skiessi-TurningPoint.mmpz diff --git a/data/projects/CoolSongs/TobyDox-Psycho.mmpz b/data/projects/CoolSongs/TobyDox-Psycho.mmpz new file mode 100644 index 000000000..a3ab6fb79 Binary files /dev/null and b/data/projects/CoolSongs/TobyDox-Psycho.mmpz differ diff --git a/data/projects/CoolSongs/Zakarra-59_Degrees.mmpz b/data/projects/CoolSongs/Zakarra/Zakarra-59_Degrees.mmpz similarity index 100% rename from data/projects/CoolSongs/Zakarra-59_Degrees.mmpz rename to data/projects/CoolSongs/Zakarra/Zakarra-59_Degrees.mmpz diff --git a/data/projects/CoolSongs/Zakarra-MainstreamMemory.mmpz b/data/projects/CoolSongs/Zakarra/Zakarra-MainstreamMemory.mmpz similarity index 100% rename from data/projects/CoolSongs/Zakarra-MainstreamMemory.mmpz rename to data/projects/CoolSongs/Zakarra/Zakarra-MainstreamMemory.mmpz diff --git a/data/projects/CoolSongs/Zakarra-OneDay.mmpz b/data/projects/CoolSongs/Zakarra/Zakarra-OneDay.mmpz similarity index 100% rename from data/projects/CoolSongs/Zakarra-OneDay.mmpz rename to data/projects/CoolSongs/Zakarra/Zakarra-OneDay.mmpz diff --git a/data/projects/OldStuff/BlueWolf-DreamTravel.mmp b/data/projects/OldStuff/BlueWolf-DreamTravel.mmp deleted file mode 100644 index a149a10bc..000000000 --- a/data/projects/OldStuff/BlueWolf-DreamTravel.mmp +++ /dev/null @@ -1,883 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Put down your project notes here.

]]>
- - -
-
diff --git a/data/projects/OldStuff/Chris-HorizonRemix.mmp b/data/projects/OldStuff/Chris-HorizonRemix.mmp deleted file mode 100644 index 3b02312f4..000000000 --- a/data/projects/OldStuff/Chris-HorizonRemix.mmp +++ /dev/null @@ -1,1328 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -